.landing-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.landing-content {
    text-align: center;
    z-index: 10;
    max-width: 800px;
    animation: fadeInDown 0.8s ease;
}

.landing-header {
    margin-bottom: 3rem;
}

.landing-header h1 {
    font-size: 5rem;
    margin-bottom: 0.5rem;
    animation: slideInLeft 0.8s ease;
}

.landing-header .subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 2px;
    animation: slideInRight 0.8s ease 0.2s both;
}

.landing-hero {
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 2.5rem;
    color: var(--magenta);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* CTA Container */
.cta-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.cta-button {
    position: relative;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
}

.primary-btn {
    border-color: var(--cyan);
    color: var(--cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3), inset 0 0 20px rgba(0, 240, 255, 0.05);
}

.primary-btn:hover {
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.6), inset 0 0 30px rgba(0, 240, 255, 0.2);
    transform: translateY(-3px);
}

.secondary-btn {
    border-color: var(--magenta);
    color: var(--magenta);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3), inset 0 0 20px rgba(255, 0, 255, 0.05);
}

.secondary-btn:hover {
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.6), inset 0 0 30px rgba(255, 0, 255, 0.2);
    transform: translateY(-3px);
}

.btn-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: left 0.5s ease;
}

.primary-btn .btn-bg {
    background: rgba(0, 240, 255, 0.1);
}

.secondary-btn .btn-bg {
    background: rgba(255, 0, 255, 0.1);
}

.cta-button:hover .btn-bg {
    left: 0;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.cta-button:hover .btn-icon {
    transform: translateX(5px);
}

/* Landing Footer */
.landing-footer {
    margin-top: 4rem;
    animation: fadeInUp 0.8s ease 1s both;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

/* Animated Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--cyan), transparent);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--magenta), transparent);
    bottom: 10%;
    right: -10%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(50px, -50px);
    }
    66% {
        transform: translate(-30px, 30px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .landing-header h1 {
        font-size: 3rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .cta-container {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}