* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e3a8a;
    --light-blue: #3b82f6;
    --gold: #fbbf24;
    --dark-blue: #0f172a;
    --white: #ffffff;
    --light-gray: #f3f4f6;
    --text-dark: #1f2937;
    --whatsapp-green: #25D366;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

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

/* ===== NAVBAR ===== */
.navbar {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold);
}

.trophy-icon {
    font-size: 2rem;
    color: #FFD700;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
}

.nav-auth {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-signin {
    background-color: var(--light-blue);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--light-blue);
}

.btn-signin:hover {
    background-color: transparent;
    color: var(--light-blue);
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 1100;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.08);
}

.hamburger span {
    width: 24px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

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

.banner-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.banner-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
}

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--gold);
    width: 30px;
    border-radius: 6px;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.hero-content {
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
    max-width: 1150px;
    padding: 24px;
}

.hero-trophy {
    font-size: 8rem;
    color: #FFD700;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 15px 30px rgba(255, 215, 0, 0.6));
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

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

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

/* ===== PREMIUM COUNTDOWN SECTION ===== */
.hero-countdowns {
    margin-top: 35px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 1150px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

.countdown-box {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.07) 100%);
    padding: 28px;
    border-radius: 22px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    overflow: hidden;
}

.countdown-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -40%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.09), transparent);
    transform: skewX(-25deg);
}

.countdown-box h3 {
    color: #FFD700;
    margin-bottom: 18px;
    font-size: 1.35rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.countdown-box h3 i {
    margin-right: 8px;
    color: #FFD700;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.countdown-item {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.38) 100%);
    padding: 18px 10px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 8px 18px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-4px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 12px 24px rgba(0, 0, 0, 0.24);
}

.countdown-value {
    display: block;
    font-size: 2.1rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.countdown-label {
    display: block;
    font-size: 0.78rem;
    color: #FFD700;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
}

.next-match-info {
    text-align: center;
    margin-bottom: 16px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.18);
    border-radius: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.next-match-info p {
    margin: 5px 0;
    font-size: 0.97rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

#nextMatchTeams {
    display: inline-block;
    font-size: 1.15rem;
    color: #FFD700;
    font-weight: 800;
    margin-bottom: 4px;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background-color: var(--light-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-gold {
    background-color: var(--gold);
    color: var(--primary-blue);
}

.btn-gold:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
}

.btn-full {
    width: 100%;
}

/* ===== FEATURED MATCH SECTION ===== */
.featured-match {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.featured-match h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 40px;
}

.featured-match h2 i,
.quick-booking h2 i,
.choose-country h2 i,
.all-in-one h2 i {
    margin-right: 10px;
    color: var(--gold);
}

.match-card {
    background: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.match-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.team {
    text-align: center;
    flex: 1;
}

.team h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.flag-img {
    width: 60px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.flag-small {
    width: 30px;
    height: auto;
    vertical-align: middle;
    border-radius: 3px;
    margin: 0 5px;
}

.vs {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: bold;
}

.match-details {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.match-details p {
    margin: 10px 0;
    color: var(--text-dark);
}

.match-details strong {
    color: var(--primary-blue);
}

.match-card .btn {
    width: 100%;
    text-align: center;
}

/* ===== QUICK BOOKING SECTION ===== */
.quick-booking {
    padding: 60px 0;
    background-color: var(--white);
}

.quick-booking h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 40px;
}

.booking-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.booking-card {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.booking-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.2);
    border-color: var(--gold);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.card-icon i,
.package-icon i {
    font-size: 3rem;
    color: var(--primary-blue);
}

.booking-card h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.booking-card p {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.card-link {
    color: var(--light-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: var(--gold);
}

/* ===== CHOOSE COUNTRY SECTION ===== */
.choose-country {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    text-align: center;
}

.choose-country h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.choose-country p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.country-selector {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.country-dropdown {
    flex: 1;
    min-width: 250px;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    background-color: var(--white);
    color: var(--text-dark);
    cursor: pointer;
}

.country-dropdown:focus {
    outline: 2px solid var(--gold);
}

/* ===== ALL-IN-ONE PACKAGE SECTION ===== */
.all-in-one {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.all-in-one h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 40px;
}

.package-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.package-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.package-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.package-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.package-item h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.package-item p {
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* ===== CRYPTO SECTION ===== */
.crypto-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.crypto-content {
    text-align: center;
    color: var(--white);
}

.crypto-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.crypto-icon i {
    font-size: 4rem;
    color: #F7931A;
}

.crypto-section h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 900;
}

.crypto-section p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.crypto-subtitle {
    opacity: 0.9;
    font-size: 1rem;
}

/* ===== SUPPORT SECTION ===== */
.support-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
}

.support-content {
    text-align: center;
    color: var(--white);
}

.support-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.support-icon i {
    font-size: 4rem;
    color: var(--white);
}

.support-section h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 900;
}

.support-section p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.support-subtitle {
    opacity: 0.9;
    font-size: 1rem;
    margin-bottom: 30px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 40px 0 20px;
}

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

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-blue);
    border-radius: 50%;
    font-size: 1.2rem;
}

.social-links a:hover {
    background-color: var(--gold);
    color: var(--primary-blue);
}

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

/* ===== FOOTER CONTACT SECTION (WHATSAPP ONLY) ===== */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-contact .social-links {
    margin-top: 5px;
}

.footer-contact .social-links a {
    background-color: var(--whatsapp-green);
}

.footer-contact .social-links a:hover {
    background-color: var(--gold);
    color: var(--primary-blue);
}

/* ===== PAGE HERO (FOR OTHER PAGES) ===== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-hero h1 i {
    margin-right: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===== PAGE CONTENT ===== */
.page-content {
    padding: 60px 0;
    background-color: var(--light-gray);
    min-height: 50vh;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.content-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.content-card p {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.content-card .btn {
    margin-top: 15px;
    width: 100%;
}

.content-card i {
    color: var(--primary-blue);
    margin-right: 5px;
}

.content-card h3 i {
    color: var(--gold);
}

/* ===== ABOUT PAGE IMPROVEMENT ===== */
.about-content {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 28px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.about-content h2 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 18px;
}

.about-content h2 i {
    color: var(--gold);
    margin-right: 10px;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.about-content a {
    color: var(--light-blue);
    text-decoration: none;
    font-weight: 600;
}

.about-content a:hover {
    color: var(--gold);
}

.about-section-block {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 28px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.about-section-block h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 18px;
}

.about-section-block h2 i {
    color: var(--gold);
    margin-right: 10px;
}

.about-section-block p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.about-highlight-grid,
.about-services-grid,
.about-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.about-highlight-card,
.about-service-card,
.about-summary-card {
    background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
    border: 1px solid rgba(30, 58, 138, 0.08);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-highlight-card:hover,
.about-service-card:hover,
.about-summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.about-highlight-card i,
.about-service-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.about-highlight-card h3,
.about-service-card h3,
.about-summary-card h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.about-highlight-card p,
.about-service-card p,
.about-summary-card p {
    margin: 0;
    line-height: 1.7;
}

.about-feature-list {
    display: grid;
    gap: 18px;
    margin-top: 20px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #ffffff;
    border: 1px solid rgba(30, 58, 138, 0.08);
    border-radius: 14px;
    padding: 20px;
}

.about-feature-item i {
    font-size: 1.4rem;
    color: var(--gold);
    margin-top: 4px;
}

.about-feature-item h3 {
    color: var(--primary-blue);
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.about-feature-item p {
    margin: 0;
}

.about-summary-block {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
}

.about-summary-block h2 {
    color: var(--white);
}

.about-summary-block h2 i {
    color: var(--gold);
}

.about-summary-card {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-summary-card h3 {
    color: #FFD700;
}

.about-summary-card p {
    color: var(--white);
}

/* ===== ACCOUNT PAGE STYLES ===== */
.account-dashboard {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.account-profile-card {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    align-items: center;
    gap: 25px;
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.account-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2.3rem;
}

.account-profile-info h2 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.account-profile-info p {
    margin-bottom: 6px;
    color: var(--text-dark);
}

.account-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.account-summary-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.account-summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.summary-icon {
    font-size: 2.1rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.account-summary-card h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.summary-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 6px;
}

.account-section {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.account-section h2 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.account-section h2 i {
    color: var(--gold);
    margin-right: 10px;
}

.account-activity-list {
    display: grid;
    gap: 18px;
}

.account-activity-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #f8fbff;
    border: 1px solid rgba(30, 58, 138, 0.08);
    border-radius: 14px;
    padding: 20px;
}

.account-activity-item i {
    font-size: 1.3rem;
    color: var(--gold);
    margin-top: 4px;
}

.account-activity-item h4 {
    color: var(--primary-blue);
    margin-bottom: 6px;
}

.account-activity-item p {
    margin: 0;
    color: var(--text-dark);
}

.account-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.account-action-card {
    background: #f8fbff;
    border: 1px solid rgba(30, 58, 138, 0.08);
    border-radius: 14px;
    padding: 22px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.account-action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.account-action-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.account-action-card h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.account-action-card p {
    color: var(--text-dark);
    margin-bottom: 15px;
}

/* ===== COMING SOON (PAYMENTS PAGE) ===== */
.coming-soon {
    text-align: center;
    padding: 60px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.coming-soon h2 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 2rem;
}

.coming-soon p {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.payment-item {
    background: var(--light-gray);
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-blue);
}

.payment-item i {
    font-size: 1.5rem;
    margin-right: 10px;
    color: var(--primary-blue);
}

.coming-soon-date {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 20px;
}

/* ===== FAQ STYLES ===== */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.faq-accordion {
    padding: 0;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: var(--white);
    border: none;
    outline: none;
    cursor: pointer;
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.faq-question span {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.faq-question i {
    color: var(--gold);
}

.faq-toggle-icon {
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.faq-accordion.active .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 25px;
    background: var(--white);
}

.faq-accordion.active .faq-answer {
    max-height: 220px;
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--whatsapp-green);
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-cta {
    margin-top: 40px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-cta h2 {
    margin-bottom: 12px;
    font-size: 2rem;
}

.faq-cta h2 i {
    margin-right: 10px;
}

.faq-cta p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    opacity: 0.95;
}

.faq-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ===== AUTH FORM (LOGIN/REGISTER) ===== */
.auth-form {
    max-width: 450px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-blue);
}

.form-group label i {
    margin-right: 8px;
    color: var(--light-blue);
}

.form-group label i.fa-whatsapp {
    color: var(--whatsapp-green);
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--light-blue);
}

.form-group input::placeholder {
    color: #9ca3af;
}

.auth-link {
    text-align: center;
    margin-top: 20px;
    color: var(--text-dark);
}

.auth-link a {
    color: var(--light-blue);
    text-decoration: none;
    font-weight: 600;
}

.auth-link a:hover {
    color: var(--gold);
}

/* ===== LOGIN / FORM VALIDATION STYLES ===== */
.form-error {
    display: block;
    color: #ff4d4f;
    font-size: 0.85rem;
    margin-top: 6px;
    min-height: 18px;
}

.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--primary-blue);
    flex-shrink: 0;
}

.checkbox-label a {
    color: var(--light-blue);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    color: var(--gold);
}

/* ===== PASSWORD TOGGLE ===== */
.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input {
    width: 100%;
    padding-right: 45px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.toggle-password:hover {
    color: var(--primary-blue);
}

/* ===== SELECT DROPDOWN STYLING ===== */
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231e3a8a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-group select:focus {
    outline: none;
    border-color: var(--light-blue);
}

.form-group select option {
    padding: 10px;
}

.form-group select optgroup {
    font-weight: 700;
    color: var(--primary-blue);
}

/* ===== EMAIL VERIFICATION PAGE STYLES ===== */
.verification-info {
    text-align: center;
    margin-bottom: 30px;
}

.verification-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.verification-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.verification-info h2 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.verification-info p {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.user-email {
    font-weight: 700;
    color: var(--primary-blue) !important;
    font-size: 1.1rem;
}

/* 6-Digit Code Input */
.code-input-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.code-digit {
    width: 50px;
    height: 60px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.code-digit:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.code-digit.filled {
    border-color: var(--primary-blue);
    background: #f0f7ff;
}

.code-digit.error {
    border-color: #ff4d4f;
    background: #fff2f2;
}

/* Resend Section */
.resend-section {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--light-gray);
}

.resend-section p {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.btn-resend {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-resend:hover {
    background: var(--primary-blue);
    color: #ffffff;
}

.btn-resend:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-resend i {
    margin-right: 8px;
}

.resend-timer {
    color: var(--gold);
    font-weight: 600;
    margin-top: 10px;
}

/* Verification Help */
.verification-help {
    margin-top: 25px;
    padding: 15px;
    background: #f8fbff;
    border-radius: 10px;
    border: 1px solid rgba(30, 58, 138, 0.08);
}

.verification-help p {
    margin: 8px 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.verification-help i {
    margin-right: 8px;
    color: var(--light-blue);
}

.verification-help i.fa-exclamation-triangle {
    color: var(--gold);
}

/* ===== LIVE CHAT WIDGET ===== */
.live-chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 62px;
    height: 62px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, #f59e0b 100%);
    color: var(--primary-blue);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1200;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.live-chat-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.live-chat-box {
    position: fixed;
    bottom: 95px;
    right: 20px;
    width: 340px;
    max-width: calc(100% - 30px);
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    z-index: 1250;
    display: none;
    animation: fadeInUp 0.3s ease;
}

.live-chat-box.active {
    display: block;
}

.live-chat-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: #ffffff;
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.live-chat-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.live-chat-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
}

.live-chat-body {
    padding: 18px;
    background: #f8fbff;
    max-height: 350px;
    overflow-y: auto;
}

.chat-message {
    margin-bottom: 14px;
}

.bot-message {
    background: #ffffff;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
}

.bot-message p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.5;
}

/* ===== LIVE CHAT CONTACT INFO ===== */
.chat-contact-info {
    font-size: 0.9em;
    margin-top: 10px;
    line-height: 1.8;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.chat-contact-info a {
    color: var(--whatsapp-green);
    text-decoration: none;
    font-weight: 600;
}

.chat-contact-info a:hover {
    text-decoration: underline;
}

.chat-contact-info i {
    margin-right: 6px;
    color: var(--whatsapp-green);
}

.chat-contact-info i.fa-envelope {
    color: var(--light-blue);
}

.chat-options {
    display: grid;
    gap: 10px;
}

.chat-options button {
    border: none;
    background: var(--primary-blue);
    color: #ffffff;
    padding: 12px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    transition: background 0.3s ease, transform 0.2s ease;
}

.chat-options button:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
}

.chat-options button i.fa-whatsapp {
    color: var(--whatsapp-green);
    margin-right: 8px;
}

.chat-options button:last-child {
    background: var(--whatsapp-green);
    color: #ffffff;
}

.chat-options button:last-child:hover {
    background: #128C7E;
}

.chat-options button:last-child i {
    color: #ffffff;
}

.user-message {
    background: var(--gold);
    color: var(--primary-blue);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 12px;
    font-weight: 600;
    align-self: flex-end;
}

.chat-response {
    background: #ffffff;
    color: var(--text-dark);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }
}

@media (max-width: 900px) {
    .hero-countdowns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-container {
        position: relative;
    }

    .nav-menu {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        padding: 20px;
        border-radius: 0 0 14px 14px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
        display: none;
        animation: slideDown 0.3s ease;
        z-index: 1001;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 12px;
        border-radius: 8px;
        font-size: 1rem;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 255, 255, 0.08);
    }

    .nav-auth {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        padding: 0 20px;
    }

    .btn {
        width: 100%;
    }

    .match-info {
        flex-direction: column;
    }

    .country-selector {
        flex-direction: column;
    }

    .country-dropdown {
        min-width: 100%;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .auth-form {
        margin: 0 15px;
        padding: 30px 20px;
    }

    .faq-question {
        padding: 18px 18px;
        font-size: 0.95rem;
    }

    .faq-accordion.active .faq-answer {
        padding: 0 18px 18px 18px;
    }

    .faq-cta {
        padding: 30px 20px;
    }

    .faq-cta h2 {
        font-size: 1.6rem;
    }

    .about-section-block {
        padding: 24px;
    }

    .about-feature-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .account-profile-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .account-avatar {
        margin: 0 auto;
    }

    .account-profile-action {
        text-align: center;
    }

    .password-input-wrapper input {
        padding-right: 40px;
        font-size: 16px;
    }

    .toggle-password {
        right: 10px;
    }

    .form-group select {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.72rem;
    }

    .countdown-box {
        padding: 20px;
    }

    .countdown-box h3 {
        font-size: 1.1rem;
    }

    #nextMatchTeams {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-logo span {
        font-size: 1.1rem;
    }

    .hero {
        min-height: 600px;
    }

    .hero-trophy {
        font-size: 5rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .quick-booking h2,
    .featured-match h2,
    .all-in-one h2,
    .choose-country h2 {
        font-size: 1.8rem;
    }

    .booking-cards,
    .package-items,
    .content-grid,
    .about-highlight-grid,
    .about-services-grid,
    .about-summary-grid,
    .account-summary-grid,
    .account-actions-grid {
        grid-template-columns: 1fr;
    }

    .payment-methods {
        flex-direction: column;
    }

    .payment-item {
        width: 100%;
        text-align: center;
    }

    .coming-soon {
        padding: 30px 20px;
    }

    .coming-soon h2 {
        font-size: 1.5rem;
    }

    .faq-item {
        padding: 0;
    }

    .faq-item h3 {
        font-size: 1.1rem;
    }

    .checkbox-label {
        font-size: 0.88rem;
    }

    .live-chat-box {
        right: 10px;
        bottom: 85px;
        width: calc(100% - 20px);
    }

    .live-chat-toggle {
        right: 15px;
        bottom: 15px;
        width: 56px;
        height: 56px;
    }

    /* Verification Page Mobile */
    .code-digit {
        width: 42px;
        height: 52px;
        font-size: 1.5rem;
    }

    .code-input-container {
        gap: 6px;
    }

    .verification-icon {
        width: 60px;
        height: 60px;
    }

    .verification-icon i {
        font-size: 1.8rem;
    }

    .verification-info h2 {
        font-size: 1.3rem;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ===================================
   LANGUAGE SELECTOR
   =================================== */
.language-selector {
    position: relative;
    display: inline-block;
    margin-right: 10px;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 6px 12px;
    cursor: pointer;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-toggle:hover,
.lang-toggle.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--gold);
}

.lang-flag {
    font-size: 1rem;
}

.lang-code {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.lang-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.lang-toggle.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 2000;
    border: 1px solid rgba(30, 58, 138, 0.08);
}

.lang-dropdown.active {
    display: flex;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: background 0.2s ease;
    width: 100%;
}

.lang-option:hover {
    background: var(--light-gray);
}

.lang-option.active {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f0fe 100%);
    color: var(--primary-blue);
    font-weight: 700;
}

.lang-native {
    flex: 1;
}

.lang-check {
    color: var(--primary-blue);
    font-size: 0.8rem;
}

/* RTL Support */
[dir="rtl"] .lang-dropdown {
    right: auto;
    left: 0;
}

[dir="rtl"] .lang-option {
    text-align: right;
}

[dir="rtl"] .nav-menu {
    direction: rtl;
}

/* Mobile Language Selector */
@media (max-width: 768px) {
    .language-selector {
        margin-right: 5px;
    }

    .lang-toggle {
        padding: 5px 8px;
        gap: 4px;
    }

    .lang-code {
        display: none;
    }

    .lang-dropdown {
        right: auto;
        left: 0;
    }
}