@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

        :root {
            --bg-main: #000000;
            --bg-card: #0d111a;
            --bg-card-alt: #161f30;
            --primary: #4682B4;
            --primary-hover: #3572a4;
            --accent: #ffc107;
            --accent-hover: #e0a800;
            --text-main: #ffffff;
            --text-muted: #94a3b8;
            --border-color: #1e293b;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
            --container-width: 1200px;
            --transition-speed: 0.3s;
        }

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

        html {
            scroll-behavior: smooth;
            font-family: var(--font-body);
            background-color: var(--bg-main);
            color: var(--text-main);
        }

        body {
            overflow-x: hidden;
            line-height: 1.6;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition-speed);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }

        /* Utility Classes */
        .site-ebUPBx-container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        .site-ebUPBx-section {
            padding: 80px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .site-ebUPBx-section-title {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .site-ebUPBx-section-subtitle {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .site-ebUPBx-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            font-family: var(--font-heading);
            font-weight: 700;
            border-radius: 30px;
            transition: all var(--transition-speed) ease;
            cursor: pointer;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            gap: 8px;
            border: none;
        }

        .site-ebUPBx-btn-primary {
            background-color: var(--primary);
            color: var(--text-main);
            box-shadow: 0 4px 15px rgba(70, 130, 180, 0.4);
        }

        .site-ebUPBx-btn-primary:hover {
            background-color: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(70, 130, 180, 0.6);
        }

        .site-ebUPBx-btn-accent {
            background-color: var(--accent);
            color: #000000;
            box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
        }

        .site-ebUPBx-btn-accent:hover {
            background-color: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
        }

        .site-ebUPBx-btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--text-main);
        }

        .site-ebUPBx-btn-outline:hover {
            background-color: var(--primary);
            color: var(--text-main);
            transform: translateY(-2px);
        }

        /* Header Styles */
        .site-ebUPBx-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .site-ebUPBx-header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .site-ebUPBx-logo {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .site-ebUPBx-logo span {
            color: var(--primary);
        }

        .site-ebUPBx-nav {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .site-ebUPBx-nav-list {
            display: flex;
            list-style: none;
            gap: 20px;
        }

        .site-ebUPBx-nav-link {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-muted);
        }

        .site-ebUPBx-nav-link:hover {
            color: var(--primary);
        }

        .site-ebUPBx-header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .site-ebUPBx-header-btn {
            padding: 10px 20px;
            font-size: 0.85rem;
        }

        .site-ebUPBx-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-main);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .site-ebUPBx-hero {
            padding: 160px 0 100px 0;
            background: radial-gradient(circle at top right, rgba(70, 130, 180, 0.15), transparent 60%);
            position: relative;
        }

        .site-ebUPBx-hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 40px;
            align-items: center;
        }

        .site-ebUPBx-hero-content h1 {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .site-ebUPBx-hero-content h1 span {
            color: var(--primary);
        }

        .site-ebUPBx-hero-desc {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .site-ebUPBx-hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .site-ebUPBx-promo-banner {
            background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-alt) 100%);
            border: 1px solid var(--primary);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(70, 130, 180, 0.2);
        }

        .site-ebUPBx-promo-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(70, 130, 180, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .site-ebUPBx-promo-badge {
            background-color: var(--primary);
            color: var(--text-main);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 15px;
        }

        .site-ebUPBx-promo-title {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent);
            margin-bottom: 10px;
        }

        .site-ebUPBx-promo-text {
            font-size: 1rem;
            color: var(--text-main);
            margin-bottom: 25px;
        }

        /* Table Styles */
        .site-ebUPBx-table-wrapper {
            overflow-x: auto;
            margin: 30px 0;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            background-color: var(--bg-card);
        }

        .site-ebUPBx-table {
            width: 100%;
            min-width: 600px;
            border-collapse: collapse;
            text-align: left;
        }

        .site-ebUPBx-table th {
            background-color: var(--bg-card-alt);
            color: var(--primary);
            font-family: var(--font-heading);
            font-weight: 700;
            padding: 16px 20px;
            border-bottom: 2px solid var(--border-color);
            text-transform: uppercase;
            font-size: 0.9rem;
        }

        .site-ebUPBx-table td {
            padding: 16px 20px;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-main);
            font-size: 0.95rem;
        }

        .site-ebUPBx-table tr:last-child td {
            border-bottom: none;
        }

        .site-ebUPBx-table tr:nth-child(even) {
            background-color: rgba(255, 255, 255, 0.02);
        }

        .site-ebUPBx-table-btn-container {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        /* Mirror Section */
        .site-ebUPBx-mirror-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .site-ebUPBx-mirror-text {
            font-size: 1.1rem;
            color: var(--text-muted);
            line-height: 1.8;
        }

        .site-ebUPBx-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        .site-ebUPBx-card {
            background-color: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 30px;
            transition: all var(--transition-speed) ease;
            position: relative;
            overflow: hidden;
        }

        .site-ebUPBx-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 10px 20px rgba(70, 130, 180, 0.1);
        }

        .site-ebUPBx-card-icon {
            color: var(--primary);
            margin-bottom: 20px;
            display: inline-block;
        }

        .site-ebUPBx-card-title {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .site-ebUPBx-card-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Registration & Login Sections */
        .site-ebUPBx-split-section {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 50px;
            align-items: center;
        }

        .site-ebUPBx-split-section.reverse {
            grid-template-columns: 0.9fr 1.1fr;
        }

        .site-ebUPBx-list {
            list-style: none;
            margin: 25px 0;
        }

        .site-ebUPBx-list-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            font-size: 1.05rem;
        }

        .site-ebUPBx-list-icon {
            color: var(--primary);
            flex-shrink: 0;
        }

        .site-ebUPBx-image-container {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            border: 1px solid var(--border-color);
        }

        .site-ebUPBx-image-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.8) 100%);
        }

        /* Bonus Cards */
        .site-ebUPBx-bonus-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
            margin-bottom: 40px;
        }

        .site-ebUPBx-bonus-card {
            background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-alt) 100%);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 35px 25px;
            text-align: center;
            transition: all var(--transition-speed) ease;
        }

        .site-ebUPBx-bonus-card:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
        }

        .site-ebUPBx-bonus-amount {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
            margin-bottom: 15px;
        }

        .site-ebUPBx-bonus-card-title {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        /* FAQ Accordion */
        .site-ebUPBx-faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .site-ebUPBx-faq-item {
            background-color: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: all var(--transition-speed);
        }

        .site-ebUPBx-faq-header {
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            user-select: none;
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.1rem;
        }

        .site-ebUPBx-faq-icon {
            transition: transform var(--transition-speed);
            color: var(--primary);
        }

        .site-ebUPBx-faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-speed) ease-out;
            background-color: rgba(255, 255, 255, 0.01);
        }

        .site-ebUPBx-faq-text {
            padding: 0 24px 20px 24px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        .site-ebUPBx-faq-item.active {
            border-color: var(--primary);
        }

        .site-ebUPBx-faq-item.active .site-ebUPBx-faq-icon {
            transform: rotate(180deg);
        }

        /* Reviews */
        .site-ebUPBx-reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
        }

        .site-ebUPBx-review-card {
            background-color: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 30px;
        }

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

        .site-ebUPBx-review-author {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.1rem;
        }

        .site-ebUPBx-review-stars {
            color: var(--accent);
            display: flex;
            gap: 2px;
        }

        .site-ebUPBx-review-text {
            color: var(--text-muted);
            font-style: italic;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Footer */
        .site-ebUPBx-footer {
            background-color: #05070a;
            padding: 80px 0 40px 0;
            border-top: 1px solid var(--border-color);
        }

        .site-ebUPBx-footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        .site-ebUPBx-footer-col h4 {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 25px;
            text-transform: uppercase;
            color: var(--primary);
        }

        .site-ebUPBx-footer-desc {
            color: var(--text-muted);
            line-height: 1.8;
            margin-top: 15px;
        }

        .site-ebUPBx-footer-links {
            list-style: none;
        }

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

        .site-ebUPBx-footer-links a {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .site-ebUPBx-footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .site-ebUPBx-footer-bottom {
            border-top: 1px solid var(--border-color);
            padding-top: 30px;
            text-align: center;
        }

        .site-ebUPBx-footer-copy {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .site-ebUPBx-disclaimer {
            color: #475569;
            font-size: 0.8rem;
            line-height: 1.6;
            max-width: 900px;
            margin: 0 auto;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .site-ebUPBx-hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .site-ebUPBx-split-section, .site-ebUPBx-split-section.reverse {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .site-ebUPBx-image-container {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .site-ebUPBx-section-title {
                font-size: 2rem;
            }
            .site-ebUPBx-hero-content h1 {
                font-size: 2.5rem;
            }
            .site-ebUPBx-menu-toggle {
                display: block;
            }
            .site-ebUPBx-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: rgba(0, 0, 0, 0.98);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 40px;
                transition: left 0.3s ease;
                z-index: 999;
            }
            .site-ebUPBx-nav.active {
                left: 0;
            }
            .site-ebUPBx-nav-list {
                flex-direction: column;
                align-items: center;
                gap: 25px;
            }
            .site-ebUPBx-nav-link {
                font-size: 1.2rem;
            }
            .site-ebUPBx-header-actions {
                display: none;
            }
            .site-ebUPBx-footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

.gen-94ogniy0 {
  background: linear-gradient(135deg, #0f172a 0%, #022c22 100%) !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
  box-shadow: 0 10px 30px rgba(4, 120, 87, 0.15) !important;
}
.gen-94ogniy0 .site-ebUPBx-promo-badge {
  background-color: #10b981 !important;
  color: #022c22 !important;
  font-weight: 700 !important;
}
.gen-94ogniy0 .site-ebUPBx-promo-title {
  color: #10b981 !important;
}
.gen-94ogniy0 .site-ebUPBx-btn-accent {
  background: linear-gradient(90deg, #10b981 0%, #059669 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4) !important;
  border: none !important;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
}
.gen-94ogniy0 .site-ebUPBx-btn-accent:hover {
  background: linear-gradient(90deg, #059669 0%, #047857 100%) !important;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6) !important;
  transform: translateY(-1px);
}

.gen-cq1xgjgz {
  background: #28a745 !important;
  color: #ffffff !important;
  border-color: #28a745 !important;
}
.gen-cq1xgjgz:hover {
  background: #218838 !important;
  border-color: #1e7e34 !important;
  color: #ffffff !important;
}

.gen-bqee16l2 { background-color: #28a745 !important; color: #ffffff !important; } .gen-bqee16l2:hover { background-color: #218838 !important; }

.gen-05mbgz3k {
  background: #28a745 !important;
  color: #ffffff !important;
  font-family: Montserrat, sans-serif;
  font-size: 14.4px;
  border-radius: 30px;
  transition: background-color 0.2s ease-in-out;
}
.gen-05mbgz3k:hover {
  background: #218838 !important;
}

.gen-wyak6fwm {
  background: #28a745 !important;
  color: #ffffff !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 14.4px;
  border-radius: 30px;
  transition: background-color 0.2s ease;
}
.gen-wyak6fwm:hover {
  background: #218838 !important;
  color: #ffffff !important;
}

.gen-5mmjh29z .site-ebUPBx-btn-accent {
    background-color: #10b981 !important;
    color: #ffffff !important;
    border-color: #10b981 !important;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4) !important;
}
.gen-5mmjh29z .site-ebUPBx-btn-accent:hover {
    background-color: #059669 !important;
    border-color: #059669 !important;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.6) !important;
}
.gen-5mmjh29z .site-ebUPBx-bonus-amount {
    color: #10b981 !important;
}
.gen-5mmjh29z .site-ebUPBx-bonus-card:hover {
    border-color: #10b981 !important;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1) !important;
}

.gen-om41yohw {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
  transition: none !important;
  opacity: 1 !important;
  background: transparent !important;
}
.gen-om41yohw img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
  transition: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}
.gen-om41yohw:hover,
.gen-om41yohw img:hover {
  transform: none !important;
  filter: none !important;
  opacity: 1 !important;
  box-shadow: none !important;
}

.gen-ag7sioq3 {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.gen-ag7sioq3 img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

.gen-64rlorku img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.gen-2a83s7ov {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: block;
    width: 100%;
    height: 100%;
    min-height: 300px;
}
.gen-2a83s7ov .security-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.gen-2a83s7ov:hover .security-main-img {
    transform: scale(1.03);
}
.gen-2a83s7ov .security-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 60%, rgba(15, 23, 42, 0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}
.gen-2a83s7ov .security-badge {
    background: rgba(30, 41, 59, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}
.gen-2a83s7ov .security-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.5));
}
.gen-2a83s7ov .security-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.gen-2a83s7ov .security-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}
.gen-2a83s7ov .security-subtitle {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 400;
}

.gen-xsp8vkb8 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 10px;
    background: transparent;
    width: 100%;
}

.gen-xsp8vkb8 .phone-container {
    position: relative;
    width: 340px;
    height: 680px;
    background: #0a111c;
    border: 12px solid #1e293b;
    border-radius: 44px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 163, 224, 0.15);
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #ffffff;
}

/* Notch */
.gen-xsp8vkb8 .phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 28px;
    background: #1e293b;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 10;
}

/* Screen */
.gen-xsp8vkb8 .phone-screen {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 32px;
    box-sizing: border-box;
}

/* Header */
.gen-xsp8vkb8 .app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #0e1b2e;
    border-bottom: 1px solid #1e2d42;
}

.gen-xsp8vkb8 .brand {
    font-weight: 900;
    font-size: 20px;
    letter-spacing: -0.5px;
    font-style: italic;
}

.gen-xsp8vkb8 .brand-1x {
    color: #ffffff;
}

.gen-xsp8vkb8 .brand-bet {
    color: #00a3e0;
}

.gen-xsp8vkb8 .header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gen-xsp8vkb8 .live-indicator {
    background: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    animation: pulse 1.5s infinite;
}

.gen-xsp8vkb8 .user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #00a3e0;
    border: 2px solid #1e2d42;
}

/* Promo Banner */
.gen-xsp8vkb8 .promo-banner {
    position: relative;
    margin: 12px 16px;
    padding: 16px;
    background: linear-gradient(135deg, #0052d4, #4364f7, #6fb1fc);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(67, 100, 247, 0.3);
}

.gen-xsp8vkb8 .promo-badge {
    background: #ffcc00;
    color: #0a111c;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 6px;
}

.gen-xsp8vkb8 .promo-title {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
}

.gen-xsp8vkb8 .promo-subtitle {
    font-size: 12px;
    opacity: 0.9;
    margin-top: 2px;
}

.gen-xsp8vkb8 .promo-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

/* Match Card */
.gen-xsp8vkb8 .match-card {
    background: #132237;
    margin: 0 16px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid #1e2d42;
}

.gen-xsp8vkb8 .match-header {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #94a3b8;
    margin-bottom: 10px;
}

.gen-xsp8vkb8 .match-time {
    color: #10b981;
    font-weight: bold;
}

.gen-xsp8vkb8 .teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.gen-xsp8vkb8 .team {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 35%;
    text-align: center;
}

.gen-xsp8vkb8 .team-logo {
    width: 36px;
    height: 36px;
    margin-bottom: 6px;
}

.gen-xsp8vkb8 .team-name {
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.gen-xsp8vkb8 .score {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
}

/* Odds Buttons */
.gen-xsp8vkb8 .odds-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.gen-xsp8vkb8 .odd-btn {
    background: #1e2d42;
    border: 1px solid #2e3f56;
    border-radius: 10px;
    padding: 8px 4px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.2s ease;
}

.gen-xsp8vkb8 .odd-btn:hover {
    background: #2e3f56;
}

.gen-xsp8vkb8 .odd-btn.active {
    background: #00a3e0;
    border-color: #00a3e0;
    box-shadow: 0 0 12px rgba(0, 163, 224, 0.4);
}

.gen-xsp8vkb8 .outcome {
    font-size: 10px;
    color: #94a3b8;
    margin-bottom: 2px;
}

.gen-xsp8vkb8 .odd-btn.active .outcome {
    color: rgba(255, 255, 255, 0.8);
}

.gen-xsp8vkb8 .odd-val {
    font-size: 13px;
    font-weight: 700;
}

/* Categories */
.gen-xsp8vkb8 .categories {
    display: flex;
    gap: 10px;
    padding: 0 16px;
    overflow-x: auto;
    scrollbar-width: none;
}

.gen-xsp8vkb8 .categories::-webkit-scrollbar {
    display: none;
}

.gen-xsp8vkb8 .category-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #132237;
    padding: 8px 14px;
    border-radius: 20px;
    white-space: nowrap;
    font-size: 12px;
    border: 1px solid transparent;
    cursor: pointer;
}

.gen-xsp8vkb8 .category-item.active {
    background: rgba(0, 163, 224, 0.15);
    border-color: rgba(0, 163, 224, 0.3);
    color: #00a3e0;
}

/* Download CTA */
.gen-xsp8vkb8 .download-cta {
    padding: 0 16px;
    margin-bottom: 10px;
}

.gen-xsp8vkb8 .download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #10b981;
    color: #ffffff;
    text-decoration: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: background 0.2s;
}

.gen-xsp8vkb8 .download-btn:hover {
    background: #059669;
}

.gen-xsp8vkb8 .download-icon {
    width: 18px;
    height: 18px;
}

/* Bottom Nav */
.gen-xsp8vkb8 .bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #0e1b2e;
    padding: 10px 6px 14px 6px;
    border-top: 1px solid #1e2d42;
}

.gen-xsp8vkb8 .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #94a3b8;
    cursor: pointer;
    font-size: 10px;
    position: relative;
    width: 20%;
}

.gen-xsp8vkb8 .nav-item.active {
    color: #00a3e0;
}

.gen-xsp8vkb8 .nav-icon {
    font-size: 18px;
}

.gen-xsp8vkb8 .betslip-item {
    position: relative;
}

.gen-xsp8vkb8 .bet-count {
    position: absolute;
    top: -4px;
    right: 12px;
    background: #ef4444;
    color: white;
    font-size: 9px;
    font-weight: bold;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    border: 1px solid #0e1b2e;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.gen-3tcv0dko {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.gen-3tcv0dko .logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.gen-1fwavogl {
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .gen-1fwavogl {
    padding: 30px 0 !important;
  }
  .gen-1fwavogl .site-ebUPBx-hero-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    padding: 0 16px !important;
    box-sizing: border-box !important;
  }
  .gen-1fwavogl .site-ebUPBx-hero-content {
    text-align: center !important;
  }
  .gen-1fwavogl h1 {
    font-size: 28px !important;
    line-height: 1.2 !important;
    margin-bottom: 12px !important;
  }
  .gen-1fwavogl h1 span {
    font-size: 18px !important;
    display: block !important;
    margin-top: 4px !important;
  }
  .gen-1fwavogl .site-ebUPBx-hero-desc {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
  }
  .gen-1fwavogl .site-ebUPBx-hero-actions {
    display: flex !important;
    gap: 12px !important;
    justify-content: center !important;
    width: 100% !important;
  }
  .gen-1fwavogl .site-ebUPBx-hero-actions .site-ebUPBx-btn {
    flex: 1 !important;
    text-align: center !important;
    padding: 12px 16px !important;
    font-size: 15px !important;
    box-sizing: border-box !important;
  }
  .gen-1fwavogl .site-ebUPBx-promo-banner {
    padding: 20px !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }
  .gen-1fwavogl .site-ebUPBx-promo-badge {
    font-size: 11px !important;
    padding: 4px 10px !important;
  }
  .gen-1fwavogl .site-ebUPBx-promo-title {
    font-size: 24px !important;
    margin: 10px 0 !important;
  }
  .gen-1fwavogl .site-ebUPBx-promo-text {
    font-size: 13px !important;
    margin-bottom: 16px !important;
    line-height: 1.4 !important;
  }
}

.gen-c08o3ypo {
  margin-top: 100px !important;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .gen-c08o3ypo {
    margin-top: 70px !important;
  }
}

.gen-0jmkqobj {
    width: 100%;
    overflow-x: auto;
    padding: 0;
    margin: 0;
}

.gen-0jmkqobj .site-ebUPBx-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-size: 14px;
    line-height: 1.3;
}

.gen-0jmkqobj .site-ebUPBx-table th,
.gen-0jmkqobj .site-ebUPBx-table td {
    padding: 6px 10px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gen-0jmkqobj .site-ebUPBx-table th {
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.9);
}

.gen-0jmkqobj .site-ebUPBx-table td {
    color: rgba(255, 255, 255, 0.8);
}

.gen-0jmkqobj .site-ebUPBx-table tr:last-child td {
    border-bottom: none;
}

.gen-0jmkqobj .site-ebUPBx-table tr:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.gen-8hcslyw8 {
    padding: 4px 0;
    margin: 0;
    overflow-x: auto;
}
.gen-8hcslyw8 .site-ebUPBx-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.3;
}
.gen-8hcslyw8 .site-ebUPBx-table th {
    padding: 6px 10px;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.02);
}
.gen-8hcslyw8 .site-ebUPBx-table td {
    padding: 5px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    vertical-align: middle;
}
.gen-8hcslyw8 .site-ebUPBx-table tr:last-child td {
    border-bottom: none;
}

.gen-przbn2ui .site-ebUPBx-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.gen-przbn2ui .site-ebUPBx-image-container img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .gen-przbn2ui .site-ebUPBx-split-section {
        display: flex;
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .gen-przbn2ui .site-ebUPBx-image-container {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    .gen-przbn2ui .site-ebUPBx-image-container img {
        max-width: 100%;
        max-height: 50vh; /* Ensures the image fits within the screen height on mobile */
        width: auto;
        height: auto;
        margin: 0 auto;
    }
}

._extracted-style-W1ED { width: 100%; }

._extracted-style-psu0 { text-align: center; }

._extracted-style-B0cC { text-align: left; }

._extracted-style--xEp { text-align: left; }

._extracted-style-J-yC { text-align: center; max-width: 800px; margin: 0 auto 40px auto; }

._extracted-style-jLWo { text-align: left; }

._extracted-style-29vl { text-align: center; max-width: 800px; margin: 0 auto 40px auto; }

._extracted-style-xwGZ { max-width: 600px; margin: 0 auto; }

._extracted-style-4-aw { text-align: left; }

._extracted-style-jqXY { text-align: left; }

._extracted-style-3R1h { text-align: center; }

._extracted-style-GN1N { text-align: center; max-width: 800px; margin: 0 auto 40px auto; }

._extracted-style-MfOc { margin-bottom: 40px; }

._extracted-style-Myh6 { text-align: center; }

._extracted-style-DajP { text-align: center; }

._extracted-style-Zg5b { text-align: center; }

._extracted-style-_lNB { text-align: center; }

._extracted-style-j5sv { fill: var(--accent); width: 16px; height: 16px; }

._extracted-style-gepw { fill: var(--accent); width: 16px; height: 16px; }

._extracted-style-bYUo { fill: var(--accent); width: 16px; height: 16px; }

._extracted-style-4dYb { fill: var(--accent); width: 16px; height: 16px; }

._extracted-style-npN8 { fill: var(--accent); width: 16px; height: 16px; }

._extracted-style-yuUC { fill: var(--accent); width: 16px; height: 16px; }

._extracted-style-xNUA { fill: var(--accent); width: 16px; height: 16px; }

._extracted-style-7ZG_ { fill: var(--accent); width: 16px; height: 16px; }

._extracted-style-qS3C { fill: var(--accent); width: 16px; height: 16px; }

._extracted-style-fbfx { fill: var(--accent); width: 16px; height: 16px; }

._extracted-style-no5r { fill: var(--accent); width: 16px; height: 16px; }

._extracted-style-gYjf { fill: var(--accent); width: 16px; height: 16px; }

._extracted-style-4EMW { fill: var(--accent); width: 16px; height: 16px; }

._extracted-style-I8ky { fill: var(--accent); width: 16px; height: 16px; }

._extracted-style-oQu3 { fill: var(--accent); width: 16px; height: 16px; }

._extracted-style-KkcT { fill: var(--accent); width: 16px; height: 16px; }

._extracted-style-ddQK { fill: var(--accent); width: 16px; height: 16px; }

._extracted-style-h_Br { fill: var(--accent); width: 16px; height: 16px; }

._extracted-style-Op0d { fill: var(--accent); width: 16px; height: 16px; }

._extracted-style-x5Sn { fill: var(--accent); width: 16px; height: 16px; }

._extracted-style-v3XG { fill: var(--accent); width: 16px; height: 16px; }

._extracted-style-4QcY { fill: var(--accent); width: 16px; height: 16px; }

._extracted-style-vs8- { fill: var(--accent); width: 16px; height: 16px; }

._extracted-style-87lm { fill: var(--accent); width: 16px; height: 16px; }

._extracted-style-aDwd { fill: var(--accent); width: 16px; height: 16px; }