/* FC Analyze Pro - Professional SaaS Landing Page */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: #0f172a;
}

p {
    color: #64748b;
    line-height: 1.7;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    z-index: 1000;
    padding: 16px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #0f172a;
}

.nav-cta {
    padding: 6px 12px !important;
    font-size: 12px !important;
}

.nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: white;
    color: #0f172a;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 15;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dbeafe;
    color: #1d4ed8;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-badge .material-icons-round {
    font-size: 16px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.highlight {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: #475569;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-visual {
    position: relative;
    z-index: 20;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
    background: #000;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.phone-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e2e8f0;
}

.card-1 {
    top: -20px;
    right: -40px;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    bottom: 100px;
    left: -40px;
    animation: float 6s ease-in-out infinite reverse;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-title {
    font-weight: 600;
    font-size: 14px;
    color: #0f172a;
    line-height: 1.2;
}

.card-subtitle {
    font-size: 12px;
    color: #64748b;
    line-height: 1.2;
}

.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.1));
    pointer-events: none;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    opacity: 0.6;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    opacity: 0.4;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

/* 3D Animated Logo Background */
.logo-3d-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.logo-3d-container {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.logo-3d-item {
    position: absolute;
    width: 100px;
    height: 100px;
    transition: all 0.3s ease;
    animation: logoFloat 25s infinite ease-in-out;
    transform-origin: center center;
}

/* Professional floating animations */
.logo-move-1 { animation: floatOrbit1 30s infinite ease-in-out; }
.logo-move-2 { animation: floatOrbit2 35s infinite ease-in-out; }
.logo-move-3 { animation: floatOrbit3 40s infinite ease-in-out; }
.logo-move-4 { animation: floatOrbit4 32s infinite ease-in-out; }
.logo-move-5 { animation: floatOrbit5 38s infinite ease-in-out; }
.logo-move-6 { animation: floatOrbit6 28s infinite ease-in-out; }
.logo-move-7 { animation: floatOrbit7 42s infinite ease-in-out; }
.logo-move-8 { animation: floatOrbit8 36s infinite ease-in-out; }
.logo-move-9 { animation: floatOrbit9 33s infinite ease-in-out; }
.logo-move-10 { animation: floatOrbit10 39s infinite ease-in-out; }
.logo-move-11 { animation: floatOrbit11 31s infinite ease-in-out; }
.logo-move-12 { animation: floatOrbit12 37s infinite ease-in-out; }

.logo-3d-item[data-depth="1"] {
    opacity: 0.35;
    filter: blur(0.5px);
}

.logo-3d-item[data-depth="2"] {
    opacity: 0.3;
    filter: blur(1px);
}

.logo-3d-item[data-depth="3"] {
    opacity: 0.25;
    filter: blur(1.5px);
}

.logo-3d-item[data-depth="4"] {
    opacity: 0.2;
    filter: blur(2px);
}

.logo-3d-item[data-depth="5"] {
    opacity: 0.5;
    filter: blur(0.5px);
}

.logo-3d-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.competition-logo .logo-3d-img {
    border-radius: 8px;
    background: rgba(59, 130, 246, 0.1);
}

/* 3D Match Cards */
.match-cards-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
}

.match-cards-container {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1500px;
    transform-style: preserve-3d;
    opacity: 0.3;
}

.match-card-3d {
    position: absolute;
    width: 280px;
    height: 140px;
    transform-style: preserve-3d;
    animation: matchCardOrbit 45s infinite linear, matchCardPulse 4s infinite ease-in-out;
    opacity: 0.9;
    animation-delay: calc(var(--delay, 0) * 1s);
}

.match-card-3d:nth-child(1) { --delay: 0; }
.match-card-3d:nth-child(2) { --delay: 2; }
.match-card-3d:nth-child(3) { --delay: 4; }
.match-card-3d:nth-child(4) { --delay: 6; }

.match-card-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 20px rgba(59, 130, 246, 0.1);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: rotateX(5deg) rotateY(-5deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.match-card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b);
    opacity: 0.8;
}

.match-card-content:hover {
    transform: rotateX(0deg) rotateY(0deg) scale(1.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 2px rgba(59, 130, 246, 0.4), 0 0 30px rgba(59, 130, 246, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    z-index: 10;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.team-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-bottom: 4px;
    border-radius: 6px;
}

.team-name {
    font-size: 11px;
    font-weight: 600;
    color: #0f172a;
    text-align: center;
    line-height: 1.2;
}

.vs-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    margin: 0 8px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.match-prediction {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prediction-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.match-time {
    font-size: 10px;
    color: #64748b;
    font-weight: 500;
}

/* Match Card Floating Animations */
.match-card-orbit-1 {
    animation: matchCardFloat1 25s infinite ease-in-out;
    top: 15%;
    left: 8%;
}

.match-card-orbit-2 {
    animation: matchCardFloat2 30s infinite ease-in-out;
    top: 25%;
    right: 12%;
}

.match-card-orbit-3 {
    animation: matchCardFloat3 28s infinite ease-in-out;
    bottom: 30%;
    left: 15%;
}

.match-card-orbit-4 {
    animation: matchCardFloat4 32s infinite ease-in-out;
    bottom: 15%;
    right: 8%;
}

/* Match Card Pulse Animation */
@keyframes matchCardPulse {
    0%, 100% { transform: rotateX(5deg) rotateY(-5deg) scale(1); }
    50% { transform: rotateX(5deg) rotateY(-5deg) scale(1.02); }
}

/* Match Card Floating Keyframes */
@keyframes matchCardFloat1 {
    0% { transform: translateX(0px) translateY(0px) translateZ(40px) rotateX(5deg) rotateY(0deg); }
    12% { transform: translateX(80px) translateY(-30px) translateZ(60px) rotateX(-3deg) rotateY(45deg); }
    25% { transform: translateX(40px) translateY(50px) translateZ(30px) rotateX(8deg) rotateY(90deg); }
    37% { transform: translateX(-60px) translateY(20px) translateZ(70px) rotateX(2deg) rotateY(135deg); }
    50% { transform: translateX(-20px) translateY(-40px) translateZ(50px) rotateX(-5deg) rotateY(180deg); }
    62% { transform: translateX(90px) translateY(30px) translateZ(35px) rotateX(6deg) rotateY(225deg); }
    75% { transform: translateX(30px) translateY(-60px) translateZ(65px) rotateX(-2deg) rotateY(270deg); }
    87% { transform: translateX(-40px) translateY(40px) translateZ(45px) rotateX(4deg) rotateY(315deg); }
    100% { transform: translateX(0px) translateY(0px) translateZ(40px) rotateX(5deg) rotateY(360deg); }
}

@keyframes matchCardFloat2 {
    0% { transform: translateX(0px) translateY(0px) translateZ(55px) rotateX(-3deg) rotateY(30deg); }
    15% { transform: translateX(-70px) translateY(40px) translateZ(35px) rotateX(7deg) rotateY(75deg); }
    30% { transform: translateX(50px) translateY(-50px) translateZ(75px) rotateX(-1deg) rotateY(120deg); }
    45% { transform: translateX(85px) translateY(25px) translateZ(45px) rotateX(5deg) rotateY(165deg); }
    60% { transform: translateX(-30px) translateY(-35px) translateZ(65px) rotateX(-4deg) rotateY(210deg); }
    75% { transform: translateX(-80px) translateY(55px) translateZ(40px) rotateX(3deg) rotateY(255deg); }
    90% { transform: translateX(60px) translateY(-20px) translateZ(70px) rotateX(6deg) rotateY(300deg); }
    100% { transform: translateX(0px) translateY(0px) translateZ(55px) rotateX(-3deg) rotateY(330deg); }
}

@keyframes matchCardFloat3 {
    0% { transform: translateX(0px) translateY(0px) translateZ(45px) rotateX(4deg) rotateY(60deg); }
    20% { transform: translateX(75px) translateY(-45px) translateZ(60px) rotateX(-5deg) rotateY(105deg); }
    40% { transform: translateX(-55px) translateY(35px) translateZ(30px) rotateX(6deg) rotateY(150deg); }
    60% { transform: translateX(-25px) translateY(-55px) translateZ(75px) rotateX(2deg) rotateY(195deg); }
    80% { transform: translateX(95px) translateY(15px) translateZ(50px) rotateX(-3deg) rotateY(240deg); }
    100% { transform: translateX(0px) translateY(0px) translateZ(45px) rotateX(4deg) rotateY(300deg); }
}

@keyframes matchCardFloat4 {
    0% { transform: translateX(0px) translateY(0px) translateZ(50px) rotateX(1deg) rotateY(90deg); }
    18% { transform: translateX(-65px) translateY(50px) translateZ(40px) rotateX(7deg) rotateY(135deg); }
    36% { transform: translateX(45px) translateY(-40px) translateZ(70px) rotateX(-4deg) rotateY(180deg); }
    54% { transform: translateX(70px) translateY(30px) translateZ(35px) rotateX(5deg) rotateY(225deg); }
    72% { transform: translateX(-50px) translateY(-25px) translateZ(65px) rotateX(3deg) rotateY(270deg); }
    90% { transform: translateX(35px) translateY(45px) translateZ(55px) rotateX(-2deg) rotateY(315deg); }
    100% { transform: translateX(0px) translateY(0px) translateZ(50px) rotateX(1deg) rotateY(360deg); }
}

/* Mobile Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        gap: 50px;
    }

    .hero-title {
        font-size: 52px;
    }

    .section-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    /* Body and HTML adjustments for mobile */
    body {
        -webkit-overflow-scrolling: touch;
    }

    /* Navigation */
    .navbar {
        padding: 12px 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid #e2e8f0;
        z-index: 1000;
    }

    .nav-container {
        padding: 0 16px;
        max-width: 100%;
    }

    .nav-logo img {
        width: 28px;
        height: 28px;
    }

    .logo-text {
        font-size: 16px;
        font-weight: 700;
    }

    .nav-links {
        display: none;
    }

    .nav-buttons {
        display: none;
    }

    .btn.nav-cta {
        padding: 8px 12px;
        font-size: 12px;
    }

    .btn.nav-cta .full-text { display: none; }
    .btn.nav-cta .short-text { display: inline; }

    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
        text-align: center;
        margin-top: 0;
    }

    .hero-container {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        text-align: center;
        padding: 0 16px;
        max-width: 100%;
    }

    .hero-content {
        order: 2;
        max-width: 100%;
    }

    .hero-visual {
        order: 1;
        max-width: 100%;
    }

    .hero-title {
        font-size: 32px !important;
        line-height: 1.2;
        margin-bottom: 16px;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 20px;
        text-align: center;
    }

    .hero-badge {
        font-size: 13px;
        padding: 6px 12px;
        margin-bottom: 16px;
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 20px;
    }

    .stat {
        flex: 1;
        min-width: 70px;
        text-align: center;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 11px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-large {
        padding: 16px 24px;
    }

    /* Phone Mockup */
    .phone-mockup {
        width: 200px;
        height: 400px;
        margin: 0 auto;
    }

    .floating-card {
        display: none;
    }

    /* 3D Background - Simplified for mobile performance */
    .logo-3d-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        overflow: hidden;
        z-index: 1;
    }

    .logo-3d-container {
        position: relative;
        width: 100%;
        height: 100%;
        perspective: 800px;
        transform-style: preserve-3d;
    }

    .logo-3d-item {
        position: absolute;
        width: 40px !important;
        height: 40px !important;
        transition: opacity 0.3s ease;
        animation: none; /* Disable complex animations on mobile */
        opacity: 0.2; /* Reduce opacity for better performance */
    }

    /* Disable individual animations on mobile for better performance */
    .logo-move-1, .logo-move-2, .logo-move-3, .logo-move-4,
    .logo-move-5, .logo-move-6, .logo-move-7, .logo-move-8,
    .logo-move-9, .logo-move-10, .logo-move-11, .logo-move-12 {
        animation: none;
    }

    /* Match Cards - Hidden on mobile for performance */
    .match-cards-background {
        display: none;
    }

    /* Sections */
    .section-header {
        text-align: center;
        margin-bottom: 32px;
        padding: 0 16px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 16px;
        max-width: 100%;
        line-height: 1.5;
    }

    /* Competitions Grid */
    .competitions-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
        padding: 0 16px;
    }

    .competition-card {
        padding: 20px;
        text-align: center;
        border-radius: 12px;
    }

    .competition-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 12px;
    }

    .competition-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .competition-description {
        font-size: 14px;
        line-height: 1.5;
    }

    /* Clubs Section */
    .clubs-showcase {
        padding: 32px 0;
    }

    .clubs-title {
        font-size: 20px;
        margin-bottom: 20px;
        text-align: center;
    }

    .clubs-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
        padding: 0 16px;
    }

    .club-item {
        padding: 12px;
        border-radius: 8px;
        text-align: center;
    }

    .club-icon {
        margin-bottom: 6px;
    }

    .club-logo-img {
        width: 32px;
        height: 32px;
    }

    .club-name {
        font-size: 12px;
        font-weight: 600;
    }

    /* Features Section */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        padding: 0 16px;
    }

    .feature-card {
        padding: 20px;
        text-align: center;
    }

    /* How It Works */
    .steps-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        padding: 0 16px;
    }

    .step {
        text-align: center;
        padding: 20px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin: 0 auto 12px;
    }

    .step-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin: 0 auto 12px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
        padding: 0 16px;
    }

    .testimonial-card {
        padding: 20px;
        text-align: center;
    }

    /* CTA Section */
    .cta-content {
        text-align: center;
        padding: 0 16px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-subtitle {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 20px;
        text-align: center;
        padding: 0 16px;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    /* Navigation */
    .nav-container {
        padding: 0 12px;
    }

    .nav-logo img {
        width: 24px;
        height: 24px;
    }

    .logo-text {
        font-size: 14px;
    }

    .btn.nav-cta {
        padding: 8px 12px;
        font-size: 12px;
    }

    /* Hero Section */
    .hero {
        padding: 80px 0 40px;
    }

    .hero-container {
        padding: 0 12px;
        gap: 24px !important;
    }

    .hero-title {
        font-size: 24px !important;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 4px 8px;
        margin-bottom: 12px;
    }

    .hero-stats {
        gap: 8px;
        margin-bottom: 16px;
    }

    .stat {
        min-width: 60px;
    }

    .stat-number {
        font-size: 16px;
    }

    .stat-label {
        font-size: 10px;
    }

    .hero-buttons {
        max-width: 240px;
    }

    .btn {
        padding: 12px 16px;
        font-size: 14px;
        min-height: 44px;
    }

    .btn-large {
        padding: 14px 18px;
    }

    /* Phone Mockup */
    .phone-mockup {
        width: 160px;
        height: 320px;
    }

    /* Sections */
    .section-header {
        margin-bottom: 24px;
        padding: 0 12px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    /* Competitions */
    .competitions-grid {
        gap: 12px;
        padding: 0 12px;
    }

    .competition-card {
        padding: 16px;
    }

    .competition-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }

    .competition-title {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .competition-description {
        font-size: 12px;
    }

    /* Clubs */
    .clubs-showcase {
        padding: 24px 0;
    }

    .clubs-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .clubs-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px;
        padding: 0 12px;
    }

    .club-item {
        padding: 8px;
        border-radius: 6px;
    }

    .club-logo-img {
        width: 24px;
        height: 24px;
    }

    .club-name {
        font-size: 10px;
    }

    /* Features */
    .features-grid {
        gap: 16px;
        padding: 0 12px;
    }

    .feature-card {
        padding: 16px;
    }

    /* Steps */
    .steps-grid {
        gap: 16px;
        padding: 0 12px;
    }

    .step {
        padding: 16px;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    /* Testimonials */
    .testimonials-grid {
        gap: 12px;
        padding: 0 12px;
    }

    .testimonial-card {
        padding: 16px;
    }

    /* CTA */
    .cta-content {
        padding: 0 12px;
    }

    .cta-title {
        font-size: 20px;
    }

    .cta-subtitle {
        font-size: 14px;
    }

    .cta-buttons {
        max-width: 240px;
    }

    /* 3D Background Small Mobile Adjustments */
    .logo-3d-item {
        width: 30px !important;
        height: 30px !important;
        opacity: 0.15;
    }

    .logo-3d-container {
        perspective: 600px;
    }

    /* Footer */
    .footer-content {
        padding: 0 12px;
        gap: 16px;
    }

    .footer-links {
        gap: 12px;
    }
}

/* Touch-friendly interactions for mobile devices */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none !important;
    }

    .competition-card:hover,
    .club-item:hover,
    .feature-card:hover {
        transform: none !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    /* Ensure buttons are touch-friendly */
    .btn {
        min-height: 44px !important;
    }
}

/* Additional mobile performance optimizations */
@media (max-width: 768px) {
    /* Prevent horizontal scrolling */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    /* Optimize images for mobile */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Improve text rendering on mobile */
    * {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    /* Better tap targets */
    a, button {
        touch-action: manipulation;
    }
}

.fca-logo .logo-3d-img {
    border-radius: 16px;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
}

.logo-3d-item:hover {
    opacity: 0.3 !important;
    transform: scale(1.1) !important;
    filter: blur(0) !important;
}

@keyframes logoFloat {
    0% {
        transform: translateY(0px) rotateY(0deg) rotateX(0deg) scale(1);
    }
    25% {
        transform: translateY(-15px) rotateY(90deg) rotateX(5deg) scale(1.05);
    }
    50% {
        transform: translateY(0px) rotateY(180deg) rotateX(0deg) scale(1);
    }
    75% {
        transform: translateY(15px) rotateY(270deg) rotateX(-5deg) scale(0.95);
    }
    100% {
        transform: translateY(0px) rotateY(360deg) rotateX(0deg) scale(1);
    }
}

/* Professional floating orbital animations */
@keyframes floatOrbit1 {
    0% { top: 15%; left: 10%; transform: translateZ(0px) rotateX(15deg) rotateY(45deg) translateY(0px); }
    25% { top: 25%; left: 20%; transform: translateZ(0px) rotateX(15deg) rotateY(45deg) translateY(-10px); }
    50% { top: 20%; left: 15%; transform: translateZ(0px) rotateX(15deg) rotateY(45deg) translateY(0px); }
    75% { top: 10%; left: 25%; transform: translateZ(0px) rotateX(15deg) rotateY(45deg) translateY(10px); }
    100% { top: 15%; left: 10%; transform: translateZ(0px) rotateX(15deg) rotateY(45deg) translateY(0px); }
}

@keyframes floatOrbit2 {
    0% { top: 70%; left: 80%; transform: translateZ(-50px) rotateX(-10deg) rotateY(135deg) translateY(0px); }
    33% { top: 75%; left: 70%; transform: translateZ(-50px) rotateX(-10deg) rotateY(135deg) translateY(-15px); }
    66% { top: 65%; left: 85%; transform: translateZ(-50px) rotateX(-10deg) rotateY(135deg) translateY(0px); }
    100% { top: 70%; left: 80%; transform: translateZ(-50px) rotateX(-10deg) rotateY(135deg) translateY(0px); }
}

@keyframes floatOrbit3 {
    0% { top: 40%; left: 60%; transform: translateZ(-100px) rotateX(25deg) rotateY(225deg) translateY(0px); }
    50% { top: 50%; left: 50%; transform: translateZ(-100px) rotateX(25deg) rotateY(225deg) translateY(-20px); }
    100% { top: 40%; left: 60%; transform: translateZ(-100px) rotateX(25deg) rotateY(225deg) translateY(0px); }
}

@keyframes floatOrbit4 {
    0% { top: 80%; left: 30%; transform: translateZ(25px) rotateX(-5deg) rotateY(315deg) translateY(0px); }
    25% { top: 75%; left: 40%; transform: translateZ(25px) rotateX(-5deg) rotateY(315deg) translateY(12px); }
    50% { top: 85%; left: 25%; transform: translateZ(25px) rotateX(-5deg) rotateY(315deg) translateY(0px); }
    75% { top: 70%; left: 35%; transform: translateZ(25px) rotateX(-5deg) rotateY(315deg) translateY(-12px); }
    100% { top: 80%; left: 30%; transform: translateZ(25px) rotateX(-5deg) rotateY(315deg) translateY(0px); }
}

@keyframes floatOrbit5 {
    0% { top: 25%; left: 75%; transform: translateZ(-75px) rotateX(35deg) rotateY(90deg) translateY(0px); }
    20% { top: 35%; left: 65%; transform: translateZ(-75px) rotateX(35deg) rotateY(90deg) translateY(8px); }
    40% { top: 20%; left: 80%; transform: translateZ(-75px) rotateX(35deg) rotateY(90deg) translateY(0px); }
    60% { top: 30%; left: 70%; transform: translateZ(-75px) rotateX(35deg) rotateY(90deg) translateY(-8px); }
    80% { top: 15%; left: 85%; transform: translateZ(-75px) rotateX(35deg) rotateY(90deg) translateY(0px); }
    100% { top: 25%; left: 75%; transform: translateZ(-75px) rotateX(35deg) rotateY(90deg) translateY(0px); }
}

@keyframes floatOrbit6 {
    0% { top: 60%; left: 15%; transform: translateZ(-125px) rotateX(10deg) rotateY(180deg) translateY(0px); }
    50% { top: 50%; left: 25%; transform: translateZ(-125px) rotateX(10deg) rotateY(180deg) translateY(-18px); }
    100% { top: 60%; left: 15%; transform: translateZ(-125px) rotateX(10deg) rotateY(180deg) translateY(0px); }
}

@keyframes floatOrbit7 {
    0% { top: 10%; left: 45%; transform: translateZ(50px) rotateX(-20deg) rotateY(270deg) translateY(0px); }
    25% { top: 20%; left: 35%; transform: translateZ(50px) rotateX(-20deg) rotateY(270deg) translateY(14px); }
    50% { top: 5%; left: 50%; transform: translateZ(50px) rotateX(-20deg) rotateY(270deg) translateY(0px); }
    75% { top: 15%; left: 40%; transform: translateZ(50px) rotateX(-20deg) rotateY(270deg) translateY(-14px); }
    100% { top: 10%; left: 45%; transform: translateZ(50px) rotateX(-20deg) rotateY(270deg) translateY(0px); }
}

@keyframes floatOrbit8 {
    0% { top: 85%; left: 55%; transform: translateZ(-25px) rotateX(40deg) rotateY(0deg) translateY(0px); }
    33% { top: 75%; left: 65%; transform: translateZ(-25px) rotateX(40deg) rotateY(0deg) translateY(-16px); }
    66% { top: 90%; left: 50%; transform: translateZ(-25px) rotateX(40deg) rotateY(0deg) translateY(0px); }
    100% { top: 85%; left: 55%; transform: translateZ(-25px) rotateX(40deg) rotateY(0deg) translateY(0px); }
}

@keyframes floatOrbit9 {
    0% { top: 35%; left: 5%; transform: translateZ(-150px) rotateX(0deg) rotateY(60deg) translateY(0px); }
    25% { top: 45%; left: 15%; transform: translateZ(-150px) rotateX(0deg) rotateY(60deg) translateY(10px); }
    50% { top: 30%; left: 10%; transform: translateZ(-150px) rotateX(0deg) rotateY(60deg) translateY(0px); }
    75% { top: 40%; left: 0%; transform: translateZ(-150px) rotateX(0deg) rotateY(60deg) translateY(-10px); }
    100% { top: 35%; left: 5%; transform: translateZ(-150px) rotateX(0deg) rotateY(60deg) translateY(0px); }
}

@keyframes floatOrbit10 {
    0% { top: 55%; left: 90%; transform: translateZ(-175px) rotateX(20deg) rotateY(150deg) translateY(0px); }
    50% { top: 65%; left: 80%; transform: translateZ(-175px) rotateX(20deg) rotateY(150deg) translateY(-12px); }
    100% { top: 55%; left: 90%; transform: translateZ(-175px) rotateX(20deg) rotateY(150deg) translateY(0px); }
}

@keyframes floatOrbit11 {
    0% { top: 5%; left: 80%; transform: translateZ(-200px) rotateX(-15deg) rotateY(240deg) translateY(0px); }
    33% { top: 15%; left: 70%; transform: translateZ(-200px) rotateX(-15deg) rotateY(240deg) translateY(18px); }
    66% { top: 0%; left: 85%; transform: translateZ(-200px) rotateX(-15deg) rotateY(240deg) translateY(0px); }
    100% { top: 5%; left: 80%; transform: translateZ(-200px) rotateX(-15deg) rotateY(240deg) translateY(0px); }
}

@keyframes floatOrbit12 {
    0% { top: 45%; left: 40%; transform: translateZ(-250px) rotateX(0deg) rotateY(300deg) translateY(0px); }
    25% { top: 35%; left: 50%; transform: translateZ(-250px) rotateX(0deg) rotateY(300deg) translateY(-20px); }
    50% { top: 50%; left: 35%; transform: translateZ(-250px) rotateX(0deg) rotateY(300deg) translateY(0px); }
    75% { top: 40%; left: 45%; transform: translateZ(-250px) rotateX(0deg) rotateY(300deg) translateY(20px); }
    100% { top: 45%; left: 40%; transform: translateZ(-250px) rotateX(0deg) rotateY(300deg) translateY(0px); }
}

/* Features Section */
.features {
    padding: 120px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 20px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #1d4ed8;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 120px 0;
    background: #f8fafc;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 14px;
    font-weight: 700;
    color: #1d4ed8;
    background: #dbeafe;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #1d4ed8;
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    border-color: #1d4ed8;
    transform: scale(1.05);
}

.step-title {
    font-size: 24px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 16px;
}

.step-description {
    color: #64748b;
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.author-name {
    font-weight: 600;
    color: #0f172a;
}

.author-title {
    font-size: 14px;
    color: #64748b;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.cta-subtitle {
    font-size: 20px;
    color: #cbd5e1;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-stats {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    font-size: 16px;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 40px 0 20px;
}


.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.footer-column {
    min-width: 140px;
}

.footer-brand {
    max-width: 300px;
}

.footer-description {
    color: #cbd5e1;
    margin: 16px 0 24px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #1e293b;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: #3b82f6;
    color: white;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}


.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s;
    white-space: nowrap;
}

.footer-links a:hover {
    color: #3b82f6;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: #64748b;
    font-size: 14px;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Popular Clubs & Competitions */
.clubs-competitions {
    padding: 120px 0;
    background: #f8fafc;
}

.competitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.competition-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.competition-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1);
}

.competition-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: #1d4ed8;
    font-size: 16px;
}

.competition-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.competition-title {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.competition-description {
    display: none;
}

.clubs-showcase {
    text-align: center;
}

.clubs-title {
    font-size: 32px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 40px;
}

.clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.club-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 24px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.club-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1);
}

.club-icon {
    font-size: 24px;
}

.club-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
}

.club-name {
    font-weight: 600;
    color: #0f172a;
}

/* Responsive Design */






/* Mobile adjustments for 3D background */


/* Additional mobile enhancements */


/* Touch-friendly interactions for mobile devices */

/* Desktop styles for nav buttons */
@media (min-width: 769px) {
    .btn.nav-cta .short-text {
        display: none;
    }
    .btn.nav-cta .full-text {
        display: inline;
    }
}

