:root {
    /* New Palette: Purple-Blue Gradient Theme */
    --bg-gradient: linear-gradient(135deg, #1e0b36 0%, #2a0845 50%, #1e3a8a 100%);
    --bg-card: rgba(255, 255, 255, 0.05);
    /* Glassmorphism base */
    --bg-card-hover: rgba(255, 255, 255, 0.1);

    /* Primary Gradient for Buttons/Accents */
    --primary-gradient: linear-gradient(90deg, #7c3aed 0%, #2563eb 100%);
    --primary-gradient-hover: linear-gradient(90deg, #8b5cf6 0%, #3b82f6 100%);

    --secondary: #a855f7;
    /* Light Purple */

    --text-main: #ffffff;
    --text-muted: #e2e8f0;
    /* Light Gray/Lavender */
    --highlight: #60a5fa;
    /* Light Blue highlight */

    --border: rgba(255, 255, 255, 0.1);
    --container-width: 1200px;
    --font-main: 'Inter', sans-serif;

    /* Text Gradients */
    --gradient-text: linear-gradient(90deg, #c084fc 0%, #60a5fa 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-gradient);
    background-attachment: fixed;
    /* Ensures gradient covers full scroll */
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    /* More rounded as per modern gradient styles */
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
    /* Purple glow */
}

.btn-primary:hover {
    background: var(--primary-gradient-hover);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--secondary);
    color: var(--text-muted);
    padding: 6px 12px;
    font-size: 0.85rem;
    border-radius: 4px;
}

.btn-outline:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
}

.btn-xl {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

/* Header */
.header {
    background: rgba(30, 11, 54, 0.8);
    /* Dark purple tint */
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.highlight {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: white;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn-login {
    background: transparent;
    color: var(--text-main);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Modern Hero (Image Match) */
.hero-modern {
    margin-top: 60px;
    /* Space for fixed header if kept, or 0 if standalone */
    background: linear-gradient(135deg, rgba(123, 90, 255, 0.85) 0%, rgba(168, 85, 247, 0.85) 100%),
                url('hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Vivid Purple Gradient overlay on background image */
    padding: 20px 0 80px;
    text-align: center;
    position: relative;
    color: white;
}

.hero-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.hero-nav a {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: capitalize;
    transition: 0.3s;
}

.hero-nav a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.hero-modern-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.btn-play-now {
    background: #5b36ac;
    /* Darker purple button */
    color: white;
    font-size: 1.2rem;
    padding: 15px 50px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.btn-play-now:hover {
    background: #6d42cc;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Advantages & Info Section */
.advantages-section {
    padding: 80px 0;
    background: #130825;
    /* Dark background to contrast with hero */
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    transition: 0.3s;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--highlight);
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.info-card ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--text-muted);
}

.info-card li {
    margin-bottom: 8px;
}

/* Sections Common */
section {
    padding: 60px 0;
}

.section-tag {
    color: var(--highlight);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Bonus Block */
.bonus-section {
    background: rgba(0, 0, 0, 0.2);
    /* Slight darken for separation */
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.bonus-steps {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bonus-steps li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-num {
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.step-content strong {
    display: block;
    margin-bottom: 5px;
    color: white;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.bonus-image img {
    width: 100%;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.05);
}

/* Game Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cat-card {
    background: transparent;
    border-radius: 16px;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('categories-sprite.png');
    background-size: 200% 200%;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
    transform: scale(1.2);
    /* Optimized zoom: No gaps, no crop */
    transform-origin: center;
}

.cat-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.cat-card:hover::before {
    transform: scale(1.3);
}

/* Category Sprite Positions */
.cat-slots::before {
    background-image: url('slots-new.png');
    background-size: 100% 100%;
    /* Full image */
    background-position: center;
    transform: scale(1) !important;
    /* Reset zoom for this custom image */
}

.cat-live::before {
    background-image: url('live-casino-new.png');
    background-size: 100% 100%;
    background-position: center;
    transform: scale(1) !important;
}

.cat-table::before {
    background-image: url('table-games-new.png');
    background-size: 100% 100%;
    background-position: center;
    transform: scale(1) !important;
}

.cat-crash::before {
    background-image: url('crash-games-new.png');
    background-size: 100% 100%;
    background-position: center;
    transform: scale(1) !important;
}

.cat-card .cat-icon,
.cat-card h3 {
    display: none;
}

/* Exclusive Games */
.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.game-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-card:hover {
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(124, 58, 237, 0.4);
    border-color: var(--secondary);
}

.game-thumb {
    width: 100%;
    aspect-ratio: 1/1;
    display: block;
    background-image: url('games-sprite.jpg');
    background-size: 300% 200%;
    /* 3 columns, 2 rows */
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
    transform: scale(1.15);
    /* Zoom to center */
    transform-origin: center;
}

/* Sprite Positions */
.thumb-1 {
    background-position: 0% 0%;
}

/* Cyber Fortune */
.thumb-2 {
    background-position: 50% 0%;
}

/* Neon Rider */
.thumb-3 {
    background-position: 100% 0%;
}

/* Aztec Gold */
.thumb-4 {
    background-position: 0% 100%;
}

/* Live Roulette */
.thumb-5 {
    background-position: 50% 100%;
}

/* Space Gem */
.thumb-6 {
    background-position: 100% 100%;
}

/* Blackjack VIP */

.game-info {
    padding: 15px;
    background: linear-gradient(0deg, #1e0b36 0%, rgba(30, 11, 54, 0.8) 100%);
    position: absolute;
    bottom: 0;
    width: 100%;
}

.game-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: white;
}

.game-info span {
    font-size: 0.75rem;
    color: var(--highlight);
}

/* Sports Betting */
.sports-section {
    background: rgba(255, 255, 255, 0.02);
}

.sports-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.sports-image {
    flex: 1;
}

.sports-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sports-text {
    flex: 1;
}

.highlight-text {
    color: var(--highlight);
}

.sports-list {
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.sports-list li {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Payments */
.payments-section {
    text-align: center;
}

.payments-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.pay-method {
    background: var(--bg-card);
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.pay-method:hover {
    background: var(--bg-card-hover);
    border-color: var(--secondary);
    color: white;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Promotions Table */
.promotions-section {
    background: rgba(0, 0, 0, 0.2);
}

.promo-table-wrapper {
    overflow-x: auto;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid var(--border);
}

.promo-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.promo-table th {
    text-align: left;
    padding: 20px;
    color: white;
    border-bottom: 2px solid var(--border);
}

.promo-table td {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
}

.badge {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-right: 5px;
}

.badge.new {
    background: var(--primary-gradient);
    color: white;
}

/* Mobile App */
.app-card {
    background: linear-gradient(110deg, rgba(42, 8, 69, 0.9) 0%, rgba(30, 58, 138, 0.9) 100%);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.app-content h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: white;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-app {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-app:hover {
    background: white;
    color: #2a0845;
}

/* About Table */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    margin-top: 30px;
    border: 1px solid var(--border);
    border-radius: 8px;
    /* Added radius */
    overflow: hidden;
}

.about-item {
    background: rgba(20, 10, 40, 0.8);
    /* Dark purple semi-transparent */
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.about-item strong {
    color: var(--highlight);
}

.about-item span {
    color: var(--text-muted);
}

/* FAQ */
.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accordion-item.active .accordion-header::after {
    content: '-';
}

.accordion-content {
    padding: 0 20px 20px;
    display: none;
    color: var(--text-muted);
}

.accordion-item.active .accordion-content {
    display: block;
}

/* Footer */
.footer {
    background: #0f0518;
    /* Very dark purple/black */
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.link-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-col h4 {
    color: white;
    margin-bottom: 10px;
}

.link-col a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.link-col a:hover {
    color: var(--highlight);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Softer */
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.85rem;
}

.compliance-icons {
    display: flex;
    gap: 20px;
}

/* Responsive */
@media (max-width: 900px) {
    .header-content.mobile-active {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        background: #1e0b36;
        /* Solid background when active */
    }

    .header-content.mobile-active .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .header-content.mobile-active .auth-buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .hero-content,
    .bonus-grid,
    .sports-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        order: -1;
        margin-bottom: 30px;
    }

    .categories-grid {
        grid-template-columns: 1fr 1fr;
    }

    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links,
    .auth-buttons {
        display: none;
    }
}

@media (max-width: 600px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sports-list {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* SEO Text Block */
.seo-text-section {
    padding: 60px 0;
    background: transparent;
    border-bottom: 1px solid var(--border);
}

.seo-text-section h2 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
}

.seo-text-section p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 900px;
}


/* Esports Section */
.esports-section {
    padding: 80px 0;
    background: #0f0518;
    /* Darkest purple/black */
    border-bottom: 1px solid var(--border);
}

.esports-section h2 {
    font-style: italic;
    text-transform: uppercase;
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #fff, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.esports-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.esports-text p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.esports-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    list-style: none;
}

.esports-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--highlight);
    font-weight: 600;
}

.esports-list li::before {
    content: '•';
    color: var(--secondary);
    font-size: 1.5rem;
    line-height: 0;
}

.esports-image-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.esports-image-wrap img {
    width: 100%;
    display: block;
}

.esports-image-label {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
}

/* Esports Tabs */
.esports-tabs {
    display: flex;
    background: #1a0f2e;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
}

.tab-btn {
    flex: 1;
    padding: 15px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--bg-card-hover);
    color: white;
}

.tab-btn.active {
    background: white;
    color: #0f0518;
    font-weight: 800;
}

/* Dota Block (Game Spotlight) */
.game-spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 80px;
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 12px;
}

.teams-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.teams-grid li {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.teams-grid li::before {
    content: '•';
    color: var(--highlight);
    margin-right: 8px;
}

/* Types of Bets */
.bet-types-wrapper {
    background: rgba(20, 10, 40, 0.5);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.bet-types-list li {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.bet-types-list strong {
    color: white;
    color: var(--highlight);
}

/* Responsive adjustments for new blocks */
@media (max-width: 900px) {

    .esports-grid,
    .game-spotlight-grid {
        grid-template-columns: 1fr;
    }
}

/* Indian Games Section */
.indian-games-section {
    padding: 80px 0;
    background: transparent;
    /* Seamless integration */
    border-bottom: 1px solid var(--border);
}

.indian-games-section h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 30px;
}

.indian-game-block {
    margin-bottom: 40px;
}

.indian-game-block h3 {
    font-size: 1.5rem;
    color: var(--highlight);
    margin-bottom: 15px;
}

.indian-game-block p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
    max-width: 900px;
}


/* Classic Games Section */
.classic-games-section {
    padding: 80px 0;
    background: transparent;
    border-bottom: 1px solid var(--border);
}

.classic-game-block {
    margin-bottom: 40px;
}

.classic-game-block h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
}

.classic-game-block p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
    max-width: 900px;
}


/* How to Start Section */
.how-to-start-section {
    padding: 80px 0;
    background: #150a25;
    /* Slightly lighter than main bg for contrast */
    border-bottom: 1px solid var(--border);
}

.start-step-block {
    margin-bottom: 80px;
}

.start-step-block h2 {
    font-size: 2rem;
    color: white;
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 20px;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 1rem;
}

.steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter) ".";
    position: absolute;
    left: 0;
    color: var(--highlight);
    font-weight: 700;
}

.btn-start-betting {
    background: #2563eb;
    /* Bright blue from image */
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    text-transform: capitalize;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.btn-start-betting:hover {
    background: #3b82f6;
    transform: translateY(-2px);
}