@import url("https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* ============================================
   DESIGN SYSTEM - CSS VARIABLES
   ============================================ */
:root {
    --body-font: "Jost", sans-serif;
    --body-color: #070044;
    --bg-color: #edb606;
    --para-color: #f7f4ff;
    --para-alt-color: #b2b4e1;
    --hover-color: #edb606;
    --hover-alt-color: #5ac4ff;
    --bs-primary: #4f46e5;
    --bs-primary-rgb: 79, 70, 229;
    --bg-nav: #2d0572;
    --alt-blue: #273579;
    --body-rgb: 7, 0, 68;
    --bg-nav-rgb: 45, 5, 114;
    --gold: #edb606;
    --gold-dim: rgba(237,182,6,0.1);
    --gold-border: rgba(237,182,6,0.22);
    /*--card-bg: rgba(29,1,68,0.55);*/
    --card-border: rgba(237,182,6,0.18);
    --text-primary: #f0eaff;
    --text-muted: #8a7faa;
    /* Dark theme variables */
    --dark-bg: #0a001f;
    --dark-card: #1a0a3d;
    --dark-text: #f7f4ff;
    --dark-text-alt: #b2b4e1;
    --dark-border: #2d1a5c;
    --dark-shadow: rgba(0, 0, 0, 0.3);
    
    --primary-color: #0a043c;
    --secondary-color: #fea500;
    --card-bg: rgba(26, 10, 61, 0.6);
    --border-color: rgba(255, 255, 255, 0.1);

}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-display: swap;
    background: var(--body-color) url('../images/join-us-bg.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    font-size: 18px;
    padding: 0;
    margin: 0;
    font-weight: 400;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 0;
    font-family: var(--body-font);
    color: var(--para-color);
    font-weight: 600;
    text-transform: initial;
    transition: all 0.3s;
}

h1, h1 > a { font-size: 38px; margin-top: -18px; }
h2, h2 > a { font-size: 28px; margin-top: -12px; }
h3, h3 > a { font-size: 21px; margin-top: -8px; }
h4, h4 > a { font-size: 16px; margin-top: -7px; }
h5, h5 > a { font-size: 24px; margin-top: -5px; }
h6, h6 > a { font-size: 18px; margin-top: -3px; }

a {
    display: inline-block;
    color: var(--para-color);
    font-weight: 400;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    color: var(--hover-color);
    text-decoration: none;
}

p, span, li, label {
    margin: 0;
    font-family: var(--body-font);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--para-color);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container-custom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.glass-panel, .glass-card {
    background: rgba(30, 16, 41, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(237, 182, 6, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.glass-panel:hover, .glass-card:hover {
    border-color: rgba(237, 182, 6, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #edb606 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-text, .text-gold {
    color: #edb606;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(30, 16, 41, 0.6);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #edb606 0%, #ffd700 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffd700;
}

/* ============================================
   BUTTONS
   ============================================ */
.cmn-btn, .submit-btn {
    padding: 10px 30px;
    font-weight: 600;
    text-align: center;
    background: var(--bg-color);
    color: var(--bs-white);
    border: 1px solid var(--bg-color);
    transition: 0.3s;
    border-radius: 50px;
    cursor: pointer;
}

.cmn-btn:hover, .submit-btn:hover {
    background: transparent;
    border: 1px solid var(--bg-color);
    color: var(--bg-color);
}

.cmn-btn.second {
    background: transparent;
    border: 1px solid var(--bg-color);
}

.cmn-btn.second:hover {
    background: var(--bg-color);
    border: 1px solid var(--bg-color);
    color: var(--bs-white);
}

/* Premium Buttons */
.btn-premium-primary {
    position: relative;
    background: linear-gradient(135deg, #edb606 0%, #ffd700 100%);
    color: #1d0144;
    font-weight: 800;
    padding: 0.75rem 2rem;
    border-radius: 60px;
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(237, 182, 6, 0.3);
    cursor: pointer;
}

.btn-premium-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 30px -5px rgba(237, 182, 6, 0.5);
    color: #1d0144;
}

.btn-premium-secondary {
    background: transparent;
    color: #edb606;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 60px;
    border: 2px solid rgba(237, 182, 6, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-premium-secondary:hover {
    border-color: #edb606;
    color: #ffd700;
}

.btn-premium-outline {
    background: transparent;
    color: white;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn-premium-outline:hover {
    border-color: #edb606;
    color: #edb606;
    transform: translateY(-2px);
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
input, textarea {
    padding: 10px 20px;
    color: #1e266d;
    width: 100%;
    font-family: var(--body-font);
    height: 50px;
    background: #f5faff;
    border: 1px solid #eef1ff;
    border-radius: 5px;
}

input:focus, textarea:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid #b0baf1;
}

.form-control, .form-input {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--para-color);
    transition: all 0.3s ease;
}

.form-control:focus, .form-input:focus {
    outline: none;
    border-color: var(--bg-color);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 20px rgba(237, 182, 6, 0.2);
}

.form-control::placeholder, .form-input::placeholder {
    color: var(--para-alt-color);
}

/* Select2 Overrides */
.select2-container--default .select2-selection--single {
    background: rgba(30, 16, 41, 0.6) !important;
    border: 1px solid rgba(237, 182, 6, 0.2) !important;
    border-radius: 12px !important;
    height: auto !important;
    padding: 12px 16px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: white !important;
    line-height: 1.5 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #edb606 transparent transparent transparent !important;
}

.select2-dropdown {
    background: #1d0144 !important;
    border: 1px solid rgba(237, 182, 6, 0.2) !important;
    border-radius: 12px !important;
}

.select2-container--default .select2-results__option {
    color: white !important;
    padding: 10px 15px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: linear-gradient(135deg, #edb606 0%, #ffd700 100%) !important;
    color: #1d0144 !important;
}

/* ============================================
   MODAL STYLES
   ============================================ */
.modal-content {
    background: linear-gradient(135deg, #1d0144 0%, #2d0572 100%);
    border: 1px solid rgba(237, 182, 6, 0.2);
    border-radius: 24px;
}

.modal-header {
    border-bottom: 1px solid rgba(237, 182, 6, 0.2);
}

.modal-title {
    color: #edb606;
    font-weight: 700;
}

.btn-close-white {
    filter: brightness(0) invert(1);
}



@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* ============================================
   LOADING STATES
   ============================================ */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(29, 1, 68, 0.3);
    border-radius: 50%;
    border-top-color: #edb606;
    animation: spin 1s linear infinite;
}

.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #1d0144;
    animation: spin 0.8s linear infinite;
}

.loading {
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: #edb606;
    color: rgb(50, 4, 105);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(1rem);
}

.toast-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Toastr Overrides */
.toast-success { background-color: #28a745 !important; }
.toast-error { background-color: #dc3545 !important; }
.toast-info { background-color: #17a2b8 !important; }
.toast-warning { background-color: #ffc107 !important; }

/* ============================================
   FIXED ADS
   ============================================ */
.fixed-ad {
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    overflow-y: auto;
    z-index: 10;
    padding: 10px 0;
}

@media (max-width: 991px) {
    .showonlyinlg {
        display: none !important;
    }
    .fixed-ad {
        position: static;
    }
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
    color: white;
}

/* ============================================
   BANNER SECTION
   ============================================ */
.banner-section .overlay {
    background-color: #2f007f;
    background-image: url(../images/banner-overlay.png), url(../images/index-bg.png);
    background-repeat: no-repeat;
    background-position: right bottom -1px, top;
    position: relative;
    background-size: 100%;
}

.banner-section .overlay .banner-content {
    padding: 207px 0 118px;
}

.banner-section.inner-banner .banner-content .main-content .breadcrumb-area {
    margin-top: 10px;
}

.banner-section.inner-banner .banner-content .main-content .breadcrumb-area .breadcrumb li {
    display: flex;
    align-items: center;
    color: var(--para-color);
}

.breadcrumb {
    margin: 0;
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--dark-text-alt);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--bg-color);
}

.breadcrumb-item.active {
    color: var(--bg-color);
}

/* ============================================
   TIPS & EVENTS SECTION
   ============================================ */
.tips-and-events .tips-single {
    border: 1px solid var(--bg-color);
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    background: var(--alt-blue);
    align-items: flex-start;
    justify-content: space-between;
    align-items: center;
}

.tips-and-events .tips-single .left-area {
    display: flex;
}

.tips-and-events .tips-single .review-profile {
    text-align: center;
}

.tips-and-events .tips-single .mid-content {
    margin-left: 50px;
}

.tips-and-events .tips-single .right-area .offers-number {
    width: 90px;
    height: 90px;
    border: 1px solid var(--bg-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   BOOKMAKER CARDS
   ============================================ */
.bookmaker-card {
    background: rgba(7, 0, 68, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(var(--bg-nav-rgb), 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bookmaker-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(var(--body-rgb), 0.25);
    border-color: var(--hover-color);
}

.bookmaker-card.recommended {
    border: 2px solid #ffd700;
}

/* Ribbon for recommended bookmakers */
.ribbon {
    position: absolute;
    top: 20px;
    right: -45px;
    width: 180px;
    padding: 10px 0;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* ============================================
   BETSLIP GRID
   ============================================ */
.betslip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    padding: 16px 0;
}

.betslip-grid-item {
    background: rgba(7, 0, 68, 0.2);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(var(--bg-nav-rgb), 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* ============================================
   COPY BUTTONS
   ============================================ */
.copy-btn {
    background: rgba(238, 181, 6, 0.15);
    border: 1px solid rgba(238, 181, 6, 0.3);
    color: var(--bg-color);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.copy-btn:hover {
    background: var(--bg-color);
    color: var(--primary-color);
    border-color: var(--bg-color);
    transform: scale(1.05);
}

.copy-success {
    animation: copyFeedback 0.6s ease-in-out;
}

@keyframes copyFeedback {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); background: var(--hover-color); color: var(--body-color); }
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    background-color: #221a62;
    border-radius: 40px;
    padding: 20px;
    display: inline-flex;
}

.pagination .page-item .page-link {
    border-radius: 50%;
    background: #33288a;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-white);
    border: none;
    font-weight: bold;
    margin: 0 8px;
}

.pagination .page-item .page-link.active,
.pagination .page-item .page-link:hover {
    background: var(--bg-color);
    color: var(--body-color);
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    .container-custom {
        padding: 0 1.5rem;
    }
    
    h1, h1 > a { font-size: 32px; }
    h2, h2 > a { font-size: 24px; }
    h3, h3 > a { font-size: 20px; }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .container-custom {
        padding: 0 1rem;
    }
    
    h1, h1 > a { font-size: 28px; }
    h2, h2 > a { font-size: 22px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scrollToTop {
    position: fixed;
    bottom: 0;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--hover-color);
    border-radius: 5px;
    color: #fff;
    line-height: 45px;
    font-size: 20px;
    text-align: center;
    z-index: 100;
    cursor: pointer;
    transition: all 1s;
    transform: translateY(100%);
}

.scrollToTop.active {
    bottom: 30px;
    transform: translateY(0%);
    color: var(--body-color);
}

.scrollToTop:hover {
    color: var(--body-color);
}
/* ============================================
   HOMEPAGE GLOBAL COMPONENTS
   ============================================ */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--bg-nav) 100%);
    padding: 6rem 6rem;
    position: relative;
    overflow: hidden;

}
.hero-landing {
    background: linear-gradient(135deg, var(--dark) 0%, var(--bg-nav) 100%);
    padding: 6rem 6rem;
    position: relative;
    overflow: hidden;
}

.hero-landing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><polygon fill="%23edb606" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}
.btn-hero-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #690dab;
    border-radius: 60px;
    padding: 0.8rem 1rem;
    font-weight: 600;
    color: white;
    transition: all 0.2s ease;
    text-decoration: none;
    border: 1px solid rgba(237, 182, 6, 0.3);
}

.btn-hero-primary:hover {
    background: #7d24c9;
    border-color: #edb606;
    color: white;
}

/* Performance Grid */
.performance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 3rem;
}

/* Countdown Timer */
.countdown-grid {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin: 1.5rem 0 1.8rem;
}

.time-block {
    flex: 1;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 1rem;
    padding: 1rem 0.2rem;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.time-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    color: #FFD700;
    letter-spacing: 2px;
}

.time-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #b1b1b1;
    letter-spacing: 0.5px;
}

/* Step Cards */
.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(105, 13, 171, 0.4);
    background: transparent;
    transition: all 0.25s ease;
}

.step-card:hover {
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.05);
    transform: translateY(-4px);
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.25s ease;
}

.step-card:hover .step-number {
    background: #FFD700;
    color: rgb(50 4 105);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.step-description {
    color: #b1b1b1;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 280px;
}

/* Results Card Headers */
.results-header, .countdown-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.8rem;
}

.results-header i, .countdown-header i {
    font-size: 1.2rem;
    color: #FFD700;
    background: rgba(105, 13, 171, 0.4);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}

.results-header h3, .countdown-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

/* Type Chips */
.type-chip {
    cursor: pointer;
    transition: all 0.2s ease;
}

.result-item {
    transition: all 0.3s ease;
}

.progress-fill {
    transition: width 0.6s ease-out;
}

/* Stats Cards */
.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
    transition: all 0.2s ease;
}

.stat-card:hover {
    border-color: #edb606;
    background: rgba(237, 182, 6, 0.05);
}

/* Pricing Cards */
.pricing-card {
    background: #2b0649;
    border: 1px solid rgba(105, 13, 171, 0.4);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.pricing-card:hover {
    border-color: #edb606;
    transform: translateY(-2px);
}

.pricing-card-featured {
    border: 2px solid #edb606;
    background: #6e159d;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #edb606;
    color: #1d0144;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
}

/* FAQ Items */
.faq-item {
    background: rgba(45, 5, 114, 0.5);
    border: 1px solid rgba(237, 182, 6, 0.1);
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    padding: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: white;
}

.faq-question:hover {
    background: rgba(237, 182, 6, 0.05);
}

.faq-answer {
    display: none;
    padding: 0 1rem 1rem 1rem;
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
    border-top: 1px solid rgba(237, 182, 6, 0.1);
}

.faq-item.active .faq-answer {
    display: block;
}

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

.faq-question i {
    transition: transform 0.3s ease;
    color: #edb606;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Homepage Components */
@media (max-width: 768px) {
    .performance-grid {
        grid-template-columns: 1fr;
    }
    .time-number {
        font-size: 1.2rem;
    }
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    .step-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 680px) {
    .performance-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 3rem;
    }
    .time-block {
        padding: 0.5rem 0.2rem;
    }
    .time-number {
        font-size: 1rem;
    }
    .time-label {
        font-size: 0.6rem;
    }
}
/* ============================================
   CHECKOUT/PUSHMPESA PAGE STYLES
   ============================================ */

/* Checkout Container */
.checkout-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.checkout-header {
    text-align: center;
    margin-bottom: 40px;
}

.checkout-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--para-color);
    margin-bottom: 10px;
}

/* Checkout Layout */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    align-items: start;
}

/* Payment Section */
.payment-section {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.section-header {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border-color);
}

.section-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--para-color);
    margin: 0;
}

/* Promo Code Section */
.promo-code-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    margin: 20px;
    border: 1px solid var(--border-color);
}

.promo-input-group {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.promo-input-group input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--para-color);
    font-size: 0.95rem;
}

.promo-input-group input:focus {
    outline: none;
    border-color: var(--bg-color);
}

.apply-promo-btn {
    padding: 12px 24px;
    background: linear-gradient(45deg, var(--bg-color), #ffc107);
    border: none;
    border-radius: 12px;
    color: var(--body-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(237, 182, 6, 0.3);
}

.promo-message {
    margin-top: 12px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-message.success { color: #10b981; }
.promo-message.error { color: #ef4444; }
.promo-message.info { color: var(--bg-color); }

.savings-badge {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Payment Tabs */
.payment-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
}

.payment-tab {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 20px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.payment-tab:hover {
    transform: translateY(-4px);
    border-color: var(--bg-color);
    box-shadow: 0 8px 20px rgba(237, 182, 6, 0.2);
}

.payment-tab.active {
    background: linear-gradient(135deg, rgba(237, 182, 6, 0.2), rgba(237, 182, 6, 0.1));
    border-color: var(--bg-color);
    box-shadow: 0 0 30px rgba(237, 182, 6, 0.3);
}

.payment-tab.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bg-color), #ffc107);
}

.payment-tab-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--bg-color);
}

.payment-tab-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.payment-tab-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--para-alt-color);
}

.payment-tab.active .payment-tab-label {
    color: var(--para-color);
}

/* Payment Forms */
.payment-content {
    padding: 30px;
}

.payment-form {
    display: none;
}

.payment-form.active {
    display: block;
}

/* Order Summary */
.order-summary {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    padding: 30px;
    position: sticky;
    top: 20px;
}

.order-summary h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--para-color);
    margin-bottom: 24px;
}

.plan-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bg-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.plan-features li {
    padding: 8px 0;
    color: var(--para-alt-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.plan-features i {
    color: var(--bg-color);
    font-size: 1rem;
}

.price-breakdown {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    color: var(--para-alt-color);
}

.price-row.total {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--para-color);
    padding-top: 16px;
    border-top: 2px solid var(--border-color);
    margin-top: 16px;
}

.discount-badge {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-left: 8px;
}

.price-strikethrough {
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 0.9rem;
    margin-right: 8px;
}

.price-discounted {
    color: #10b981;
    font-weight: 700;
}

/* Status Alerts */
.status-alert {
    background: rgba(237, 182, 6, 0.1);
    border: 2px solid var(--bg-color);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.status-alert h4 {
    color: var(--bg-color);
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Sign In Prompt */
.sign-in-prompt {
    text-align: center;
    padding: 60px 30px;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.sign-in-prompt i {
    font-size: 4rem;
    color: var(--bg-color);
    margin-bottom: 24px;
}

.sign-in-prompt h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--para-color);
    margin-bottom: 16px;
}

.sign-in-btn {
    padding: 16px 48px;
    background: linear-gradient(45deg, var(--bg-color), #ffc107);
    border: none;
    border-radius: 50px;
    color: var(--body-color);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sign-in-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(237, 182, 6, 0.4);
}

/* Floating Promo Button */
.floating-promo-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-promo-btn .promo-trigger {
    background: linear-gradient(45deg, #edb606, #ff6b6b);
    border: none;
    border-radius: 50px;
    padding: 14px 24px;
    color: #1a1a2e;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(237, 182, 6, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Checkout Responsive */
@media (max-width: 1024px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    .order-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .payment-tabs {
        grid-template-columns: repeat(2, 1fr);
    }
    .payment-tab {
        padding: 16px 8px;
    }
    .promo-input-group {
        flex-direction: column;
    }
}

/* ============================================
   ABOUT US PAGE STYLES
   ============================================ */

/* Accordion Styles */
.accordion-item {
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(237, 182, 6, 0.1);
    border-radius: 1rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(237, 182, 6, 0.3);
}

.accordion-item.active {
    border-color: #edb606;
    background: rgba(17, 24, 39, 0.8);
    box-shadow: 0 10px 30px -15px #edb606;
}

.accordion-header {
    padding: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(237, 182, 6, 0.1);
}

.accordion-header i {
    transition: transform 0.3s ease;
    color: #edb606;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 0 1.25rem 1.25rem;
    color: #9ca3af;
    line-height: 1.7;
    border-top: 1px solid rgba(237, 182, 6, 0.1);
}

.accordion-item.active .accordion-content {
    display: block;
}

/* About Page Tab Buttons */
.about-tab-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(17, 24, 39, 0.7);
    border: 1px solid rgba(237, 182, 6, 0.1);
    color: #9ca3af;
    cursor: pointer;
}

.about-tab-btn:hover {
    border-color: #edb606;
    color: #fff;
    transform: translateY(-2px);
}

.about-tab-btn.active {
    background: linear-gradient(135deg, #edb606 0%, #ffd700 100%);
    color: #1d0144;
    border: none;
    box-shadow: 0 10px 20px -10px #edb606;
}

/* ============================================
   ACCOUNT/PROFILE PAGE STYLES
   ============================================ */

/* Profile Image */
.profile-image-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #edb606;
    transition: all 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(237, 182, 6, 0.4);
}

.camera-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #edb606 0%, #ffd700 100%);
    border: 2px solid #1d0144;
    color: #1d0144;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    cursor: pointer;
}

.camera-btn:hover {
    transform: scale(1.1);
}

/* Account Tab Buttons */
.account-tab-btn {
    background: rgba(30, 16, 41, 0.5);
    border: 1px solid rgba(237, 182, 6, 0.2);
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.account-tab-btn.active {
    background: linear-gradient(135deg, #edb606 0%, #ffd700 100%);
    color: #1d0144;
    border: none;
    box-shadow: 0 4px 15px rgba(237, 182, 6, 0.3);
}

/* ============================================
   ARTICLE/BLOG PAGE STYLES
   ============================================ */

.article-hero {
    position: relative;
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, #2d0572 0%, #070044 100%);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 0, 31, 0.9), transparent);
    padding: 3rem 0 2rem;
}

.article-header {
    color: var(--dark-text);
    max-width: 900px;
}

.article-category {
    display: inline-block;
    background: rgba(237, 182, 6, 0.2);
    color: var(--hover-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 600;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--dark-text);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--dark-text-alt);
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    margin-top: 3rem;
}

.article-content {
    background: var(--dark-card);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px var(--dark-shadow);
    border: 1px solid var(--dark-border);
}

.article-body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--dark-text);
}

.article-body h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: var(--hover-color);
}

.article-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: var(--dark-text);
}

.article-body blockquote {
    border-left: 4px solid var(--hover-color);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--dark-text-alt);
    background: rgba(45, 5, 114, 0.3);
    padding: 1rem;
    border-radius: 0 8px 8px 0;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.tags-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-border);
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    display: inline-block;
    background: rgba(45, 5, 114, 0.5);
    color: var(--dark-text-alt);
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid var(--dark-border);
}

.tag:hover {
    background: var(--hover-color);
    color: var(--body-color);
    transform: translateY(-2px);
}

.share-section {
    background: rgba(45, 5, 114, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid var(--dark-border);
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-size: 0.875rem;
    transition: transform 0.2s;
    border: none;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-2px);
    color: white;
}

.share-facebook { background: #1877f2; }
.share-twitter { background: #1da1f2; }
.share-whatsapp { background: #25d366; }
.share-telegram { background: #0088cc; }
.share-copy { background: #4a5568; }

.sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.sidebar-widget {
    background: var(--dark-card);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px var(--dark-shadow);
    border: 1px solid var(--dark-border);
}

.widget-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--hover-color);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--hover-color);
}

.related-post {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--dark-border);
}

.related-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-post-image {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.related-post-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-text);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.related-post-title:hover {
    color: var(--hover-color);
}

.author-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(45, 5, 114, 0.3);
    border-radius: 8px;
    margin-top: 2rem;
    border: 1px solid var(--dark-border);
}

.view-counter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-text-alt);
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Article Responsive */
@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr;
    }
    .sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .article-title {
        font-size: 1.875rem;
    }
    .article-content {
        padding: 1.5rem;
    }
}

/* ============================================
   CONVERTER PAGE STYLES
   ============================================ */

.bookie-card {
    background: rgba(30, 16, 41, 0.5);
    border: 1px solid rgba(237, 182, 6, 0.15);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.bookie-card:hover {
    border-color: #edb606;
    transform: translateY(-2px);
}

.bookie-card.recommended {
    border: 2px solid #edb606;
    background: rgba(237, 182, 6, 0.1);
    position: relative;
}

.bookie-card.recommended::before {
    content: '★';
    position: absolute;
    top: -10px;
    right: 10px;
    background: #edb606;
    color: #1d0144;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Steps Compact */
.steps-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.steps-compact::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(90deg, #edb606, #ffd700);
    z-index: 1;
}

.step-compact {
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-compact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.step-compact-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #edb606 0%, #ffd700 100%);
    color: #1d0144;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 3px solid #1d0144;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(237, 182, 6, 0.1);
    border: 1px solid rgba(237, 182, 6, 0.2);
    border-radius: 40px;
    font-size: 0.875rem;
    color: #edb606;
}

/* Converter Responsive */
@media (max-width: 768px) {
    .steps-compact {
        flex-direction: column;
        gap: 20px;
    }
    .steps-compact::before {
        display: none;
    }
    .step-compact-content {
        flex-direction: row;
        padding: 15px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 8px;
    }
}

/* ============================================
   FREE BETSLIPS & FREE TIPS PAGE STYLES
   ============================================ */

.betslip-card {
    background: rgba(30, 16, 41, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(237, 182, 6, 0.2);
    border-radius: 1.5rem;
    padding: 1.5rem;

    position: relative;
    overflow: hidden;
}



.betslip-card:hover::before {
    left: 100%;
}


/* Auth Message Card */
.auth-message-card {
    background: rgba(30, 16, 41, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(237, 182, 6, 0.3);
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.login-btn-modern {
    background: linear-gradient(135deg, #edb606 0%, #ffd700 100%);
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    color: #1d0144;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.login-btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -5px rgba(237, 182, 6, 0.5);
}

/* Tab Modern */
.tab-modern {
    background: rgba(30, 16, 41, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(237, 182, 6, 0.2);
    border-radius: 1rem;
    padding: 0.5rem;
}

.tab-btn-modern {
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #94a3b8;
    text-decoration: none;
}

.tab-btn-modern.active {
    background: linear-gradient(135deg, #edb606 0%, #ffd700 100%);
    color: #1d0144;
    box-shadow: 0 4px 12px rgba(237, 182, 6, 0.4);
}

/* Tip Card */
.tip-card {
    background: rgba(30, 16, 41, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(237, 182, 6, 0.2);
    border-radius: 1.5rem;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tip-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(237, 182, 6, 0.5);
    box-shadow: 0 20px 40px -15px rgba(237, 182, 6, 0.3);
}

/* ============================================
   PREMIUM PAGE STYLES
   ============================================ */

.btn-premium-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(237, 182, 6, 0.1);
    border: 1px solid rgba(237, 182, 6, 0.2);
    color: #edb606;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-premium-icon:hover {
    background: #edb606;
    color: #1d0144;
    transform: rotate(360deg) scale(1.1);
}

.btn-premium-pulse {
    animation: premiumPulse 2s infinite;
}

@keyframes premiumPulse {
    0% { box-shadow: 0 0 0 0 rgba(237, 182, 6, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(237, 182, 6, 0); }
    100% { box-shadow: 0 0 0 0 rgba(237, 182, 6, 0); }
}

.card-btn {
    position: relative;
    background: linear-gradient(135deg, rgba(237, 182, 6, 0.1), rgba(237, 182, 6, 0.05));
    border: 1px solid rgba(237, 182, 6, 0.2);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.card-btn:hover {
    border-color: #edb606;
    transform: translateY(-4px);
    box-shadow: 0 20px 30px -10px rgba(237, 182, 6, 0.3);
}

/* ============================================
   PRICING & PRICING COMPARISON PAGE STYLES
   ============================================ */

.pricing-card-wrapper .pricing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
}

.comparison-table {
    border-collapse: separate;
    border-spacing: 0 8px;
}

.comparison-table th {
    padding: 1.25rem 1rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-table td {
    padding: 1rem;
    background: rgba(45, 5, 114, 0.5);
    border-bottom: 1px solid rgba(237, 182, 6, 0.1);
}

.comparison-table .popular-column {
    background: linear-gradient(135deg, rgba(237, 182, 6, 0.15), rgba(255, 215, 0, 0.15));
    border-left: 2px solid #edb606;
    border-right: 2px solid #edb606;
}

.currency-option {
    cursor: pointer;
    transition: all 0.3s ease;
}

.currency-option.active {
    background: #edb606;
    color: #1d0144;
}

/* ============================================
   REVIEWS PAGE STYLES
   ============================================ */

.bookmaker-card {
    position: relative;
    overflow: hidden;
}

.ribbon {
    position: absolute;
    top: 20px;
    right: -45px;
    width: 180px;
    padding: 10px 0;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* ============================================
   TRACK RECORD PAGE STYLES
   ============================================ */

.track-record-section {
    padding: 2rem 1rem;
    background: #2a0155;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    margin: 6rem auto;
}

.track-record-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    color: #fff;
}
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.track-record-table thead {
    background-color: #374151;
}

.track-record-table th,
.track-record-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.track-record-table tbody tr:hover {
    background-color: #fef3c7;
    transition: background-color 0.2s ease;
}

.win { color: #16a34a; font-weight: 600; }
.loss { color: #dc2626; font-weight: 600; }

@media (max-width: 768px) {
    .track-record-table thead {
        display: none;
    }
    .track-record-table tr {
        display: block;
        margin-bottom: 1rem;
        border-bottom: 2px solid #e5e7eb;
    }
    .track-record-table td {
        display: block;
        text-align: right;
        padding-left: 50%;
        position: relative;
    }
    .track-record-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 1rem;
        width: 45%;
        font-weight: 600;
        text-align: left;
    }
}

/* ============================================
   MATCH ANALYSIS PAGE STYLES
   ============================================ */

.hero-slider {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    transition: opacity 0.5s ease;
}

.featured-card {
    transition: all 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-8px);
    border-color: #edb606 !important;
}

.article-card {
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    border-color: #edb606 !important;
    box-shadow: 0 20px 30px -10px rgba(237, 182, 6, 0.2);
}

.category-tag {
    transition: all 0.2s ease;
}

.category-tag:hover {
    background: rgba(237, 182, 6, 0.2);
    border-color: #edb606;
}

.carousel-track {
    transition: transform 0.5s ease;
}

.pagination-dot.active {
    background: #edb606;
    transform: scale(1.2);
}
/* ============================================
   WHY US SECTION - About Page Accordion
   ============================================ */

.why-us-section {
    max-width: 100%;
    margin: 0 auto;
}

.why-us-section .category-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(237, 182, 6, 0.15), rgba(237, 182, 6, 0.05));
    color: var(--bg-color);
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(237, 182, 6, 0.2);
    letter-spacing: 0.5px;
}

.why-us-section .accordion-item {
    background: rgba(26, 10, 61, 0.4);
    border: 1px solid rgba(237, 182, 6, 0.08);
    border-radius: 1rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.why-us-section .accordion-item:hover {
    border-color: rgba(237, 182, 6, 0.25);
    background: rgba(26, 10, 61, 0.6);
}

.why-us-section .accordion-item.active {
    border-color: var(--bg-color);
    background: rgba(26, 10, 61, 0.7);
    box-shadow: 0 4px 15px rgba(237, 182, 6, 0.1);
}

.why-us-section .accordion-header {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
}

.why-us-section .accordion-header:hover {
    background: rgba(237, 182, 6, 0.05);
}

.why-us-section .accordion-header .flex {
    flex: 1;
}

.why-us-section .accordion-header i {
    transition: transform 0.3s ease;
    color: var(--bg-color);
    font-size: 0.875rem;
}

.why-us-section .accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.why-us-section .accordion-content {
    display: none;
    padding: 0 1.25rem 1.25rem 1.25rem;
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.7;
    border-top: 1px solid rgba(237, 182, 6, 0.08);
}

.why-us-section .accordion-item.active .accordion-content {
    display: block;
}

/* Number badges inside accordion */
.why-us-section .accordion-header .w-8.h-8 {
    width: 2rem;
    height: 2rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .why-us-section .accordion-header {
        padding: 0.875rem 1rem;
    }
    
    .why-us-section .accordion-header .flex {
        gap: 0.5rem;
    }
    
    .why-us-section .accordion-header .w-8.h-8 {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.75rem;
    }
    
    .why-us-section .accordion-header span:last-child {
        font-size: 0.9rem;
    }
    
    .why-us-section .accordion-content {
        padding: 0 1rem 1rem 1rem;
        font-size: 0.8rem;
    }
    
    .why-us-section .category-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }
}

@media (max-width: 480px) {
    .why-us-section .accordion-header {
        padding: 0.75rem;
    }
    
    .why-us-section .accordion-header .w-8.h-8 {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.7rem;
    }
    
    .why-us-section .accordion-header span:last-child {
        font-size: 0.85rem;
    }
}
/* ============================================
   FOOTER SECTION
   ============================================ */

.footer-section {
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bg-color), transparent);
}

.footer-content {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h4 {
    color: var(--bg-color);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--bg-color), transparent);
    border-radius: 2px;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-description {
    color: var(--para-alt-color);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.responsible-gaming {
    margin-top: 20px;
}

.responsible-gaming img {
    max-width: 120px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.responsible-gaming img:hover {
    opacity: 1;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--para-alt-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--bg-color);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--para-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--bg-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.social-links a:hover {
    color: var(--body-color);
    border-color: var(--bg-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(237, 182, 6, 0.3);
}

.social-links a:hover::before {
    width: 200%;
    height: 200%;
}

.disclaimer-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.disclaimer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--bg-color), transparent);
}

.disclaimer-box p {
    margin: 0 0 12px 0;
    color: var(--para-alt-color);
    font-size: 0.9rem;
    line-height: 1.7;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    margin-top: 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    color: var(--para-alt-color);
    font-size: 0.9rem;
    margin: 0;
}

.copyright-text a {
    color: var(--bg-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.copyright-text a:hover {
    color: var(--para-color);
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
    color: white;
}

.float i {
    animation: floatPulse 2s infinite;
}

@keyframes floatPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ============================================
   CHAT POPUP
   ============================================ */

.chat-popup {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 360px;
    max-width: calc(100vw - 60px);
    background: linear-gradient(135deg, #1a0138, #2d0572);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(237, 182, 6, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
    animation: slideUp 0.3s ease;
    overflow: hidden;
}

.chat-popup.show {
    display: block;
}

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

.header-chat {
    background: linear-gradient(135deg, var(--bg-color), #ffc107);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
}

.online-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    border: 2px solid white;
    animation: statusBlink 1.5s infinite;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.header-text h4 {
    margin: 0;
    color: var(--body-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.header-text span {
    color: rgba(7, 0, 68, 0.8);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-text span::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    color: var(--body-color);
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.messages {
    padding: 20px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: linear-gradient(135deg, #1f033f, #12012b);
}

.message {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    max-width: 80%;
    animation: fadeIn 0.3s ease;
}

.message.received {
    align-self: flex-start;
    background: rgba(237, 182, 6, 0.15);
    border: 1px solid rgba(237, 182, 6, 0.2);
}

.message p {
    margin: 0;
    color: var(--para-color);
    font-size: 0.9rem;
    line-height: 1.5;
}

.message.hidden {
    display: none;
}

.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    width: fit-content;
}

.typing-indicator .dot {
    width: 8px;
    height: 8px;
    background: var(--bg-color);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite;
}

.typing-indicator .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-10px); }
}

.textarea-container {
    padding: 15px;
    border-top: 1px solid rgba(237, 182, 6, 0.1);
    background: #1a0138;
    display: flex;
    gap: 10px;
}

.textarea-container textarea {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(237, 182, 6, 0.2);
    color: var(--para-color);
    border-radius: 25px;
    padding: 12px 18px;
    resize: none;
    font-size: 0.9rem;
    font-family: inherit;
    max-height: 100px;
}

.textarea-container textarea:focus {
    outline: none;
    border-color: var(--bg-color);
    background: rgba(255, 255, 255, 0.08);
}

.textarea-container textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.textarea-container button {
    background: linear-gradient(135deg, var(--bg-color), #ffc107);
    border: none;
    color: var(--body-color);
    font-weight: 600;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.textarea-container button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(237, 182, 6, 0.4);
}

.reply-text {
    text-align: center;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    padding: 8px 15px 15px;
    background: #1a0138;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .chat-popup {
        width: calc(100vw - 40px);
        right: 20px;
        bottom: 80px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 60px 0 30px;
    }
    
    .footer-column h4 {
        font-size: 1.1rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(237, 182, 6, 0.2); }
    50% { box-shadow: 0 0 30px rgba(237, 182, 6, 0.4); }
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease-out;
}

.animate-glow {
    animation: glowPulse 3s infinite;
}

/* Hide scrollbar for mobile menu */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Custom gradient backgrounds */
.bg-gradient-radial {
    background: radial-gradient(circle at center, rgba(237, 182, 6, 0.15) 0%, transparent 70%);
}

/* Glass effect */
.glass-effect {
    background: rgba(29, 1, 68, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(237, 182, 6, 0.1);
}

/* Mobile menu slide animation */
@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.mobile-menu-open {
    animation: slideIn 0.3s ease-out forwards;
}

/* Navbar container max width for large screens */
.navbar-container {
    max-width: 1440px;
    margin: 0 auto;
}

/* Join Booker Button Styles - Gold Gradient with Pulse */
.btn-join-booker {
    background: linear-gradient(135deg, #edb606 0%, #ffd700 100%);
    border: none;
    border-radius: 40px;
    padding: 0.6rem 1.2rem;
    font-weight: 700;
    font-size: 0.85rem;
    color: #1d0144;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(237, 182, 6, 0.4);
    cursor: pointer;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulse-glow 2s infinite;
}

.btn-join-booker i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-join-booker:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 182, 6, 0.6);
    background: linear-gradient(135deg, #ffd700 0%, #edb606 100%);
    color: #1d0144;
}

.btn-join-booker:hover i {
    transform: translateX(3px) rotate(5deg);
}

.btn-join-booker:active {
    transform: translateY(0);
}

.btn-join-booker::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: left 0.6s ease;
}

.btn-join-booker:hover::before {
    left: 100%;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 4px 15px rgba(237, 182, 6, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(237, 182, 6, 0.8);
    }
    100% {
        box-shadow: 0 4px 15px rgba(237, 182, 6, 0.4);
    }
}

/* Sign In Button Styles - Premium Purple/White Outline */
.btn-sign-in {
    background: transparent;
    border: 2px solid rgba(237, 182, 6, 0.5);
    border-radius: 40px;
    padding: 0.55rem 1.2rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
    background: rgba(237, 182, 6, 0.05);
    backdrop-filter: blur(4px);
}

.btn-sign-in i {
    font-size: 1rem;
    color: #edb606;
    transition: all 0.3s ease;
}

.btn-sign-in:hover {
    border-color: #edb606;
    background: rgba(237, 182, 6, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(237, 182, 6, 0.2);
}

.btn-sign-in:hover i {
    transform: scale(1.1);
    color: #ffd700;
}

.btn-sign-in:active {
    transform: translateY(0);
}

/* Mobile Join Booker Button */
.btn-join-booker-mobile {
    background: linear-gradient(135deg, #edb606 0%, #ffd700 100%);
    border: none;
    border-radius: 40px;
    padding: 0.75rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: #1d0144;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(237, 182, 6, 0.3);
}

.btn-join-booker-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(237, 182, 6, 0.4);
    background: linear-gradient(135deg, #ffd700 0%, #edb606 100%);
}

/* Mobile Sign In Button */
.btn-sign-in-mobile {
    background: transparent;
    border: 2px solid rgba(237, 182, 6, 0.5);
    border-radius: 40px;
    padding: 0.7rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(237, 182, 6, 0.05);
}

.btn-sign-in-mobile i {
    color: #edb606;
}

.btn-sign-in-mobile:hover {
    border-color: #edb606;
    background: rgba(237, 182, 6, 0.15);
    transform: translateY(-2px);
}

/* Telegram Button Styles (keeping existing) */
.btn-telegram {
    background: linear-gradient(45deg, #0088cc, #54a9eb);
    border: none;
    border-radius: 40px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

.btn-telegram i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-telegram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.5);
    background: linear-gradient(45deg, #54a9eb, #0088cc);
}

.btn-telegram:hover i {
    transform: translateX(3px) rotate(5deg);
}

.btn-telegram:active {
    transform: translateY(0);
}

.btn-telegram::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn-telegram:hover::before {
    left: 100%;
}

/* Mobile Telegram Button */
.btn-telegram-mobile {
    background: linear-gradient(45deg, #0088cc, #54a9eb);
    border: none;
    border-radius: 40px;
    padding: 0.75rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-telegram-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.4);
}

/* Dropdown hover fix */
.group:hover .group-hover\:visible {
    visibility: visible !important;
}

.group:hover .group-hover\:opacity-100 {
    opacity: 1 !important;
}

/* Ensure dropdowns appear above other content */
.absolute.z-dropdown {
    z-index: 9999;
}

/* Responsive adjustments for logged-in users */
@media screen and (min-width: 1024px) and (max-width: 1366px) {
    .nav-link {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
        font-size: 0.8rem !important;
    }

    .right-buttons .btn-text {
        display: inline;
    }

    .right-buttons i {
        margin-right: 0;
    }

    .btn-join-booker,
    .btn-sign-in {
        padding-left: 0.9rem !important;
        padding-right: 0.9rem !important;
        font-size: 0.8rem !important;
    }

    /* Adjust container padding on medium screens */
    .navbar-container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* Reduce logo size slightly */
    .logo-img {
        height: 2rem !important;
    }
}

/* For large screens, show all items */
@media screen and (min-width: 1367px) {
    .nav-link span {
        display: inline !important;
    }
}

/* For very large screens, ensure nav items are comfortable */
@media screen and (min-width: 1600px) {
    .nav-link {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        font-size: 0.9rem !important;
    }

    .navbar-container {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}
/* Add to your CSS file */
.nav-link.active {
    background: linear-gradient(135deg, rgba(237, 182, 6, 0.15), rgba(255, 215, 0, 0.05));
    color: #edb606 !important;
    border: 1px solid rgba(237, 182, 6, 0.3);
    box-shadow: 0 0 15px rgba(237, 182, 6, 0.1);
}

/* For mobile menu items */
.mobile-nav-item.active {
    background: rgba(237, 182, 6, 0.1);
    color: #edb606 !important;
    border-left: 3px solid #edb606;
}
/* Ensure mobile menu works properly */
#mobileSidebar {
    transition: transform 0.3s ease-out;
    z-index: 70;
}

#mobileOverlay {
    z-index: 60;
}

/* Toast notification */
#toast {
    z-index: 9999;
}

/* Remove any green focus outlines */
*:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Fix for any green borders */
.btn:focus,
.btn:active,
input:focus,
select:focus,
textarea:focus {
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(237, 182, 6, 0.2) !important;
    border-color: #edb606 !important;
}

/* Ensure no green backdrop */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(4px);
}

 .tips-wrap { padding: 0 0 2rem; font-size: 15px; }

/* League Filters */
.league-filters { position: sticky; top: 0; background: rgba(29, 1, 68, 0.95); backdrop-filter: blur(10px); z-index: 10; padding: 10px 0 6px; margin-bottom: 12px; border-bottom: 1px solid rgba(237, 182, 6, 0.1); }
.filters-scroll { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: thin; }
.filters-scroll::-webkit-scrollbar { height: 3px; }
.filters-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 10px; }
.filters-scroll::-webkit-scrollbar-thumb { background: rgba(237, 182, 6, 0.4); border-radius: 10px; }

.league-chip {
    display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px;
    border-radius: 99px; border: 1px solid rgba(237, 182, 6, 0.2); background: transparent;
    font-size: 13px; color: rgba(255,255,255,0.7); cursor: pointer; white-space: nowrap;
    transition: all 0.15s ease;
}
.league-chip:hover { border-color: rgba(237, 182, 6, 0.5); color: #edb606; }
.league-chip.active { background: rgba(237, 182, 6, 0.15); color: #edb606; border-color: rgba(237, 182, 6, 0.5); }
.league-chip-logo { width: 14px; height: 14px; object-fit: contain; border-radius: 2px; }
.league-chip-count {
    font-size: 11px; background: rgba(237, 182, 6, 0.15); padding: 1px 6px;
    border-radius: 99px; color: #edb606;
}
.league-chip.active .league-chip-count { background: rgba(237, 182, 6, 0.25); }

/* League Group */
.league-group { margin-bottom: 1.25rem; }
.league-group-header {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 0 6px;
    border-bottom: 1px solid rgba(237, 182, 6, 0.1);
    margin-bottom: 8px;
}
.league-group-header img { width: 18px; height: 18px; border-radius: 2px; object-fit: contain; }
.league-group-title { font-size: 13px; font-weight: 600; color: #edb606; }
.league-group-count { margin-left: auto; font-size: 11px; color: rgba(255,255,255,0.4); }

/* Tip Card */
.tip-card {
    background: rgba(29, 1, 68, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(237, 182, 6, 0.15);
    border-radius: 12px; padding: 14px; margin-bottom: 8px;
    transition: all 0.2s ease;
}
.tip-card:hover { border-color: rgba(237, 182, 6, 0.4); background: rgba(29, 1, 68, 0.6); transform: translateY(-1px); }

.tip-card-top {
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px;
}
.tip-match-time { font-size: 12px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 5px; }
.tip-status-won  { font-size: 11px; font-weight: 600; background: rgba(34, 197, 94, 0.15); color: #22c55e; padding: 2px 10px; border-radius: 99px; }
.tip-status-loss { font-size: 11px; font-weight: 600; background: rgba(239, 68, 68, 0.15); color: #ef4444; padding: 2px 10px; border-radius: 99px; }
.tip-status-pending { font-size: 11px; font-weight: 600; background: rgba(237, 182, 6, 0.15); color: #edb606; padding: 2px 10px; border-radius: 99px; }

/* Teams */
.tip-teams { display: flex; align-items: center; margin-bottom: 10px; }
.tip-team { flex: 1; display: flex; align-items: center; gap: 8px; min-width: 0; }
.tip-team.away { flex-direction: row-reverse; text-align: right; }
.tip-team img { width: 26px; height: 26px; object-fit: contain; border-radius: 4px; flex-shrink: 0; background: rgba(255,255,255,0.1); padding: 2px; }
.tip-team-placeholder { width: 26px; height: 26px; border-radius: 4px; background: rgba(255,255,255,0.05); flex-shrink: 0; }
.tip-team-name { font-size: 14px; font-weight: 500; color: white; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tip-vs { font-size: 12px; color: rgba(237, 182, 6, 0.6); padding: 0 10px; flex-shrink: 0; font-weight: 600; }

/* Probability / Lock Section */
.tip-probability {
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.prob-bar-container {
    flex: 2;
    min-width: 120px;
}
.prob-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}
.prob-bar-bg {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    height: 6px;
    overflow: hidden;
}
.prob-bar-fill {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, #edb606, #ffd700);
    width: 0%;
    transition: width 0.3s ease;
}
.prob-percent {
    font-size: 13px;
    font-weight: 700;
    color: #edb606;
    min-width: 45px;
    text-align: right;
}
.lock-icon {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(237, 182, 6, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    color: #edb606;
    cursor: pointer;
    transition: all 0.2s;
}
.lock-icon:hover {
    background: rgba(237, 182, 6, 0.2);
    transform: scale(1.02);
}
.lock-icon i { font-size: 11px; }
.lock-icon.locked i { color: #edb606; }
.lock-icon.unlocked i { color: #22c55e; }
.probability-value {
    font-size: 13px;
    font-weight: 600;
    color: #edb606;
}
.locked-overlay {
    filter: blur(3px);
    pointer-events: none;
    user-select: none;
}
.subscribe-prompt {
    background: linear-gradient(135deg, rgba(237, 182, 6, 0.1), rgba(237, 182, 6, 0.05));
    border-radius: 8px;
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #edb606;
    cursor: pointer;
    transition: all 0.2s;
}
.subscribe-prompt:hover {
    background: rgba(237, 182, 6, 0.2);
}

.tip-divider { height: 1px; background: rgba(237, 182, 6, 0.1); margin-bottom: 10px; }

/* Footer */
.tip-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.tip-prediction {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(237, 182, 6, 0.1); border-radius: 8px; padding: 5px 12px; min-width: 0;
    border: 1px solid rgba(237, 182, 6, 0.2);
}
.tip-prediction-label { font-size: 11px; color: rgba(255,255,255,0.5); flex-shrink: 0; }
.tip-prediction-value { font-size: 13px; font-weight: 600; color: #edb606; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tip-footer-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.tip-preview-btn {
    font-size: 12px; color: rgba(255,255,255,0.6); text-decoration: none;
    display: flex; align-items: center; gap: 4px; white-space: nowrap;
    transition: color 0.2s;
    background: rgba(255,255,255,0.05);
    padding: 5px 10px;
    border-radius: 8px;
}
.tip-preview-btn:hover { color: #edb606; background: rgba(237, 182, 6, 0.1); text-decoration: none; }

.tip-page-hidden { display: none !important; }

/* Load More Button */
#load-more-btn {
    display: block; width: 100%; padding: 12px;
    border: 1px solid rgba(237, 182, 6, 0.3); border-radius: 10px;
    background: transparent; font-size: 13px; color: #edb606;
    cursor: pointer; margin-top: 4px; transition: all 0.2s;
    font-weight: 500;
}
#load-more-btn:hover { background: rgba(237, 182, 6, 0.1); border-color: rgba(237, 182, 6, 0.5); }

#loading-indicator {
    text-align: center;
    padding: 12px;
    font-size: 13px;
    color: #edb606;
}

/* Bookie Logo */
.tip-footer-right .bookie-logo-mini img {
    height: 20px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.tip-footer-right .bookie-logo-mini img:hover {
    opacity: 1;
}



.betslip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
    padding: 4px 0;
}

.betslip-card {
    background: rgba(29,1,68,0.55);
    border: 1px solid rgba(237,182,6,0.18);
    border-radius: 14px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color .2s, transform .15s;
    display: flex;
    flex-direction: column;
}


/* ── Header ── */
.bs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px 10px;
    border-bottom: 1px solid rgba(237,182,6,0.1);
}
.bs-bookmaker {
    display: flex;
    align-items: center;
    gap: 8px;
}
.bs-bookmaker img,
.bs-bookmaker .bookie-logo {
    height: 24px;
    width: auto;
    max-width: 70px;
    object-fit: contain;
    opacity: .9;
}
.bs-bookmaker-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}
.bs-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}
.bs-stars i {
    font-size: 10px;
}
.bs-stars i.filled { color: var(--gold); }
.bs-stars i:not(.filled) { color: rgba(255,255,255,0.15); }

/* ── Body ── */
.bs-body {
    padding: 12px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bs-odds-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bs-odds-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--text-muted);
}
.bs-odds-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.bs-code-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 6px 10px;
}
.bs-code-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}
.bs-code-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--text-muted);
}
.bs-code-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.bs-copy-btn {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: rgba(237,182,6,0.1);
    border: 1px solid rgba(237,182,6,0.2);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: background .15s, transform .1s;
}
.bs-copy-btn:hover  { background: rgba(237,182,6,0.2); }
.bs-copy-btn:active { transform: scale(.92); }
.bs-copy-btn.copied {
    background: rgba(26,200,100,0.15);
    border-color: rgba(26,200,100,0.3);
    color: #1ac864;
}

.bs-promo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(237,182,6,0.06);
    border: 1px solid rgba(237,182,6,0.15);
    border-radius: 8px;
    padding: 6px 10px;
}
.bs-promo-row .bs-code-value {
    color: var(--gold);
}

/* ── Footer actions ── */
.bs-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 14px 13px;
    border-top: 1px solid rgba(237,182,6,0.08);
}
.bs-footer.has-view { grid-template-columns: 1fr 1fr; }

.bs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all .15s;
    border: none;
    white-space: nowrap;
}
.bs-btn i { font-size: 11px; flex-shrink: 0; }

.bs-btn-primary {
    background: var(--gold);
    color: #1d0144;
    grid-column: 1 / -1;
}
.bs-btn-primary:hover { background: #f5d030; color: #1d0144; }

.bs-btn-secondary {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
}
.bs-btn-secondary:hover {
    background: var(--gold-dim);
    border-color: var(--gold-border);
    color: var(--gold);
}

.bs-btn-view {
    background: rgba(167,139,250,0.1);
    border: 1px solid rgba(167,139,250,0.2);
    color: #a78bfa;
}
.bs-btn-view:hover {
    background: rgba(167,139,250,0.2);
    border-color: rgba(167,139,250,0.35);
    color: #c4b5fd;
}

.bs-today-dot {
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #1ac864;
    box-shadow: 0 0 0 2px rgba(26,200,100,0.2);
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .betslip-grid { grid-template-columns: 1fr; }
}
.slip-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13,8,32,0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    animation: overlayIn .2s ease;
}
@media (min-width: 600px) {
    .slip-overlay { align-items: center; }
}
@keyframes overlayIn { from { opacity:0 } to { opacity:1 } }

/* Modal sheet */
.slip-modal {
    background: #120830;
    border: 1px solid var(--gold-border);
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    animation: sheetUp .25s cubic-bezier(.22,1,.36,1);
    overflow: hidden;
}
@media (min-width: 600px) {
    .slip-modal {
        border-radius: 18px;
        max-height: 85vh;
    }
}
@keyframes sheetUp {
    from { transform: translateY(40px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

/* Drag handle (mobile) */
.slip-drag-handle {
    width: 36px; height: 4px;
    background: rgba(255,255,255,0.12);
    border-radius: 99px;
    margin: 10px auto 0;
    flex-shrink: 0;
}
@media (min-width: 600px) { .slip-drag-handle { display: none; } }

/* Header */
.slip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px 12px;
    border-bottom: 1px solid rgba(237,182,6,0.1);
    flex-shrink: 0;
}
.slip-header-left {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.slip-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}
.slip-betcode-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--gold);
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    border-radius: 6px;
    padding: 2px 8px;
    font-family: monospace;
    font-weight: 700;
    letter-spacing: .04em;
}
.slip-close-btn {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
    flex-shrink: 0;
}
.slip-close-btn:hover {
    background: rgba(237,182,6,0.15);
    border-color: var(--gold-border);
    color: var(--gold);
}

/* Summary strip */
.slip-summary-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(237,182,6,0.08);
    border-bottom: 1px solid rgba(237,182,6,0.1);
    flex-shrink: 0;
}
.slip-stat {
    background: #120830;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.slip-stat-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--text-muted);
}
.slip-stat-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
}

/* Events list */
.slip-events {
    overflow-y: auto;
    flex: 1;
    padding: 10px 14px;
    scrollbar-width: thin;
    scrollbar-color: rgba(237,182,6,0.2) transparent;
}
.slip-events::-webkit-scrollbar { width: 4px; }
.slip-events::-webkit-scrollbar-thumb {
    background: rgba(237,182,6,0.2);
    border-radius: 99px;
}

.slip-event {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 11px;
    padding: 11px 13px;
    margin-bottom: 8px;
    transition: border-color .15s;
}
.slip-event:hover { border-color: rgba(237,182,6,0.25); }
.slip-event:last-child { margin-bottom: 0; }

.slip-event-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 7px;
}
.slip-event-league {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 70%;
}
.slip-event-league svg { flex-shrink: 0; }
.slip-event-time {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.slip-event-teams {
    display: flex;
    align-items: center;
    margin-bottom: 9px;
    gap: 0;
}
.slip-event-team {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}
.slip-event-team.away { flex-direction: row-reverse; text-align: right; }
.slip-event-team img {
    width: 22px; height: 22px;
    border-radius: 4px;
    object-fit: contain;
    background: rgba(255,255,255,0.05);
    flex-shrink: 0;
}
.slip-event-team-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.slip-vs {
    font-size: 10px;
    color: var(--text-muted);
    padding: 0 8px;
    flex-shrink: 0;
    opacity: .5;
}

.slip-event-market {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.slip-market-type {
    font-size: 11px;
    color: var(--text-muted);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 5px;
    padding: 2px 7px;
}
.slip-market-selection {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}
.slip-market-odds {
    margin-left: auto;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    border-radius: 6px;
    padding: 2px 9px;
    flex-shrink: 0;
}

/* Status dot on event */
.slip-event-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 5px;
    flex-shrink: 0;
}
.slip-event-status.won  { background:rgba(26,200,100,0.12); color:#1ac864; }
.slip-event-status.lost { background:rgba(220,60,60,0.12);  color:#e05555; }
.slip-event-status.live { background:rgba(237,182,6,0.12);  color:var(--gold); }
.slip-event-status.pending { background:rgba(255,255,255,0.06); color:var(--text-muted); }

/* Footer */
.slip-footer {
    padding: 10px 14px 14px;
    border-top: 1px solid rgba(237,182,6,0.08);
    flex-shrink: 0;
}
.slip-footer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s;
}
.slip-footer-btn:hover {
    background: rgba(237,182,6,0.08);
    border-color: var(--gold-border);
    color: var(--gold);
}

/* ── Expired / Error state ── */
.slip-expired-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
    text-align: center;
    gap: 12px;
}
.slip-expired-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(220,60,60,0.12);
    border: 1px solid rgba(220,60,60,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}
.slip-expired-icon svg { color: #e05555; }
.slip-expired-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}
.slip-expired-sub {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 300px;
}
.slip-expired-code {
    font-family: monospace;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    border-radius: 7px;
    padding: 5px 14px;
}

/* Loading skeleton */
.slip-loading-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    gap: 14px;
}
.slip-spinner {
    width: 36px; height: 36px;
    border: 3px solid rgba(237,182,6,0.15);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.slip-loading-text {
    font-size: 13px;
    color: var(--text-muted);
}

     /* Compact Steps Styles */
 .steps-horizontal-wrapper {
     width: 100%;
 }

.steps-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
}

.steps-scroll-container::-webkit-scrollbar {
    height: 2px;
}

.steps-scroll-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.steps-scroll-container::-webkit-scrollbar-thumb {
    background: rgba(237, 182, 6, 0.3);
    border-radius: 10px;
}

.steps-inline-wrapper-compact {
    display: flex;
    flex-direction: row;
    gap: 8px;
    min-width: min-content;
}

.step-card-compact {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(237, 182, 6, 0.12);
    border-radius: 12px;
    padding: 8px 14px;
    min-width: 180px;
    transition: all 0.2s ease;
}

.step-card-compact:hover {
    border-color: rgba(237, 182, 6, 0.3);
    background: rgba(237, 182, 6, 0.05);
}

.step-circle {
    width: 32px;
    height: 32px;
    background: rgba(237, 182, 6, 0.15);
    border: 1px solid rgba(237, 182, 6, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #edb606;
    flex-shrink: 0;
}

.step-title-compact {
    font-size: 13px;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
    line-height: 1.3;
}

.step-desc-compact {
    font-size: 10px;
    color: #8a7faa;
    line-height: 1.3;
}

.step-arrow-compact {
    flex-shrink: 0;
    margin-left: 4px;
}

/* Desktop */
@media (min-width: 768px) {
    .steps-scroll-container {
        overflow-x: visible;
    }

    .steps-inline-wrapper-compact {
        justify-content: center;
        gap: 16px;
    }

    .step-card-compact {
        min-width: 220px;
        padding: 10px 18px;
    }

    .step-circle {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .step-title-compact {
        font-size: 14px;
    }

    .step-desc-compact {
        font-size: 11px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .step-card-compact {
        padding: 6px 12px;
        min-width: 160px;
        gap: 8px;
    }

    .step-circle {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .step-title-compact {
        font-size: 11px;
    }

    .step-desc-compact {
        font-size: 9px;
    }
}

     /* Checkout page specific overrides */
 .form-group {
     margin-bottom: 24px;
 }

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--para-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--para-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--bg-color);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 20px rgba(237, 182, 6, 0.2);
}

.form-control::placeholder {
    color: var(--para-alt-color);
}

/* Readonly amount field */
.form-control[readonly] {
    background: rgba(255, 255, 255, 0.05);
    cursor: not-allowed;
    opacity: 0.8;
}

/* Submit button with proper spacing */
.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(45deg, var(--bg-color), #ffc107);
    border: none;
    border-radius: 12px;
    color: var(--body-color);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 16px;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(237, 182, 6, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Info text */
.info-text {
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--para-alt-color);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

/* Validation message */
.validation-message {
    margin-top: 8px;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.validation-message.success {
    color: #10b981;
}

.validation-message.error {
    color: #ef4444;
}

/* Extra spacing between form groups and button */
.payment-form .form-group:last-of-type {
    margin-bottom: 8px;
}
