/* Landing Page Styles - Full Cinematic Background */
.landing-page {
    position: relative;
    background: #0a0a0a;
    color: #fff;
    min-height: 100vh;
}

/* Ultra-cinematic full-page background with parallax */
.landing-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/static/images/hero-full.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
    will-change: transform;
}

/* Subtle dark overlay for text readability - minimal to show cinematic background */
.landing-page::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.15) 70%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 0;
    pointer-events: none;
}

/* Mobile optimization - use scroll instead of fixed for better performance */
@media (max-width: 768px) {
    .landing-page::before {
        background-attachment: scroll;
        background-position: center top;
    }
}

/* Landing Page Navigation */
.landing-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 132, 0.2);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.landing-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.landing-brand:hover {
    transform: scale(1.05);
}

.landing-brand .brand-icon {
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(0, 255, 132, 0.3));
}

.landing-brand .brand-text {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #fff;
    background: linear-gradient(135deg, #00FF84 0%, #00D9A5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.landing-nav-link {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.landing-nav-link:hover {
    color: #00FF84;
}

.landing-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00FF84;
    transition: width 0.3s ease;
}

.landing-nav-link:hover::after {
    width: 100%;
}

.landing-nav-right {
    display: flex;
    align-items: center;
}

.landing-login-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 255, 132, 0.1);
    border: 1px solid rgba(0, 255, 132, 0.3);
    border-radius: 50px;
    color: #00FF84;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.landing-login-btn:hover {
    background: rgba(0, 255, 132, 0.2);
    border-color: #00FF84;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 255, 132, 0.3);
}

/* Hero Section */
.landing-page .hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: none !important;
}

/* Hero background removed - using full-page cinematic background instead */
.hero-background {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.floating-clubs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-clubs .club-logo {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-clubs .club-logo:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-clubs .club-logo:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.floating-clubs .club-logo:nth-child(3) {
    bottom: 30%;
    left: 5%;
    animation-delay: 2s;
}

.floating-clubs .club-logo:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

.floating-clubs .club-logo:nth-child(5) {
    top: 50%;
    left: 20%;
    animation-delay: 4s;
}

.floating-clubs .club-logo:nth-child(6) {
    top: 60%;
    right: 25%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    line-height: 1.2;
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.3));
}

.hero-title .highlight-green {
    color: #00FF84;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
}

.hero-title em {
    font-style: italic;
    font-weight: 700;
}

@keyframes titleGlow {
    0% {
        filter: drop-shadow(0 0 40px rgba(0, 255, 132, 0.6)) drop-shadow(0 0 80px rgba(0, 255, 132, 0.4));
    }
    100% {
        filter: drop-shadow(0 0 50px rgba(0, 255, 132, 0.8)) drop-shadow(0 0 100px rgba(0, 255, 132, 0.5));
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #e0e0e0;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 4px 40px rgba(0, 0, 0, 0.6);
}

.hero-buttons,
.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* Primary CTA – "Get Started" */
.hero-buttons .btn-primary,
.button-group .btn-primary {
    background: linear-gradient(135deg, #00FF88, #00CC70);
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 32px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
    transition: all 0.3s ease;
    min-width: unset;
    width: 200px !important;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.hero-buttons .btn-primary:hover,
.button-group .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 255, 136, 0.6);
}

/* Secondary CTA – "Sign In" */
.hero-buttons .btn-secondary,
.button-group .btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px 32px;
    border-radius: 50px;
    border: 1.5px solid rgba(0, 255, 136, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: unset;
    width: 200px !important;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.hero-buttons .btn-secondary:hover,
.button-group .btn-secondary:hover {
    background: rgba(0, 255, 136, 0.15);
    border-color: #00FF88;
    transform: translateY(-3px);
}

.hero-note {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.featured-clubs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.club-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.club-item:hover {
    transform: translateY(-5px);
}

.club-icon {
    font-size: 2.5rem;
}

.club-name {
    font-size: 0.85rem;
    color: #aaa;
}

/* About Section */
.landing-page .about-section {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
    background: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00FF84, #00D9A5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(30, 30, 40, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 132, 0.25);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 132, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(0, 255, 132, 0.5);
    box-shadow: 0 16px 48px rgba(0, 255, 132, 0.25), 0 0 60px rgba(0, 255, 132, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #00FF84;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Preview Section */
.preview-section {
    padding: 6rem 2rem;
    background: #0a0a0a;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.preview-card {
    position: relative;
    background: rgba(30, 30, 40, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 132, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.preview-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 132, 0.4);
    box-shadow: 0 12px 40px rgba(0, 255, 132, 0.2);
}

.lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.lock-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.lock-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00FF84;
}

.preview-content {
    padding: 2rem;
}

.preview-content.blur {
    filter: blur(8px);
}

.preview-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.competition {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    padding: 0.4rem 1rem;
    border-radius: 50px;
}

.confidence {
    color: #00FF84;
}

.preview-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.preview-teams .team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.preview-teams .logo {
    font-size: 2.5rem;
}

.preview-teams .name {
    font-weight: 600;
}

.preview-teams .vs {
    font-weight: 700;
    color: #00FF84;
}

.preview-score {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #00FF84;
    margin-bottom: 1rem;
}

.preview-details {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* Testimonials Section */
.landing-page .testimonials-section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
    background: none !important;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(20, 20, 30, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 132, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 132, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 132, 0.4);
    box-shadow: 0 16px 48px rgba(0, 255, 132, 0.15), 0 0 40px rgba(0, 255, 132, 0.1);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.featured-testimonial {
    border-color: rgba(0, 255, 132, 0.4);
    background: rgba(20, 20, 30, 0.8);
    box-shadow: 0 8px 32px rgba(0, 255, 132, 0.2);
}

.featured-testimonial::after {
    content: '⭐ Featured';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #00FF84, #00D9A5);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
}

.testimonial-text {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: -0.75rem;
    font-size: 3rem;
    color: rgba(0, 255, 132, 0.2);
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 255, 132, 0.2), rgba(0, 217, 165, 0.2));
    border: 2px solid rgba(0, 255, 132, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-info h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #00FF84;
    font-size: 0.85rem;
    margin: 0;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Pricing Section */
.landing-page .pricing-section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
    background: transparent !important;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(30, 30, 40, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    border: 2px solid rgba(0, 255, 132, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.pricing-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 255, 132, 0.4);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 255, 132, 0.1);
}

.pricing-card.featured {
    background: rgba(0, 255, 132, 0.15);
    border-color: #00FF84;
    transform: scale(1.05);
    box-shadow: 0 12px 48px rgba(0, 255, 132, 0.3), 0 0 60px rgba(0, 255, 132, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 255, 132, 0.4), 0 0 80px rgba(0, 255, 132, 0.3);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #00FF84, #00D9A5);
    color: #000;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0, 255, 132, 0.4);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.plan-desc {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: #d0d0d0;
}

.plan-button {
    display: block;
    width: 100%;
    padding: 1.1rem;
    background: rgba(0, 255, 132, 0.1);
    color: #00FF84;
    text-align: center;
    border: 2px solid rgba(0, 255, 132, 0.3);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.plan-button:hover {
    background: rgba(0, 255, 132, 0.2);
    border-color: #00FF84;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 255, 132, 0.3);
}

.featured-button {
    background: linear-gradient(135deg, #00FF84, #00D9A5);
    color: #000;
    border: 2px solid transparent;
    box-shadow: 0 4px 16px rgba(0, 255, 132, 0.4);
}

.featured-button:hover {
    background: linear-gradient(135deg, #00D9A5, #00FF84);
    box-shadow: 0 6px 20px rgba(0, 255, 132, 0.6);
}

/* Footer */
.footer {
    background: rgba(20, 20, 30, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 255, 132, 0.2);
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: #00FF84;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: #888;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #00FF84;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-4px);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #00FF84 !important;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #222;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons,
    .button-group {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 280px;
    }

    .featured-clubs {
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}
