* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

#fractalCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
}

.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #4fc3f7;
}

.logo i {
    font-size: 2.2rem;
    color: #ff4081;
}

.status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4CAF50;
    animation: pulse 2s infinite;
}

.status-indicator.active {
    background: #4CAF50;
    box-shadow: 0 0 10px #4CAF50;
}

.status-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
}

.title-container {
    text-align: center;
    max-width: 900px;
    background: rgba(15, 32, 39, 0.7);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.main-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(90deg, #4fc3f7, #ff4081);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #b3e5fc;
    letter-spacing: 1px;
}

.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #4fc3f7, #ff4081);
    margin: 2rem auto;
    border-radius: 3px;
}

.description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #bbdefb;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Info Cards */
.info-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.card {
    background: rgba(32, 58, 67, 0.8);
    border-radius: 15px;
    padding: 2rem;
    width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(79, 195, 247, 0.3);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(79, 195, 247, 0.3);
}

.card i {
    font-size: 2.5rem;
    color: #4fc3f7;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #e3f2fd;
}

.card p {
    font-size: 0.95rem;
    color: #bbdefb;
    opacity: 0.9;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #90a4ae;
}

.footer strong {
    color: #4fc3f7;
}

.tech-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 2rem;
}

.tech-icons i {
    color: #64b5f6;
    transition: color 0.3s;
}

.tech-icons i:hover {
    color: #ff4081;
}

#currentDate {
    color: #4fc3f7;
    font-weight: bold;
}

/* Animations */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.8rem;
    }
    
    .description {
        font-size: 1.1rem;
    }
    
    .title-container {
        padding: 2rem;
    }
    
    .info-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .container {
        padding: 1rem;
    }
}