/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    overflow-x: hidden;
    color: #ffffff;
    position: relative;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(0, 200, 255, 0.1));
    animation: float 25s infinite linear;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 30s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 80%;
    animation-delay: -10s;
    animation-duration: 35s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 20%;
    animation-delay: -20s;
    animation-duration: 25s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0.3;
    }
}

/* Main Content */
.main-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.logo-container {
    margin-bottom: 4rem;
    animation: slideInDown 1s ease-out 0.2s both;
}

.logo {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #00ffff, #0080ff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    animation: glow 3s ease-in-out infinite alternate;
    letter-spacing: -2px;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    }
    to {
        text-shadow: 0 0 40px rgba(0, 255, 255, 0.6);
    }
}

.logo-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.8;
    letter-spacing: 1px;
    color: #00ffff;
}

/* Hero Section */
.hero-section {
    margin-bottom: 4rem;
    animation: slideInUp 1s ease-out 0.4s both;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    animation: slideInLeft 0.8s ease-out;
}

.title-line:nth-child(1) {
    animation-delay: 0.6s;
    animation-fill-mode: both;
    color: #ffffff;
}

.title-line:nth-child(2) {
    animation-delay: 0.8s;
    animation-fill-mode: both;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    color: #b0b0b0;
}

/* Construction Info */
.construction-info {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
    animation: slideInUp 1s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

.construction-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.construction-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
    color: #00ffff;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.construction-info h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.construction-info p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    color: #b0b0b0;
}

/* CTA Section */
.cta-section {
    margin-bottom: 4rem;
    animation: slideInUp 1s ease-out 0.8s both;
}

.email-signup {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.email-signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.05), transparent);
    animation: shimmer 4s infinite;
}

.email-signup h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.email-signup p {
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-size: 1.2rem;
    color: #b0b0b0;
}

.email-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1.2rem;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: #00ffff;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
}

.notify-btn {
    padding: 1.2rem 2.5rem;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border: none;
    border-radius: 12px;
    color: #0f0f23;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 160px;
    justify-content: center;
}

.notify-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.4);
    background: linear-gradient(45deg, #00e6e6, #0066ff);
}

.notify-btn:active {
    transform: translateY(-1px);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: slideInUp 1s ease-out 1s both;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    color: #00ffff;
    text-decoration: none;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.social-link:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.3);
    border-color: #00ffff;
}

/* Footer */
.footer {
    text-align: center;
    opacity: 0.6;
    font-size: 1rem;
    animation: slideInUp 1s ease-out 1.2s both;
    color: #808080;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    .logo {
        font-size: 3.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .construction-info,
    .email-signup {
        padding: 2rem;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .email-input {
        min-width: 100%;
    }
    
    .social-links {
        gap: 1.5rem;
    }
    
    .social-link {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .construction-info,
    .email-signup {
        padding: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
}