/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #013974;
    --secondary-blue: #08519E;
    --light-blue: #E8ECF1;
    --white: #FFFFFF;
    --orange-btn: #FA5C00;
    --blue-btn: #4B95E5;
    --dark-bg: #0F172A;
    --text-light: #E2E8F0;
    --text-dark: #1E293B;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== HEADER ===== */
header {
    background: rgba(1, 57, 116, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--secondary-blue);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--white);
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 6px;
    transition: all 0.3s;
}

nav a:hover,
nav a.active {
    background: var(--secondary-blue);
    color: var(--white);
}

.btn-login {
    background: var(--blue-btn);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-login:hover {
    background: #3a7ec4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(75, 149, 229, 0.4);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1,57,116,0.95) 0%, rgba(8,81,158,0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--light-blue);
    max-width: 800px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-feature {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.hero-feature i {
    color: var(--orange-btn);
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--orange-btn);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(250, 92, 0, 0.3);
}

.btn-primary:hover {
    background: #e04f00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(250, 92, 0, 0.5);
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* ===== SECTIONS ===== */
section {
    padding: 80px 20px;
}

section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== PROMO SECTION ===== */
.promo-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #1a2744 100%);
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.promo-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.promo-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-blue);
    box-shadow: 0 10px 30px rgba(8,81,158,0.3);
}

.promo-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.promo-card h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 15px;
}

.promo-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.btn-promo {
    background: var(--orange-btn);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-promo:hover {
    background: #e04f00;
    transform: translateY(-2px);
}

/* ===== ADVANTAGES SECTION ===== */
.advantages-section {
    background: var(--dark-bg);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.advantage-card {
    background: linear-gradient(135deg, rgba(1,57,116,0.3) 0%, rgba(8,81,158,0.2) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(75,149,229,0.2);
    transition: all 0.3s;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: var(--blue-btn);
    box-shadow: 0 10px 30px rgba(75,149,229,0.3);
}

.advantage-card i {
    font-size: 40px;
    color: var(--orange-btn);
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.advantage-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== GAMES & SPORTS SECTIONS ===== */
.games-section,
.sports-section {
    background: linear-gradient(180deg, #1a2744 0%, var(--dark-bg) 100%);
}

.games-grid,
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.game-card,
.sport-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.game-card:hover,
.sport-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-blue);
}

.game-card.featured {
    grid-column: span 2;
    position: relative;
    overflow: hidden;
}

.game-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.game-overlay {
    background: linear-gradient(to top, rgba(1,57,116,0.95) 0%, transparent 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
}

.game-card h3,
.sport-card h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.game-card p,
.sport-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.sport-card i {
    font-size: 40px;
    color: var(--orange-btn);
    margin-bottom: 15px;
}

.sport-card.live {
    background: linear-gradient(135deg, rgba(250,92,0,0.2) 0%, rgba(8,81,158,0.2) 100%);
    border-color: var(--orange-btn);
}

.game-stats {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.game-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.btn-game {
    background: var(--orange-btn);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
    margin-top: 15px;
}

/* ===== PAYMENT SECTION ===== */
.payment-section {
    background: var(--dark-bg);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.payment-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.payment-card i {
    font-size: 40px;
    color: var(--orange-btn);
    margin-bottom: 20px;
}

.payment-card h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.payment-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.payment-card.crypto {
    border-color: var(--orange-btn);
    background: linear-gradient(135deg, rgba(250,92,0,0.1) 0%, rgba(8,81,158,0.1) 100%);
}

.crypto-benefits {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.crypto-benefits span {
    background: rgba(250,92,0,0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.payment-note {
    background: rgba(75,149,229,0.1);
    border-left: 4px solid var(--blue-btn);
    padding: 20px;
    border-radius: 10px;
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.payment-note i {
    color: var(--blue-btn);
    font-size: 24px;
}

/* ===== APP FEATURES SECTION ===== */
.app-features-section {
    background: linear-gradient(180deg, #1a2744 0%, var(--dark-bg) 100%);
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    align-items: center;
}

.features-image img {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item i {
    font-size: 30px;
    color: var(--orange-btn);
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--dark-bg);
}

.faq-grid {
    display: grid;
    gap: 20px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(255,255,255,0.08);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin: 0;
}

.faq-question i {
    color: var(--orange-btn);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== STATS SECTION ===== */
.stats-section,
.stats-overview-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-card i {
    font-size: 50px;
    color: var(--orange-btn);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--light-blue);
    font-size: 1rem;
}

/* ===== DOWNLOAD PAGE SPECIFIC ===== */
.step-by-step {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--orange-btn);
}

.step-number {
    display: inline-block;
    background: var(--orange-btn);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.step-note {
    background: rgba(75,149,229,0.1);
    border-left: 3px solid var(--blue-btn);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.step-note.warning {
    background: rgba(250,92,0,0.1);
    border-left-color: var(--orange-btn);
}

.step-note i {
    color: var(--blue-btn);
    font-size: 20px;
}

.step-note.warning i {
    color: var(--orange-btn);
}

.step-image {
    width: 100%;
    border-radius: 15px;
    margin-top: 20px;
}

.post-install-tip {
    background: linear-gradient(135deg, rgba(250,92,0,0.1) 0%, rgba(8,81,158,0.1) 100%);
    border: 2px solid var(--orange-btn);
    padding: 25px;
    border-radius: 15px;
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.post-install-tip i {
    font-size: 40px;
    color: var(--orange-btn);
}

.post-install-tip h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.requirements-section,
.comparison-section,
.ios-section {
    background: var(--dark-bg);
}

.requirements-grid,
.comparison-table {
    margin-top: 50px;
}

.req-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.req-card i {
    font-size: 50px;
    color: var(--orange-btn);
    margin-bottom: 20px;
}

.comparison-table {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.comparison-header {
    background: var(--primary-blue);
    font-weight: 700;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:hover {
    background: rgba(255,255,255,0.03);
}

.comparison-value.positive {
    color: #10B981;
}

.comparison-value.negative {
    color: #EF4444;
}

.ios-steps {
    display: grid;
    gap: 25px;
    margin-top: 50px;
}

.ios-step {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--blue-btn);
}

.ios-note {
    background: rgba(75,149,229,0.1);
    border: 2px solid var(--blue-btn);
    padding: 25px;
    border-radius: 15px;
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.final-cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    text-align: center;
}

/* ===== REVIEWS PAGE SPECIFIC ===== */
.rating-breakdown {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 50px;
    align-items: center;
}

.rating-bar-item {
    display: grid;
    grid-template-columns: 80px 1fr 60px;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.bar-container {
    height: 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--orange-btn) 0%, var(--blue-btn) 100%);
    border-radius: 10px;
}

.rating-summary {
    text-align: center;
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 15px;
}

.big-rating {
    font-size: 5rem;
    font-weight: 800;
    color: var(--white);
}

.rating-stars {
    font-size: 2rem;
    margin: 10px 0;
}

.pros-cons-section {
    background: var(--dark-bg);
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.pros-card {
    background: linear-gradient(135deg, rgba(16,185,129,0.1) 0%, rgba(8,81,158,0.1) 100%);
    border-left: 4px solid #10B981;
    padding: 30px;
    border-radius: 15px;
}

.cons-card {
    background: linear-gradient(135deg, rgba(239,68,68,0.1) 0%, rgba(8,81,158,0.1) 100%);
    border-left: 4px solid #EF4444;
    padding: 30px;
    border-radius: 15px;
}

.pros-card h3 i {
    color: #10B981;
}

.cons-card h3 i {
    color: #EF4444;
}

.pros-card ul,
.cons-card ul {
    list-style: none;
    margin-top: 20px;
}

.pros-card li,
.cons-card li {
    padding: 10px 0;
    line-height: 1.7;
}

.reviews-section {
    background: linear-gradient(180deg, #1a2744 0%, var(--dark-bg) 100%);
}

.reviews-grid {
    display: grid;
    gap: 25px;
    margin-top: 50px;
}

.review-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-info strong {
    color: var(--white);
    font-size: 1.1rem;
}

.review-date {
    display: block;
    font-size: 14px;
    color: rgba(226,232,240,0.6);
    margin-top: 5px;
}

.review-rating {
    font-size: 1.2rem;
}

.review-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.review-helpful {
    color: rgba(226,232,240,0.7);
    font-size: 14px;
}

/* ===== REGISTRATION PAGE SPECIFIC ===== */
.registration-methods-section {
    background: var(--dark-bg);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.method-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(255,255,255,0.1);
    position: relative;
}

.method-card.recommended {
    border-color: var(--orange-btn);
    background: linear-gradient(135deg, rgba(250,92,0,0.1) 0%, rgba(8,81,158,0.1) 100%);
}

.method-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--orange-btn);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.method-card i {
    font-size: 50px;
    color: var(--orange-btn);
    margin-bottom: 20px;
}

.method-card h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.method-steps {
    list-style: none;
    margin-top: 20px;
}

.method-steps li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.method-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--orange-btn);
    font-weight: 700;
}

.detailed-instructions-section {
    background: linear-gradient(180deg, #1a2744 0%, var(--dark-bg) 100%);
}

.instruction-steps {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

.instruction-step {
    display: flex;
    gap: 25px;
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
}

.instruction-step .step-number {
    flex-shrink: 0;
}

.instruction-step h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.instruction-image {
    width: 100%;
    border-radius: 15px;
    margin-top: 40px;
}

.promo-code-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.promo-highlight {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 50px;
    align-items: center;
}

.promo-code-box {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.promo-label {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--light-blue);
}

.promo-code-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--orange-btn);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.copy-button {
    background: var(--orange-btn);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.copy-button:hover {
    background: #e04f00;
    transform: translateY(-2px);
}

.promo-benefits ul {
    list-style: none;
}

.promo-benefits li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.7;
}

.promo-benefits i {
    color: var(--orange-btn);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.promo-terms {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.promo-terms h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.verification-section {
    background: var(--dark-bg);
}

.verification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.verification-card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
}

.verification-card h3 i {
    color: var(--orange-btn);
    margin-right: 10px;
}

.verification-card ul {
    list-style: none;
    margin-top: 20px;
}

.verification-card li {
    padding: 8px 0;
    color: var(--text-light);
}

.verification-note {
    background: rgba(75,149,229,0.1);
    border: 2px solid var(--blue-btn);
    padding: 25px;
    border-radius: 15px;
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--primary-blue);
    padding: 60px 20px 20px;
}

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

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

.footer-about p {
    color: var(--light-blue);
    line-height: 1.7;
}

.footer-links h4,
.footer-info h4,
.footer-cta h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-info ul {
    list-style: none;
}

.footer-links li,
.footer-info li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-blue);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-info li {
    color: var(--light-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-footer {
    background: var(--orange-btn);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
    margin-top: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--light-blue);
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 14px;
    color: rgba(232,236,241,0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .features-content,
    .promo-highlight,
    .pros-cons-grid,
    .rating-breakdown {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-blue);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }
    
    nav.active {
        max-height: 500px;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }
    
    .game-card.featured {
        grid-column: span 1;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 50px 15px;
    }
    
    .hero-content {
        padding: 40px 15px;
    }
    
    .stat-number,
    .big-rating {
        font-size: 2rem;
    }
    
    .promo-code-value {
        font-size: 2rem;
    }
}
