* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #fff;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    height: 100vh;
    position: relative;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    position: relative;
    z-index: 10;
}


.main-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #333333 50%, #1a1a1a 75%, #000000 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: sophisticatedTransition 8s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

@keyframes sophisticatedTransition {
    0% {
        background-position: 0% 50%;
        filter: brightness(1);
    }
    25% {
        background-position: 50% 50%;
        filter: brightness(1.2);
    }
    50% {
        background-position: 100% 50%;
        filter: brightness(1.5);
    }
    75% {
        background-position: 150% 50%;
        filter: brightness(1.2);
    }
    100% {
        background-position: 200% 50%;
        filter: brightness(1);
    }
}

.construction-message {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: pulse 3s ease-in-out infinite;
    font-weight: 300;
    letter-spacing: 1px;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 0.9; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.02);
    }
}

.contact-section {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    text-decoration: none;
    color: #fff;
    transition: all 0.4s ease;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item:hover {
    transform: scale(1.15) translateY(-5px);
    color: #00ff00;
    background: rgba(0, 255, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
}

.contact-item i {
    font-size: 1.8rem;
}

/* Bubble Effect */
.smoke {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.smoke-particle {
    position: absolute;
    bottom: -20px;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.3) 70%, transparent 100%);
    border-radius: 50%;
    animation: bubbleRise 8s ease-out infinite;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

@keyframes bubbleRise {
    0% {
        transform: translateY(0) scale(0.2);
        opacity: 0;
    }
    5% {
        opacity: 0.8;
        transform: translateY(-10px) scale(0.6);
    }
    15% {
        opacity: 0.9;
        transform: translateY(-30px) scale(0.8);
    }
    30% {
        opacity: 0.8;
        transform: translateY(-80px) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translateY(-200px) scale(1.2);
    }
    70% {
        opacity: 0.4;
        transform: translateY(-400px) scale(1.5);
    }
    85% {
        opacity: 0.2;
        transform: translateY(-600px) scale(1.8);
    }
    100% {
        transform: translateY(-100vh) scale(0.1);
        opacity: 0;
    }
}

/* Floating Terms */
.floating-term {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    font-size: 1rem;
    font-weight: 300;
    pointer-events: none;
    animation: floatAndFade 20s ease-in-out infinite;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

@keyframes floatAndFade {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.6);
    }
    10% {
        opacity: 0.3;
        transform: translateY(20px) scale(0.8);
    }
    20% {
        opacity: 0.4;
        transform: translateY(0) scale(1);
    }
    80% {
        opacity: 0.4;
        transform: translateY(-20px) scale(1);
    }
    90% {
        opacity: 0.2;
        transform: translateY(-40px) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translateY(-60px) scale(0.6);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .construction-message {
        font-size: 1.2rem;
    }
    
    .contact-section {
        gap: 1.5rem;
    }
    
    .contact-item {
        width: 50px;
        height: 50px;
    }
    
    .contact-item i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .construction-message {
        font-size: 1rem;
    }
    
    .contact-section {
        gap: 1rem;
    }
}
