* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ============ PRIMARY COLORS ============ */
    --primary: #0a2a42;
    --secondary: #29b6f6;
    --main: #0a2a42;
    --header: #0d3b60;
    --text: #ffffff;
    --text-light: #e0e0e0;
    --bg-dark: #0a2a42;
    --bg-card: #0f3a5c;
    
    /* ============ GRADIENTS ============ */
    /* --gradient: linear-gradient(103.42deg, #0f78d8 6.06%, #000 77.61%); */
    /* --gradient-light: linear-gradient(135deg, #0a2a42, #0f3a5c); */
    
    /* ============ BUTTONS ============ */
    --btn-bg: #0056b3;
    --btn-bg-hover: #004494;
    --btn-text-color: #ffffff;
    --btn-padding: 10px 18px;
    --btn-border-radius: 6px;
    
    /* ============ SHADOWS & EFFECTS ============ */
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    --shadow-primary: 0 0 50px 5px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.4);
    
    /* ============ TRANSITIONS ============ */
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.5s ease;
    
    /* ============ SPACING ============ */
    --border-radius: 6px;
    --border-radius-lg: 10px;
    --border-radius-xl: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.5;
    background-color: var(--bg-dark);
    overflow-x: hidden;
    font-size: 14px;
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ============ RESET COMMON ELEMENTS ============ */
h1, h2, h3, h4, h5, h6 {
    color: var(--secondary);
    font-weight: 900;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.1rem;
}

p {
    color: var(--text-light);
    font-size: 0.9rem;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #29b6f6;
}

button {
    font-family: inherit;
}

/* ============ TOP NAVIGATION BAR ============ */
.navbar-top {
    background-color: var(--main);
    color: var(--text);
    padding: 0.6rem 0;
    box-shadow: var(--shadow-primary);
    position: sticky;
    top: 0;
    z-index: 102;
    border-bottom: 2px solid var(--secondary);
}

.navbar-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand img {
    height: 35px;
    width: auto;
    transition: var(--transition);
    filter: brightness(1.1);
}

.nav-brand img:hover {
    transform: scale(1.05);
}

.mobile-logo {
    display: none;
}

@media (max-width: 768px) {
    .mobile-logo {
        display: block;
    }
    
    .mobile-logo img {
        height: 30px;
    }

    .nav-buttons {
        gap: 6px;
    }

    .btn-register,
    .btn-login {
        padding: 7px 12px;
        font-size: 0.75rem;
    }
}

.nav-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-register {
    background-color: var(--secondary);
    color: var(--main);
    padding: 9px 16px;
    border-radius: var(--btn-border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.btn-register::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transition: var(--transition-slow);
}

.btn-register:hover::before {
    left: 100%;
}

.btn-register:hover {
    background-color: #0288d1;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 15px rgba(41, 182, 246, 0.4);
}

.btn-login {
    background-color: transparent;
    color: var(--text);
    padding: 9px 16px;
    border: 2px solid var(--text);
    border-radius: var(--btn-border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    transition: var(--transition-slow);
    z-index: -1;
}

.btn-login:hover::before {
    left: 0;
}

.btn-login:hover {
    color: var(--main);
    border-color: var(--secondary);
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-hover);
}

/* ============ STATIC LOGO ============ */
.static-logo {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: transparent;
}

.static-logo img {
    height: 40px;
    width: auto;
    filter: brightness(1.2);
}

/* ============ FLOATING MENU TOGGLE ============ */
.floating-menu-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--bg-dark);
    border: 2px solid var(--secondary);
    color: var(--text);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1004;
    transition: var(--transition);
    box-shadow: var(--shadow);
    padding: 0;
    margin: 0;
}

.floating-menu-toggle:hover {
    background: var(--secondary);
    color: var(--main);
    transform: scale(1.1);
}

.floating-menu-toggle svg {
    width: 24px;
    height: 24px;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .navbar-top .container {
        padding-right: 70px;
        padding-left: 12px;
        position: relative;
    }

    .floating-menu-toggle {
        display: flex !important;
        right: 12px;
        left: auto;
    }

    .nav-buttons {
        order: 1;
        margin-right: auto;
    }

    .nav-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .navbar-top .container {
        padding-right: 64px;
        padding-left: 10px;
    }

    .floating-menu-toggle {
        right: 10px;
        left: auto;
    }
}

/* ============ DESKTOP NAVIGATION BAR ============ */
.navbar {
    background-color: var(--header);
    color: var(--text);
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 60px;
    z-index: 101;
    border-bottom: 2px solid var(--secondary);
    display: flex;
}

.navbar .container {
    padding: 0;
}

@media (max-width: 1024px) {
    .navbar {
        display: none !important;
    }
    
    /* Prevent static logo from overlapping the header logo on small screens */
    .static-logo {
        display: none !important;
    }

    /* Keep the menu toggle away from the subscribe button */
    .floating-menu-toggle {
        right: 12px;
        left: auto;
    }
}

@media (min-width: 1025px) {
    .static-logo {
        display: none;
    }
    
    .side-menu {
        display: none !important;
    }
    
    .menu-overlay {
        display: none !important;
    }
    
    .floating-menu-toggle {
        display: none !important;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 12px;
    display: block;
    border-bottom: 3px solid transparent;
    position: relative;
}

.nav-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom-color: var(--secondary);
}

.nav-menu a.active {
    border-bottom-color: var(--secondary);
    background-color: rgba(255, 255, 255, 0.08);
}

/* ============ MOBILE MENU ============ */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.4rem;
    z-index: 1004;
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: manipulation;
}

.menu-toggle svg {
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.menu-toggle:hover {
    transform: scale(1.2);
}

.side-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 260px;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(135deg, #0a2a42, #0f3a5c);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    z-index: 1002;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    padding-top: 50px;
    will-change: transform;
}

.side-menu.active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.side-menu-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.6rem;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 50%;
    z-index: 1005;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: manipulation;
}

.side-menu-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.side-menu-close svg {
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.side-menu-content {
    padding: 15px;
}

.side-menu-title {
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.side-menu-list {
    list-style: none;
}

.side-menu-list li {
    margin-bottom: 6px;
}

.side-menu-list a {
    color: var(--text);
    text-decoration: none;
    display: block;
    padding: 10px 12px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-size: 0.85rem;
    font-weight: 600;
    border-right: 4px solid transparent;
    -webkit-tap-highlight-color: transparent;
}

.side-menu-list a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-right-color: var(--secondary);
    padding-right: 15px;
    transform: translateX(-5px);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.5);
    display: none !important;
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.menu-overlay.active {
    display: block !important;
    opacity: 1;
}

/* ============ FLOATING MENU TOGGLE ============ */
.floating-menu-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--bg-dark);
    border: 2px solid var(--secondary);
    color: var(--text);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1004;
    transition: var(--transition);
    box-shadow: var(--shadow);
    padding: 0;
    margin: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: manipulation;
}

.floating-menu-toggle:hover {
    background: var(--secondary);
    color: var(--main);
    transform: scale(1.1);
}

.floating-menu-toggle svg {
    width: 24px;
    height: 24px;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .floating-menu-toggle {
        display: flex !important;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============ FLOATING BUTTONS ============ */
.floating-buttons {
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
    bottom: 25px;
}

.floating-buttons.left {
    left: 20px;
}

.floating-buttons.right {
    right: 20px;
}

.floating-buttons.center {
    left: 50%;
    transform: translateX(-50%);
    bottom: 25px;
    flex-direction: row;
    align-items: center;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    animation: pulse 2s infinite;
    padding: 12px;
}

.floating-btn svg {
    width: 100%;
    height: 100%;
    fill: white;
}

.floating-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.floating-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.floating-btn.telegram {
    background: linear-gradient(135deg, #0088cc, #0066a1);
    color: white;
}

.floating-cta {
    background: linear-gradient(135deg, #ff4b1f, #ff9068); /* Red/Orange gradient */
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 75, 31, 0.4);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    animation: pulse 2s infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.floating-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 75, 31, 0.6);
}

@media (max-width: 768px) {
    .floating-buttons.center {
        bottom: 20px;
        width: calc(100% - 40px);
        left: 20px;
        transform: none;
        justify-content: center;
    }
    .floating-cta {
        font-size: 0.75rem;
        padding: 10px 18px;
        white-space: nowrap;
        max-width: 100%;
    }
    .floating-cta .text {
        display: inline;
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ============ SPECIAL OFFER BANNER ============ */
.special-offer-banner {
    background: linear-gradient(135deg, #0a2a42, #0f3a5c);
    color: var(--text);
    padding: 25px 0;
    text-align: center;
    border-bottom: 3px solid var(--secondary);
}

.offer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: center;
}

.offer-text {
    text-align: right;
}

.offer-title {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--secondary);
    font-weight: 900;
}

.offer-subtitle {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: var(--text-light);
    font-weight: 600;
}

.offer-timer-label {
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
    font-size: 0.85rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
}

.timer-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: var(--border-radius);
    border: 2px solid var(--secondary);
}

.timer-value {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--secondary);
}

.timer-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 2px;
}

.timer-separator {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--secondary);
    margin: 0 5px;
}

.payment-methods {
    text-align: center;
}

.payment-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.payment-item {
    background: rgba(41, 182, 246, 0.15);
    padding: 10px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    border: 2px solid var(--secondary);
    transition: var(--transition);
    cursor: pointer;
}

.payment-item:hover {
    background: rgba(41, 182, 246, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(41, 182, 246, 0.3);
}

.payment-icon {
    font-size: 1.4rem;
}

.payment-name {
    font-weight: 600;
    color: var(--text);
    text-align: center;
    font-size: 0.75rem;
}

.vodafone-highlight {
    color: var(--secondary);
    font-weight: 800;
}

.payment-check {
    color: #4dd0e1;
    font-weight: 900;
    font-size: 1rem;
}

/* ============ APP DOWNLOAD BANNER ============ */
.app-download-banner {
    background: var(--main);
    color: var(--text);
    padding: 18px 0;
    text-align: center;
    border-bottom: 3px solid var(--secondary);
    position: relative;
    overflow: hidden;
}

.app-download-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(41, 182, 246, 0.1), transparent),
                radial-gradient(circle at 80% 80%, rgba(15, 120, 216, 0.1), transparent);
    pointer-events: none;
}

.app-download-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.app-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

.app-download-banner p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--text);
}

.app-download-banner a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: var(--btn-border-radius);
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--btn-text-color);
    background: var(--btn-bg);
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
    transition: var(--transition-slow);
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.app-download-banner a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-slow);
}

.app-download-banner a:hover::before {
    left: 100%;
}

.app-download-banner a:hover {
    background: linear-gradient(135deg, #0056b3, #003d82);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4),
                0 0 15px rgba(0, 86, 179, 0.3);
    border-color: var(--secondary);
}

/* ============ HERO SECTION ============ */
.hero {
    background: var(--main);
    color: var(--text);
    padding: 50px 0;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 12px;
    font-weight: 900;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #29b6f6, #81d4fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 20px;
    font-weight: 500;
    color: var(--text);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: var(--secondary);
    color: var(--main);
    padding: 12px 24px;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    transition: var(--transition-slow);
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(41, 182, 246, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: 0 1px 2px rgba(10, 42, 66, 0.2);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition-slow);
    z-index: 0;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background-color: #0288d1;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 10px 30px rgba(41, 182, 246, 0.4),
                0 0 20px rgba(41, 182, 246, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: var(--secondary);
    color: var(--main);
    padding: 12px 24px;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    transition: var(--transition-slow);
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(41, 182, 246, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: 0 1px 2px rgba(10, 42, 66, 0.2);
}

.cta-button-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition-slow);
    z-index: 0;
}

.cta-button-primary:hover::before {
    left: 100%;
}

.cta-button-primary:hover {
    background-color: #0288d1;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 10px 30px rgba(41, 182, 246, 0.4),
                0 0 20px rgba(41, 182, 246, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ============ AGENT CARD BADGE ============ */
.agent-card {
    position: relative;
    overflow: hidden;
}

.verified-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--secondary);
    color: var(--main);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ============ WHY CHOOSE 1XBET SECTION ============ */
.why-1xbet-section {
    padding: 50px 0;
    background-color: var(--main);
}

.why-1xbet-section h2 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 10px;
    color: var(--secondary);
    font-weight: 900;
}

.section-subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 35px;
    font-weight: 600;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.reason-card {
    background: var(--bg-card);
    padding: 20px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition-slow);
    border: 2px solid transparent;
    position: relative;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(41, 182, 246, 0.05), transparent);
    border-radius: inherit;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.reason-card:hover::before {
    opacity: 1;
}

.reason-card:hover {
    transform: translateY(-6px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-hover);
}

.reason-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.reason-card h3 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 800;
}

.reason-card p {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ============ HOW TO REGISTER SECTION ============ */
.how-to-register-section {
    padding: 50px 0;
    background-color: var(--bg-dark);
}

.how-to-register-section h2 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 10px;
    color: var(--secondary);
    font-weight: 900;
}

.registration-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 35px 0;
}

.step-item {
    text-align: center;
    background: var(--bg-card);
    padding: 20px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.step-item:hover {
    transform: translateY(-6px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-hover);
}

.step-number {
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: block;
}

.step-item h3 {
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.step-item p {
    color: var(--text-light);
    font-size: 0.8rem;
}

.registration-cta {
    text-align: center;
    margin-top: 30px;
}

.registration-cta p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: var(--text);
    font-weight: 600;
}

/* ============ GAME CATEGORIES SECTION ============ */
.game-categories-section {
    padding: 50px 0;
    background-color: var(--main);
}

.game-categories-section h2 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 35px;
    color: var(--secondary);
    font-weight: 900;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.category-card {
    background: var(--bg-card);
    padding: 20px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition-slow);
    border: 2px solid transparent;
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(41, 182, 246, 0.05), transparent);
    border-radius: inherit;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-hover);
}

.category-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.category-card h3 {
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 800;
}

.category-card p {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.category-games {
    display: block;
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 700;
    margin-top: 8px;
}

/* ============ REVIEWS SECTION ============ */
.reviews-section {
    padding: 50px 0;
    background-color: var(--bg-dark);
}

.reviews-section h2 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 35px;
    color: var(--secondary);
    font-weight: 900;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.review-card {
    background: var(--bg-card);
    padding: 18px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--secondary);
    position: relative;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(41, 182, 246, 0.05), transparent);
    border-radius: inherit;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.review-card:hover::before {
    opacity: 1;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 10px;
}

.reviewer-info {
    display: flex;
    gap: 8px;
    text-align: left;
    flex: 1;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--secondary), #0288d1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--main);
    flex-shrink: 0;
    font-size: 0.7rem;
}

.reviewer-info h4 {
    color: var(--secondary);
    margin: 0 0 2px 0;
    font-size: 0.85rem;
}

.review-location {
    color: var(--text-light);
    font-size: 0.75rem;
    margin: 0;
}

.review-rating {
    color: #ffc107;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.review-text {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.review-date {
    color: var(--text-light);
    font-size: 0.7rem;
    opacity: 0.7;
}

/* ============ AGENTS HEADER SECTION ============ */
.agents-header-section {
    padding: 30px 0;
    background: var(--gradient-light);
}

.agents-header-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-xl);
    border-left: 5px solid var(--secondary);
    padding: 25px;
    box-shadow: var(--shadow-hover);
    text-align: center;
}

.agents-header-card h2 {
    color: var(--secondary);
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 900;
}

.agents-header-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ============ AGENTS GRID SECTION ============ */
.agents-grid-section {
    padding: 40px 0;
    background: var(--gradient-light);
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.agent-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition-slow);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 2px solid transparent;
    padding: 12px;
    text-align: center;
}

.agent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(41, 182, 246, 0.05), transparent);
    border-radius: inherit;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.agent-card:hover::before {
    opacity: 1;
}

.agent-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

.agent-logo-container {
    width: 100%;
    height: 100px;
    background: linear-gradient(150deg, #004585, #004999);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    overflow: hidden;
    cursor: pointer;
}

.agent-logo-container:hover .agent-logo {
    transform: scale(1.1);
}

.agent-logo {
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: var(--transition);
    filter: brightness(1.2);
}

.agent-name {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--secondary);
    margin: 8px 0 10px;
    text-align: center;
}

.agent-buttons {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: auto;
}

.agent-btn {
    flex: 1;
    padding: 6px 8px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.7rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.agent-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.agent-btn.whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}

.agent-btn.telegram {
    background: linear-gradient(135deg, #0088cc, #0066a1);
    color: white;
}

.agent-btn.telegram:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 136, 204, 0.3);
}

/* ============ FEATURES SECTION ============ */
.features-section {
    padding: 50px 0;
    background-color: var(--bg-dark);
}

.features-section h2 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary);
    font-weight: 900;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 25px;
    border-radius: var(--border-radius-lg);
    background: var(--bg-card);
    border: 2px solid transparent;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(41, 182, 246, 0.05), transparent);
    border-radius: inherit;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.feature:hover::before {
    opacity: 1;
}

.feature:hover {
    border-color: var(--secondary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 15px;
    animation: floatIcon 3s ease-in-out infinite;
}

.feature h3 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 800;
}

.feature p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ============ ABOUT SECTION ============ */
.about-section {
    padding: 50px 0;
    background-color: var(--main);
}

.about-section h2 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--secondary);
    font-weight: 900;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.highlight {
    background-color: var(--bg-card);
    padding: 15px;
    border-radius: var(--border-radius);
    border-right: 4px solid var(--secondary);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.highlight:hover {
    transform: translateX(-4px);
    box-shadow: var(--shadow-hover);
}

/* ============ FAQ SECTION ============ */
.faq-section {
    padding: 50px 0;
    background-color: var(--bg-dark);
}

.faq-section h2 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary);
    font-weight: 900;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-card);
    padding: 20px;
    border-radius: var(--border-radius-lg);
    border-right: 4px solid var(--secondary);
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(41, 182, 246, 0.05), transparent);
    border-radius: inherit;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.faq-item h3 {
    color: var(--secondary);
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 800;
    transition: var(--transition);
}

.faq-item h3:hover {
    color: #29b6f6;
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.5;
}

/* ============ CTA SECTION ============ */
.cta-section {
    background: var(--gradient);
    color: var(--text);
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-section p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.95;
}

/* ============ PAGE HEADER ============ */
.page-header {
    background: var(--main);
    color: var(--text);
    padding: 40px 0;
    text-align: center;
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #29b6f6, #0288d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 500;
    color: var(--text);
}

/* ============ CONTENT SECTION ============ */
.content-section {
    padding: 40px 0;
    background-color: var(--main);
}

.content-box {
    background: var(--bg-card);
    padding: 25px;
    border-radius: var(--border-radius-lg);
    margin-bottom: 25px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary);
}

.content-box h2 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 900;
}

.content-box h3 {
    color: var(--secondary);
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 800;
}

.content-box p {
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.5;
    font-size: 0.9rem;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.method-card {
    background: var(--bg-card);
    padding: 18px;
    border-radius: var(--border-radius-lg);
    border-right: 3px solid var(--secondary);
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
    position: relative;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(41, 182, 246, 0.05), transparent);
    border-radius: inherit;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.method-card:hover::before {
    opacity: 1;
}

.method-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.method-card h3 {
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 800;
}

.method-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 6px 0;
}

.method-speed {
    font-weight: 700;
    color: #4dd0e1 !important;
}

.method-secure {
    font-weight: 700;
    color: #81c784 !important;
}

/* ============ PROMO SECTION ============ */
.promo-highlight {
    background: linear-gradient(135deg, #0a2a42, #002541);
    color: var(--text);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 6px 20px rgba(41, 182, 246, 0.25);
}

.promo-highlight h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--secondary);
}

.promo-subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
}

.promo-benefits {
    list-style: none;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.promo-benefits li {
    background: #003d82;
    padding: 10px 12px;
    border-radius: var(--border-radius);
    font-weight: 600;
    color: var(--text);
    font-size: 0.85rem;
}

.promo-card {
    background: linear-gradient(135deg, #05243d, #115287) !important;
    color: var(--text) !important;
    text-align: center;
}

.promo-card h3 {
    color: var(--secondary) !important;
    font-size: 1.3rem !important;
}

.promo-card p {
    color: var(--text-light) !important;
    font-size: 0.85rem;
}

.promo-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 10px 0;
}

.promo-features span {
    background: rgba(255, 255, 255, 0.3);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text);
}

/* ============ STEPS LIST ============ */
.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 10px 12px 10px 50px;
    margin-bottom: 8px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border-right: 3px solid var(--secondary);
    position: relative;
    transition: var(--transition);
    color: var(--text-light);
    font-size: 0.85rem;
}

.steps-list li:hover {
    transform: translateX(-4px);
    box-shadow: var(--shadow-hover);
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary);
    color: var(--main);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.9rem;
}

/* ============ TELEGRAM CHANNELS ============ */
.telegram-channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.channel-card {
    background: var(--bg-card);
    padding: 20px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition-slow);
    border: 2px solid transparent;
    position: relative;
}

.channel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(41, 182, 246, 0.05), transparent);
    border-radius: inherit;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.channel-card:hover::before {
    opacity: 1;
}

.channel-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-hover);
}

.channel-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    animation: floatIcon 3s ease-in-out infinite;
}

.channel-card h3 {
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 800;
}

.channel-card p {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.channel-features {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 10px 0;
    font-weight: 600;
}

.channel-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--btn-bg);
    color: var(--btn-text-color);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition-slow);
    border: 2px solid transparent;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.channel-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-slow);
}

.channel-link:hover::before {
    left: 100%;
}

.channel-link:hover {
    background: linear-gradient(135deg, #0056b3, #003d82);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-hover),
                0 0 12px rgba(0, 86, 179, 0.3);
    border-color: var(--secondary);
}

/* ============ TABLES ============ */
.table-responsive {
    overflow-x: auto;
    margin: 15px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--header), #1a5a8a);
    color: var(--text);
}

.comparison-table th,
.comparison-table td {
    padding: 12px;
    text-align: center;
    border: 1px solid var(--bg-card);
    font-weight: 600;
    color: var(--text-light);
}

.comparison-table th {
    background: var(--header);
    color: var(--text);
    font-weight: 800;
    font-size: 0.8rem;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: var(--bg-card);
}

.comparison-table tbody tr:hover {
    background-color: rgba(41, 182, 246, 0.1);
}

.comparison-table tbody tr td:first-child {
    font-weight: 800;
    color: var(--secondary);
}

/* ============ FOOTER ============ */
.footer {
    background-color: var(--header);
    color: var(--text);
    padding: 40px 0 15px;
    margin-top: 40px;
    border-top: 3px solid var(--secondary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 25px;
}

.footer-section h3 {
    margin-bottom: 12px;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--secondary);
}

.footer-section h4 {
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 900;
    color: var(--secondary);
}

.footer-section p {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.5;
    color: var(--text-light);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.85rem;
}

.footer-section a:hover {
    color: var(--secondary);
    padding-right: 6px;
}

.social-links {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(41, 182, 246, 0.1);
    border: 2px solid var(--secondary);
    border-radius: 50%;
    transition: var(--transition);
    padding: 0;
}

.social-links a:hover {
    background: var(--secondary);
    transform: scale(1.1);
    padding: 0;
}

.social-links svg {
    width: 16px;
    height: 16px;
    fill: var(--secondary);
    transition: var(--transition);
}

.social-links a:hover svg {
    fill: var(--main);
}

.footer-bottom {
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.85;
    font-weight: 600;
    color: var(--text-light);
}

.disclaimer {
    font-size: 0.75rem;
    margin-top: 8px;
    opacity: 0.7;
}

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 1024px) {
    .navbar-top {
        padding: 0.8rem 0;
    }
    
    body {
        padding-top: 0;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 13px;
        padding-top: 0;
    }

    .navbar-top .container {
        flex-direction: column;
        gap: 10px;
    }

    .nav-brand img {
        height: 30px;
    }

    .nav-buttons {
        width: 100%;
        justify-content: space-between;
        gap: 8px;
    }

    .btn-register,
    .btn-login {
        padding: 8px 14px;
        font-size: 0.75rem;
    }

    .navbar {
        top: 36px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .agents-grid {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: 8px;
    }

    .agent-card {
        padding: 10px;
    }

    .agent-logo-container {
        height: 90px;
    }

    .agent-name {
        font-size: 0.8rem;
        margin: 6px 0 8px;
    }

    .agent-btn {
        padding: 5px 6px;
        font-size: 0.65rem;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    h3 {
        font-size: 0.95rem;
    }

    .features-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .method-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .offer-content {
        grid-template-columns: 1fr;
    }

    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .registration-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .content-box {
        padding: 18px;
        margin-bottom: 18px;
    }

    .cta-button,
    .cta-button-primary {
        padding: 10px 18px;
        font-size: 0.8rem;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }

    .floating-buttons {
        gap: 10px;
        bottom: 20px;
    }

    .floating-buttons.left {
        left: 12px;
        bottom: 80px;
    }

    .floating-buttons.right {
        right: 12px;
        bottom: 80px;
    }
    
    .floating-buttons.center {
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 12px;
    }

    .container {
        padding: 0 10px;
    }

    .navbar-top {
        padding: 0.5rem 0;
    }

    .nav-brand img {
        height: 25px;
    }

    .btn-register,
    .btn-login {
        padding: 7px 12px;
        font-size: 0.7rem;
    }

    .navbar .container {
        padding: 0.5rem 10px;
    }

    .nav-menu a {
        padding: 8px 10px;
        font-size: 0.75rem;
    }

    .hero h1 {
        font-size: 1.2rem;
    }

    .page-header h1 {
        font-size: 1.2rem;
    }

    h1 {
        font-size: 1.3rem;
    }

    h2 {
        font-size: 1rem;
    }

    h3 {
        font-size: 0.85rem;
    }

    p {
        font-size: 0.8rem;
    }

    .agents-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .agent-card {
        padding: 8px;
    }

    .agent-logo-container {
        height: 80px;
    }

    .agent-name {
        font-size: 0.75rem;
    }

    .agent-btn {
        padding: 4px 5px;
        font-size: 0.6rem;
    }

    .method-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .registration-steps {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .payment-grid {
        grid-template-columns: 1fr;
    }

    .offer-title {
        font-size: 1.2rem;
    }

    .offer-subtitle {
        font-size: 0.85rem;
    }

    .timer-value {
        font-size: 1.1rem;
    }

    .timer-label {
        font-size: 0.65rem;
    }

    .countdown-timer {
        gap: 8px;
    }

    .timer-segment {
        padding: 6px 10px;
    }

    .content-box {
        padding: 15px;
        margin-bottom: 15px;
    }

    .content-box h2 {
        font-size: 1.05rem;
    }

    .content-box h3 {
        font-size: 0.9rem;
    }

    .steps-list li {
        padding: 8px 10px 8px 45px;
        font-size: 0.78rem;
    }

    .steps-list li::before {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        left: 5px;
    }

    .cta-button,
    .cta-button-primary {
        padding: 9px 16px;
        font-size: 0.75rem;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .floating-buttons {
        gap: 8px;
    }

    .floating-buttons.left {
        left: 10px;
        bottom: 70px;
    }

    .floating-buttons.right {
        right: 10px;
        bottom: 70px;
    }
    
    .floating-buttons.center {
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
    }
    
    .floating-cta {
        font-size: 0.7rem;
        padding: 8px 14px;
    }

    .table-responsive {
        font-size: 0.75rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 8px 6px;
    }

    .footer {
        padding: 30px 0 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 0.9rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.78rem;
    }

    .social-links {
        justify-content: center;
        gap: 10px;
    }

    .social-links a {
        width: 30px;
        height: 30px;
    }

    .social-links svg {
        width: 14px;
        height: 14px;
    }

    .footer-bottom {
        font-size: 0.75rem;
    }
}

/* ============ ADDITIONAL STYLES FOR GUIDE PAGES ============ */
.gameplay-guide,
.strategies-grid,
.safety-tips,
.mistakes-list,
.withdrawal-steps,
.faq-list,
.support-options,
.final-tips,
.cta-buttons {
    display: grid;
    gap: 15px;
    margin: 15px 0;
}

.gameplay-step,
.strategy-item,
.tip-item,
.mistake-item,
.withdrawal-step,
.faq-item,
.support-item {
    background: var(--bg-card);
    padding: 18px;
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--secondary);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.gameplay-step:hover,
.strategy-item:hover,
.tip-item:hover,
.mistake-item:hover,
.withdrawal-step:hover,
.faq-item:hover,
.support-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.gameplay-step h3,
.strategy-item h3,
.tip-item h3,
.mistake-item h3,
.withdrawal-step h3,
.support-item h3 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 800;
}

.gameplay-step ul,
.strategy-item ul,
.tip-item ul,
.withdrawal-step ul {
    list-style: none;
    padding-left: 0;
}

.gameplay-step li,
.strategy-item li,
.tip-item li,
.withdrawal-step li {
    padding: 6px 0;
    color: var(--text-light);
    font-size: 0.85rem;
    position: relative;
    padding-left: 20px;
}

.gameplay-step li::before,
.strategy-item li::before,
.tip-item li::before,
.withdrawal-step li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.gameplay-step ol,
.withdrawal-step ol {
    padding-left: 20px;
}

.gameplay-step ol li,
.withdrawal-step ol li {
    padding-left: 0;
    list-style: decimal;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.gameplay-step ol li::before,
.withdrawal-step ol li::before {
    display: none;
}

.important-note,
.withdrawal-note {
    background: rgba(41, 182, 246, 0.1);
    border: 2px solid var(--secondary);
    border-radius: var(--border-radius);
    padding: 15px;
    margin: 15px 0;
}

.important-note p,
.withdrawal-note p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.85rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: var(--shadow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn.primary {
    background: var(--secondary);
    color: var(--main);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-hover);
}

.cta-btn.primary:hover {
    background: #0288d1;
}

.cta-btn.secondary:hover {
    background: var(--secondary);
    color: var(--main);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.deposit-methods,
.game-location-steps,
.location-step {
    margin: 15px 0;
}

.method-item,
.location-step {
    background: var(--bg-card);
    padding: 15px;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--secondary);
    margin-bottom: 10px;
    transition: var(--transition);
}

.method-item:hover,
.location-step:hover {
    transform: translateX(-3px);
    box-shadow: var(--shadow);
}

.method-item h3,
.location-step h3 {
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 800;
}

.method-item p,
.location-step p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

.location-step ol {
    padding-left: 20px;
    margin: 10px 0 0 0;
}

.location-step ol li {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

/* ============ RELATED ARTICLES ============ */
.related-articles {
    background: var(--bg-dark);
    padding: 40px 0;
}

.related-articles h2 {
    text-align: center;
    color: var(--secondary);
    margin-bottom: 30px;
    font-size: 1.4rem;
    font-weight: 900;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.article-card {
    background: var(--bg-card);
    padding: 18px;
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--secondary);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.article-card h3 {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.article-card h3 a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 800;
}

.article-card h3 a:hover {
    color: #0288d1;
}

.article-card p {
    color: var(--text-light);
    font-size: 0.8rem;
    margin: 0;
}

@media print {
    .navbar-top,
    .navbar,
    .side-menu,
    .menu-overlay,
    .app-download-banner,
    .footer,
    .floating-buttons {
        display: none;
    }
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: var(--border-radius);
}

::-webkit-scrollbar-thumb:hover {
    background: #0288d1;
}

/* ============ SELECTION ============ */
::selection {
    background: var(--secondary);
    color: var(--main);
}

::-moz-selection {
    background: var(--secondary);
    color: var(--main);
}
