/* FutGes Landing Page */

:root,
[data-bs-theme="dark"] {
    --fg-green: #5CB85C;
    --fg-green-dark: #4A9A4A;
    --fg-blue: #2196F3;
    --fg-dark: #1a1d1e;
    --fg-dark-light: #2D3436;
    --fg-dark-lighter: #3D4446;
    --fg-card-bg: #2a2d2f;
    --fg-card-border: #3a3d3f;
    --fg-text: #FFFFFF;
    --fg-text-muted: #b8c0c8;
    --bs-body-bg: #1a1d1e;
    --bs-body-color: #FFFFFF;
    --bs-secondary-color: rgba(255, 255, 255, 0.7);
    --bs-tertiary-color: rgba(255, 255, 255, 0.5);
    --bs-heading-color: #FFFFFF;
    --bs-link-color: #5CB85C;
    --bs-link-hover-color: #4A9A4A;
    --bs-border-color: #3a3d3f;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--fg-dark);
    color: var(--fg-text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
}

/* Text colors */
.text-muted {
    color: var(--fg-text-muted) !important;
}

.text-success {
    color: var(--fg-green) !important;
}

.text-gradient {
    background: linear-gradient(135deg, var(--fg-green), var(--fg-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navbar */
.navbar {
    background: transparent !important;
    transition: background 0.3s, box-shadow 0.3s;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(26, 29, 30, 0.95) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
}

.navbar .nav-link {
    color: var(--fg-text-muted) !important;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.navbar .nav-link:hover {
    color: var(--fg-text) !important;
}

/* Hero */
.hero-section {
    background: radial-gradient(ellipse at 70% 50%, rgba(92, 184, 92, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 30% 80%, rgba(33, 150, 243, 0.06) 0%, transparent 50%);
    padding-top: 80px;
}

.hero-text {
    padding: 2rem 0;
}

/* Phone mockup */
.hero-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.phone-mockup {
    width: 280px;
    background: #000;
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #000;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

.phone-screen {
    background: var(--fg-dark-light);
    border-radius: 26px;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    flex-direction: column;
}

.screen-header {
    padding: 36px 16px 12px;
    background: linear-gradient(135deg, var(--fg-dark-lighter), var(--fg-dark-light));
    border-bottom: 2px solid var(--fg-green);
    text-align: center;
}

.screen-content {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.screen-card {
    background: var(--fg-card-bg);
    border-radius: 10px;
    padding: 12px;
    border: 1px solid var(--fg-card-border);
}

.screen-match small {
    font-size: 0.7rem;
}

.screen-score {
    margin: 6px 0;
}

.screen-team {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    font-size: 0.8rem;
    color: var(--fg-text);
}

.screen-team strong {
    font-size: 1.1rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.dot.blue { background: #4285F4; }
.dot.red { background: #EA4335; }
.dot.yellow { background: #FBBC05; }
.dot.green { background: #34A853; }

.screen-scorers {
    border-top: 1px solid var(--fg-card-border);
    padding-top: 6px;
    font-size: 0.7rem;
    color: var(--fg-text-muted);
}

.screen-tabs {
    margin-top: auto;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    border-top: 1px solid var(--fg-card-border);
}

.screen-tabs .tab {
    color: var(--fg-text-muted);
    font-size: 1.1rem;
}

.screen-tabs .tab.active {
    color: var(--fg-green);
}

/* Feature cards */
.feature-card {
    background: var(--fg-card-bg);
    border: 1px solid var(--fg-card-border);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.2s, border-color 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--fg-green);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(92, 184, 92, 0.2), rgba(33, 150, 243, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--fg-green);
    margin-bottom: 1rem;
}

/* Steps */
.section-alt {
    background: var(--fg-dark-light);
}

.step-card {
    background: var(--fg-card-bg);
    border: 1px solid var(--fg-card-border);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--fg-green), var(--fg-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    color: #fff;
}

/* Benefits */
.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.benefit-item i {
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Quotes */
.quote-card {
    background: var(--fg-card-bg);
    border: 1px solid var(--fg-card-border);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
}

.quote-icon {
    color: var(--fg-green);
    opacity: 0.3;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.avatar-circle {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--fg-green), var(--fg-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Platform cards */
.platform-card {
    background: var(--fg-card-bg);
    border: 1px solid var(--fg-card-border);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    transition: transform 0.2s, border-color 0.2s;
}

.platform-card:hover {
    transform: translateY(-4px);
    border-color: var(--fg-green);
}

/* CTA */
.cta-section {
    background: radial-gradient(ellipse at center, rgba(92, 184, 92, 0.1) 0%, transparent 70%);
}

/* Footer */
footer {
    background: var(--fg-dark-light);
    border-top: 1px solid var(--fg-card-border);
}

footer a {
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--fg-green) !important;
}

/* Buttons */
.btn-success {
    background-color: var(--fg-green);
    border-color: var(--fg-green);
    color: #fff;
    font-weight: 600;
}

.btn-success:hover {
    background-color: var(--fg-green-dark);
    border-color: var(--fg-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(92, 184, 92, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Social proof border override */
.border-top, .border-bottom {
    border-color: var(--fg-card-border) !important;
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-section .row {
        min-height: auto !important;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text .d-flex {
        justify-content: center;
    }

    h1.display-4 {
        font-size: 2.2rem;
    }
}

@media (max-width: 575.98px) {
    h1.display-4 {
        font-size: 1.8rem;
    }

    .lead {
        font-size: 1rem;
    }

    .feature-card,
    .step-card {
        padding: 1.5rem;
    }

    .btn-lg {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
    .feature-card,
    .step-card,
    .platform-card,
    .quote-card {
        animation: fadeUp 0.5s ease-out both;
    }

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