:root {
    --gold: #FFD700;
    --gold-dark: #B8860B;
    --gold-glow: rgba(255, 215, 0, 0.15);
    --black: #0A0A0A;
    --dark-gray: #1A1A1A;
    --white: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.75);
    --text-dim: rgba(255, 255, 255, 0.5);
    --glass-bg: rgba(26, 26, 26, 0.88);
    --glass-border: rgba(255, 215, 0, 0.18);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --success: #22c55e;
    --danger: #ef4444;
    --warning: #f59e0b;
    --card-bg: linear-gradient(145deg, rgba(26,26,26,0.85), rgba(16,16,16,0.9));
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    background: var(--black);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.gold { color: var(--gold); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ==================== TOP-LEFT LOGO ==================== */
.site-logo-container {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 1100;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.site-logo-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 16px rgba(255, 215, 0, 0.15);
    flex-shrink: 0;
}

.site-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-logo-text {
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

/* ==================== TOP-RIGHT LOGIN BUTTON ==================== */
.top-right-cta {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 1100;
    transition: var(--transition);
}

.top-right-cta .cta-button {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.25);
    transition: var(--transition);
    white-space: nowrap;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.top-right-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 215, 0, 0.35);
}

/* ==================== FLOATING ELEMENTS ==================== */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.02));
    animation: float 8s ease-in-out infinite;
}

.floating-circle:nth-child(1) { width: 100px; height: 100px; top: 15%; left: 8%; animation-delay: 0s; }
.floating-circle:nth-child(2) { width: 140px; height: 140px; top: 55%; right: 10%; animation-delay: 3s; }
.floating-circle:nth-child(3) { width: 70px; height: 70px; bottom: 18%; left: 22%; animation-delay: 6s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(180deg); }
}

/* ==================== NAVBAR ==================== */
.navbar-container {
    position: fixed;
    top: 84px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 48px);
    max-width: 1180px;
    transition: var(--transition);
}

.navbar-container.scrolled {
    top: 16px;
    width: calc(100% - 80px);
    max-width: 1200px;
}

.navbar {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 10px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.08), transparent);
    transition: left 0.8s ease;
}

.navbar:hover::before { left: 100%; }

.navbar:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
    position: relative;
    flex-wrap: nowrap;
    justify-content: center;
}

.nav-item { position: relative; }

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 9px 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.82rem;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(255, 215, 0, 0.04));
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover::before { opacity: 1; }

.nav-link:hover {
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.18), rgba(255, 215, 0, 0.08));
    color: var(--gold);
    box-shadow: inset 0 1px 0 rgba(255, 215, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-icon {
    width: 15px;
    height: 15px;
    fill: currentColor;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.nav-link:hover .nav-icon { transform: scale(1.1); }

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown-toggle::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 2px;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.has-dropdown.open .dropdown-toggle::after { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 18px;
    padding: 10px;
    min-width: 210px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    pointer-events: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.dropdown-link {
    display: block;
    padding: 10px 16px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s;
    font-size: 0.88rem;
    font-weight: 500;
    white-space: nowrap;
}

.dropdown-link:hover {
    background: rgba(255, 215, 0, 0.12);
    color: var(--gold);
}

.cta-button {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.25);
    transition: var(--transition);
    white-space: nowrap;
    margin-left: 4px;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 215, 0, 0.35);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 1001;
    position: relative;
    flex-shrink: 0;
}

.mobile-toggle:hover { background: rgba(255, 255, 255, 0.08); }

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
    height: 18px;
    justify-content: center;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-toggle.active .hamburger span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.mobile-toggle.active .hamburger span:nth-child(2) { opacity: 0; transform: translateX(-20px); }
.mobile-toggle.active .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile Menu & Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-gray) 100%);
    border-right: 1px solid var(--glass-border);
    z-index: 1600;
    transform: translateX(-100%);
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active { transform: translateX(0); }

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 28px 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.12);
    flex-shrink: 0;
}

.mobile-menu-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 1.35rem;
}

.mobile-menu-brand .logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.mobile-menu-brand .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-menu-close {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    line-height: 1;
}

.mobile-menu-close:hover {
    background: rgba(255, 215, 0, 0.12);
    color: var(--gold);
    border-color: rgba(255, 215, 0, 0.3);
}

.mobile-menu-nav { padding: 24px 20px; flex: 1; }
.mobile-menu-item { margin-bottom: 6px; }

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1rem;
    border-radius: 16px;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 8px;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    background: rgba(255, 215, 0, 0.12);
    color: var(--gold);
    transform: translateX(6px);
    border-color: rgba(255, 215, 0, 0.25);
}

.mobile-menu-icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
    flex-shrink: 0;
}

.mobile-dropdown-menu {
    display: none;
    padding: 0 0 8px 52px;
}

.mobile-menu-item.open .mobile-dropdown-menu {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-dropdown-link {
    display: block;
    padding: 10px 14px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: all 0.2s;
}

.mobile-dropdown-link:hover {
    color: var(--gold);
    background: rgba(255,215,0,0.08);
}

.mobile-cta { padding: 0 24px 40px; flex-shrink: 0; }

.mobile-cta-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    text-decoration: none;
    padding: 16px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.25);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.mobile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.35);
}

/* ==================== PAGE SECTIONS ==================== */
.page-section {
    display: block;
    opacity: 1;
    transition: opacity 0.4s ease;
}

/* ==================== HERO ==================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 180px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 215, 0, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 80% 10%, rgba(255, 215, 0, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 50% 100%, rgba(26, 26, 26, 1) 0%, rgba(10, 10, 10, 1) 70%),
        linear-gradient(to bottom, #0d0d0d, var(--black));
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: repeating-linear-gradient(
        90deg,
        transparent 0,
        transparent 120px,
        rgba(255, 215, 0, 0.02) 120px,
        rgba(255, 215, 0, 0.02) 121px
    );
}

.hero-spotlight {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(255,215,0,0.06) 0%, transparent 70%);
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content { max-width: 560px; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border-color: var(--gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 270px;
    height: 540px;
    background: linear-gradient(145deg, #2a2a2a, #111);
    border-radius: 40px;
    border: 2px solid rgba(255, 215, 0, 0.35);
    padding: 14px;
    box-shadow:
        0 0 0 3px rgba(255, 215, 0, 0.08),
        0 40px 80px rgba(0,0,0,0.7),
        0 0 50px rgba(255, 215, 0, 0.1);
    position: relative;
    animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 30px;
    background: #0a0a0a;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 3;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--black);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 44px 16px 20px;
    gap: 12px;
}

.phone-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.phone-header span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phone-header .live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
    animation: pulseLive 2s infinite;
}

@keyframes pulseLive {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.pred-card {
    background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(26,26,26,0.6));
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 16px;
    padding: 14px;
    color: var(--white);
}

.pred-card-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pred-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.pred-team {
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pred-team small {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.pred-vs {
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 700;
    background: rgba(255,215,0,0.1);
    padding: 4px 8px;
    border-radius: 8px;
}

.pred-tip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.pred-tip-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.pred-tip-value { font-size: 0.8rem; color: var(--gold); font-weight: 700; }

.pred-meta { display: flex; gap: 8px; margin-top: 8px; }

.pred-badge {
    font-size: 0.65rem;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}

.pred-badge.gold { background: rgba(255,215,0,0.15); color: var(--gold); }

/* ==================== TRUST INDICATORS ==================== */
.trust-section {
    position: relative;
    padding: 60px 24px;
    background: var(--black);
    z-index: 1;
    margin-top: -60px;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.3), transparent);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    padding: 28px 20px;
    background: var(--card-bg);
    border: 1px solid rgba(255, 215, 0, 0.08);
    border-radius: 20px;
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.trust-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 6px;
}

.trust-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==================== FEATURES ==================== */
.features-section {
    position: relative;
    padding: 100px 24px;
    background: var(--black);
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.3), transparent);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 215, 0, 0.08);
    border-radius: 20px;
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.08);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    color: var(--black);
    font-size: 1.6rem;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.18);
}

.feature-icon svg { width: 28px; height: 28px; }

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-description {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ==================== PREDICTIONS TABLE ==================== */
.predictions-today-section {
    position: relative;
    padding: 100px 24px;
    background: var(--dark-gray);
}

.predictions-today-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.25), transparent);
}

.table-filters {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.15);
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border-color: var(--gold);
}

.predictions-table-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.12);
    background: rgba(26, 26, 26, 0.6);
}

.predictions-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.predictions-table thead { background: rgba(255, 215, 0, 0.08); }

.predictions-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.12);
}

.predictions-table td {
    padding: 16px 20px;
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--white);
}

.predictions-table tbody tr { transition: background 0.2s; }
.predictions-table tbody tr:hover { background: rgba(255, 215, 0, 0.04); }

.outcome-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.outcome-badge.won {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.outcome-badge.lost {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.outcome-badge.pending {
    background: rgba(156, 163, 175, 0.15);
    color: #9ca3af;
    border: 1px solid rgba(156, 163, 175, 0.3);
}

.league-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.league-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.league-dot.cl { background: #00ff87; }
.league-dot.epl { background: #aa55ff; }
.league-dot.la-liga { background: #ff6b35; }
.league-dot.bundesliga { background: #ff4444; }
.league-dot.serie-a { background: #44aaff; }
.league-dot.ligue1 { background: #8888ff; }

/* ==================== SUB-PAGE GENERIC ==================== */
.subpage-hero {
    position: relative;
    padding: 180px 24px 80px;
    text-align: center;
    overflow: hidden;
}

.subpage-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
        var(--black);
    z-index: 0;
}

.subpage-hero .container { position: relative; z-index: 1; }

.subpage-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.subpage-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==================== PREDICTION CARDS GRID ==================== */
.pred-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.pred-card-item {
    background: var(--card-bg);
    border: 1px solid rgba(255, 215, 0, 0.08);
    border-radius: 20px;
    padding: 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pred-card-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.pred-card-item .league-tag {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    display: block;
}

.pred-card-item .match-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.pred-card-item .team-name {
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
    flex: 1;
}

.pred-card-item .vs-badge {
    font-size: 0.75rem;
    color: var(--gold);
    background: rgba(255, 215, 0, 0.1);
    padding: 6px 12px;
    border-radius: 10px;
    font-weight: 700;
    margin: 0 12px;
}

.pred-card-item .card-prediction {
    padding: 14px;
    background: rgba(255, 215, 0, 0.06);
    border-radius: 14px;
    text-align: center;
    margin-bottom: 16px;
}

.pred-card-item .card-prediction .pred-type {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.pred-card-item .card-prediction .pred-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
}

.pred-card-item .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.confidence-bar {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    overflow: hidden;
    margin-right: 14px;
}

.confidence-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1.5s ease;
}

.confidence-fill.high { background: linear-gradient(90deg, #22c55e, #16a34a); }
.confidence-fill.medium { background: linear-gradient(90deg, #f59e0b, #d97706); }
.confidence-fill.low { background: linear-gradient(90deg, #ef4444, #dc2626); }

.odds-badge {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    background: rgba(255,255,255,0.08);
    padding: 6px 14px;
    border-radius: 10px;
}

/* ==================== COMBO CARDS ==================== */
.combo-section {
    padding: 40px 24px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.combo-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.combo-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 24px;
    padding: 32px;
    margin-bottom: 28px;
    transition: var(--transition);
}

.combo-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.combo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.08);
}

.combo-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
}

.combo-odds {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
}

.combo-matches {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.combo-match-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.combo-match-teams {
    font-size: 0.95rem;
    font-weight: 600;
}

.combo-match-pred {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
}

/* ==================== VIP PAGE ==================== */
.vip-card-item { position: relative; overflow: hidden; }

.vip-lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 20px;
}

.vip-lock-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.vip-lock-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--black);
}

.vip-lock-text {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.vip-blur {
    filter: blur(4px);
    user-select: none;
    pointer-events: none;
}

/* ==================== PRICING ==================== */
.pricing-section {
    padding: 40px 24px 100px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--gold);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.15);
}

.pricing-card.featured::before {
    content: 'BEST VALUE';
    position: absolute;
    top: 22px;
    right: -30px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 40px;
    transform: rotate(45deg);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.pricing-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gold);
}

.pricing-period {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-amount {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.pricing-currency {
    font-size: 1.2rem;
    vertical-align: super;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 28px 0;
    padding: 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.92rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: var(--gold);
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.pricing-btn.gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
}

.pricing-btn.outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.25);
}

/* ==================== BOOKING CODES ==================== */
.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.booking-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 28px;
    transition: var(--transition);
}

.booking-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-4px);
}

.booking-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.booking-brand-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.booking-brand-name {
    font-size: 1.1rem;
    font-weight: 700;
}

.booking-code-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 215, 0, 0.06);
    border: 1px dashed rgba(255, 215, 0, 0.25);
    border-radius: 12px;
    margin-bottom: 16px;
}

.booking-code {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 3px;
    flex: 1;
}

.copy-btn {
    padding: 8px 18px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.copy-btn:hover { transform: scale(1.05); }

.booking-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ==================== LIVESCORE ==================== */
.livescore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.live-match-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 28px;
    transition: var(--transition);
}

.live-match-card.live {
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.1);
}

.live-match-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 0.8rem;
    font-weight: 600;
}

.live-dot-pulse {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: pulseLive 1.5s infinite;
}

.live-minutes {
    color: #22c55e;
    font-weight: 700;
}

.live-teams-score {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.live-team-col {
    text-align: center;
    flex: 1;
}

.live-team-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.live-score-display {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    margin: 0 20px;
}

.live-stats-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
    padding: 6px 0;
}

.live-stats-row span:first-child { text-align: right; }
.live-stats-row span:last-child { text-align: left; }

.live-stats-label {
    text-align: center;
    font-weight: 600;
    color: var(--text-dim);
}

/* ==================== APP DOWNLOAD ==================== */
.app-download-section {
    position: relative;
    padding: 100px 24px;
    background: var(--dark-gray);
    overflow: hidden;
}

.app-download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.25), transparent);
}

.app-download-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-download-content h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.app-download-content p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.play-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.25);
}

.play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.35);
}

.play-btn svg { width: 28px; height: 28px; }

.app-download-visual { display: flex; justify-content: center; }

.app-mockup {
    width: 250px;
    height: 480px;
    border-radius: 36px;
    overflow: hidden;
    border: 3px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 40px rgba(255, 215, 0, 0.1);
    animation: floatPhone 6s ease-in-out infinite;
}

.app-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
    padding: 100px 24px;
    background: var(--black);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.25), transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 215, 0, 0.08);
    border-radius: 20px;
    padding: 32px 28px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 215, 0, 0.25);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--black);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.testimonial-role {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ==================== ABOUT & CONTACT ==================== */
.about-section {
    padding: 80px 24px;
    background: var(--dark-gray);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.25), transparent);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.about-grid {
    max-width: 900px;
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.about-stat h3 {
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 800;
    margin-bottom: 6px;
}

.about-stat p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-section {
    padding: 100px 24px;
    background: var(--black);
}

.contact-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form {
    background: var(--card-bg);
    border: 1px solid rgba(255, 215, 0, 0.08);
    border-radius: 20px;
    padding: 36px;
}

.contact-form h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--gold);
}

.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 215, 0, 0.08);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: rgba(255, 215, 0, 0.25);
    transform: translateY(-4px);
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--black);
}

.contact-info-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-info-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==================== FOOTER ==================== */
.site-footer {
    position: relative;
    background: linear-gradient(180deg, #111111, #0a0a0a);
    border-top: 1px solid rgba(255, 215, 0, 0.12);
    padding: 60px 24px 0;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-logo {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.footer-links-list a {
    display: block;
    color: var(--text-muted);
    padding: 8px 0;
    font-size: 0.92rem;
    transition: color 0.2s;
}

.footer-links-list a:hover { color: var(--gold); }

.social-links { display: flex; gap: 12px; }

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(255, 215, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.responsible-gambling {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px 24px;
}

.rg-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rg-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--black);
}

.rg-content h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--gold);
}

.rg-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
}

/* ==================== MEDIA QUERIES ==================== */
@media (min-width: 993px) {
    .navbar-nav {
        display: flex !important;
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: none !important;
        border: none !important;
        padding: 0 !important;
        box-shadow: none !important;
        flex-direction: row !important;
    }
}

@media (max-width: 1160px) {
    .nav-link {
        padding: 10px 12px;
        font-size: 0.82rem;
    }
    .cta-button {
        padding: 10px 18px;
        font-size: 0.82rem;
    }
}

@media (max-width: 1060px) {
    .nav-icon { display: none; }
}

@media (max-width: 992px) {
    .site-logo-container { top: 16px; left: 16px; }
    .site-logo-icon { width: 40px; height: 40px; }
    .site-logo-icon::before { width: 16px; height: 16px; }
    .site-logo-text { font-size: 1.25rem; }
    .top-right-cta { top: 16px; right: 16px; }
    .top-right-cta .cta-button { padding: 10px 18px; font-size: 0.82rem; }
    .navbar-container { top: 76px; width: calc(100% - 32px); }
    .navbar-container.scrolled { top: 12px; }
    .navbar { padding: 10px 18px; }
    .mobile-toggle { display: flex !important; align-items: center; justify-content: center; }
    .navbar-nav { display: none; }
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 48px; }
    .hero-content { max-width: 600px; margin: 0 auto; order: 2; }
    .hero-visual { order: 1; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-title { font-size: clamp(2rem, 7vw, 3rem); }
    .features-grid { grid-template-columns: 1fr; max-width: 500px; }
    .about-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 600px) {
    .site-logo-container { top: 12px; left: 12px; }
    .site-logo-icon { width: 36px; height: 36px; }
    .site-logo-icon::before { width: 14px; height: 14px; }
    .site-logo-text { font-size: 1.1rem; }
    .top-right-cta { top: 12px; right: 12px; }
    .top-right-cta .cta-button { padding: 8px 14px; font-size: 0.78rem; }
    .phone-mockup { width: 230px; height: 460px; }
    .footer-grid { grid-template-columns: 1fr; }
    .responsible-gambling { flex-direction: column; text-align: center; }
    .btn { width: 100%; }
    .section-header { margin-bottom: 40px; }
}
