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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    background: url('../assets/images/main-bg.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
}

.glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
}

.content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.content:hover {
    transform: translateY(-10px);
}

.main-content {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.brand {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.tagline {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 0.3s;
}

.description {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 0.6s;
}

.cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards 0.9s;
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer-content {
    text-align: center;
    margin-top: 2rem;
}

.coming-soon {
    font-family: 'Clash Display', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.95);
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    transform: translate(-50%, -50%);
    pointer-events: none;
    border-radius: 50%;
    animation: ripple-effect 1s linear;
}

@keyframes ripple-effect {
    0% {
        width: 0;
        height: 0;
        opacity: 0.5;
    }
    100% {
        width: 500px;
        height: 500px;
        opacity: 0;
    }
}

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

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.ai-text {
    background: linear-gradient(
        270deg,
        #FF6B6B,
        #4ECDC4,
        #45B7D1,
        #96C93D
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 8s ease infinite;
    font-weight: 700;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero {
        padding: 1rem;
        align-items: center;
        padding-bottom: 1rem;
    }

    .content {
        margin: 60px 1rem;
        padding: 2rem 1.5rem;
        max-width: 90%;
    }

    .main-content {
        margin: 1rem;
        padding: 1.5rem;
    }

    .brand {
        font-size: 3rem;
    }

    .tagline {
        font-size: 2rem;
    }

    .description {
        font-size: 1.1rem;
    }

    .coming-soon {
        font-size: 1.5rem;
    }

    .brand {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-bottom: 4rem;
    }

    .content {
        padding: 1.75rem 1.25rem;
        max-width: 95%;
        margin-bottom: -340px; /* Even more space at the bottom for mobile */
    }

    .footer-content {
        margin-top: 2.5rem;
    }

    .tagline {
        font-size: 1.75rem;
    }

    .description {
        font-size: 1rem;
    }

    .coming-soon {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .brand {
        font-size: 1rem;
    }
}
