/* Global Styles */
:root {
    --primary-color: #ffce00;
    --secondary-color: #ff6b00;
    --tertiary-color: #ff3b3b;
    --dark-bg: #111111;
    --darker-bg: #0a0a0a;
    --light-text: #ffffff;
    --gray-text: #9b9b9b;
    --card-bg: #1e1e1e;
    --hover-color: #ffb700;
    --border-color: #333333;
    --shadow-color: rgba(0, 0, 0, 0.5);
    --gradient-primary: linear-gradient(135deg, #ffce00, #ff6b00);
    --gradient-secondary: linear-gradient(135deg, #ff6b00, #ff3b3b);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark-bg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--shadow-color);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--light-text);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--shadow-color);
}

.btn-tertiary {
    background-color: var(--tertiary-color);
    color: var(--light-text);
}

.btn-tertiary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--shadow-color);
}

.btn-login {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-login:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.btn-signup {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.btn-signup:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.btn-large:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
}

.btn-outline-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-large:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

/* Header & Ticker */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.ticker-wrap {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--dark-bg);
    overflow: hidden;
    padding: 8px 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 2rem;
    font-weight: 600;
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.main-nav {
    background-color: var(--darker-bg);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    padding: 8px 15px;
    font-weight: 600;
    position: relative;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    content: '';
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 0;
    height: 2px;
    background-color: var(--primary-color);
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Main Layout */
main {
    display: flex;
    min-height: calc(100vh - 90px);
}

/* Sidebar */
.sidebar {
    width: 280px;
    min-width: 280px;
    background-color: var(--darker-bg);
    position: sticky;
    top: 90px;
    height: calc(100vh - 90px);
    overflow-y: auto;
    border-right: 1px solid var(--border-color);
    transition: all 0.3s ease;
    z-index: 900;
}

.sidebar-inner {
    padding: 20px;
}

.search-box {
    position: relative;
    margin-bottom: 20px;
}

.search-box input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border-radius: 4px;
    border: none;
    background-color: var(--card-bg);
    color: var(--light-text);
    font-size: 1rem;
}

.search-box button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray-text);
    cursor: pointer;
    font-size: 1.1rem;
}

.categories h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.categories ul li {
    margin-bottom: 10px;
}

.categories ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.categories ul li a:hover {
    background-color: var(--card-bg);
}

.categories ul li a i {
    margin-right: 10px;
    color: var(--primary-color);
}

.categories ul li a span {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Content Area */
.content {
    flex: 1;
    padding: 20px;
}

/* Home Content */
.hero-section {
    padding: 50px 0;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a, var(--dark-bg));
    border-radius: 8px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.hero-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--gray-text);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.features-section {
    padding: 40px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 25px 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--gray-text);
}

/* Games Preview */
.games-preview {
    padding: 40px 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.game-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.game-image {
    height: 200px;
    background-color: #333;
    position: relative;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.btn-play {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    font-weight: bold;
}

.game-card h3 {
    padding: 15px 15px 5px;
    font-size: 1.2rem;
}

.game-card p {
    padding: 0 15px 15px;
    color: var(--gray-text);
    font-size: 0.9rem;
}

.view-all {
    margin-top: 30px;
    text-align: center;
}

/* Testimonials */
.testimonials-section {
    padding: 40px 0;
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
    margin-bottom: 20px;
}

.testimonial {
    min-width: 100%;
    padding: 20px;
    transition: all 0.3s ease;
}

.testimonial-quote {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 8px;
    position: relative;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.testimonial-quote i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 5px;
    opacity: 0.7;
}

.testimonial-quote p {
    text-align: center;
    font-style: italic;
    margin: 10px 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
}

.testimonial-avatar i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.testimonial-author p {
    font-weight: 600;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.9)), url('') center/cover no-repeat;
    padding: 60px 20px;
    text-align: center;
    border-radius: 8px;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--light-text);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--darker-bg);
    padding: 60px 20px 20px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--gray-text);
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--card-bg);
    color: var(--light-text);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-5px);
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--gray-text);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.payment-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 2rem;
    color: var(--gray-text);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.float-btn {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    transition: all 0.3s ease;
}

.float-signup {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.float-login {
    background-color: var(--darker-bg);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.float-btn i {
    margin-right: 8px;
}

.float-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

/* Games Page Styles */
.games-hero {
    padding: 40px 20px;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a, var(--dark-bg));
    border-radius: 8px;
    margin-bottom: 40px;
}

.games-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.games-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    background-color: var(--card-bg);
    border: none;
    border-radius: 4px;
    color: var(--light-text);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h2 {
    margin-bottom: 0;
    text-align: left;
}

.section-header i {
    color: var(--primary-color);
    margin-right: 10px;
}

.sort-options select {
    padding: 8px 15px;
    background-color: var(--card-bg);
    color: var(--light-text);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
}

.games-grid-section {
    margin-bottom: 40px;
    scroll-margin-top: 100px;
}

.game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 2;
}

.game-badge.hot {
    background-color: #ff3b3b;
    color: white;
}

.game-badge.popular {
    background-color: #ffce00;
    color: var(--dark-bg);
}

.game-badge.jackpot {
    background-color: #6b00ff;
    color: white;
}

.game-badge.exclusive {
    background-color: #00ccff;
    color: var(--dark-bg);
}

.game-badge.vip {
    background-color: #ff00aa;
    color: white;
}

.game-badge.new {
    background-color: #00ff88;
    color: var(--dark-bg);
}

.game-badge.local {
    background-color: #ff6b00;
    color: white;
}

.game-provider {
    padding: 0 15px 15px;
    color: var(--gray-text);
    font-size: 0.8rem;
    font-style: italic;
}

.game-features-section {
    background-color: var(--card-bg);
    padding: 40px 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 40px;
}

.game-text {
    max-width: 700px;
    margin: 30px auto;
    text-align: center;
    font-size: 1.1rem;
}

.game-providers-section {
    margin-bottom: 40px;
    text-align: center;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.provider-logo {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.provider-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.game-filters {
    margin-top: 20px;
}

.game-filters h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group h4 {
    color: var(--light-text);
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-options label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.filter-options input {
    margin-right: 8px;
    cursor: pointer;
}

.filter-options span {
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* Blog Page Styles */
.blog-hero {
    padding: 40px 20px;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a, var(--dark-bg));
    border-radius: 8px;
    margin-bottom: 40px;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-categories ul li a i {
    margin-right: 10px;
    color: var(--primary-color);
}

.popular-posts {
    margin: 25px 0;
}

.popular-posts h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.sidebar-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-post {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.sidebar-post:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.sidebar-post-info h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

.sidebar-post-info p {
    font-size: 0.8rem;
    color: var(--gray-text);
}

.tags-cloud {
    margin-top: 25px;
}

.tags-cloud h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 5px 12px;
    background-color: var(--card-bg);
    border-radius: 20px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.featured-posts {
    margin-bottom: 40px;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.featured-post {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.featured-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.main-feature {
    grid-column: 1 / 3;
}

.post-image {
    height: 250px;
    background-color: #333;
}

.post-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.main-feature .post-image {
    height: 350px;
}

.post-content {
    padding: 20px;
}

.post-category {
    display: inline-block;
    padding: 3px 10px;
    background-color: var(--primary-color);
    color: var(--dark-bg);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.post-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.main-feature .post-content h3 {
    font-size: 1.5rem;
}

.post-content p {
    color: var(--gray-text);
    margin-bottom: 15px;
}

.post-meta {
    font-size: 0.8rem;
    color: var(--gray-text);
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.post-meta i {
    margin-right: 5px;
}

.blog-posts {
    margin-bottom: 40px;
    scroll-margin-top: 100px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.post-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.post-card .post-image {
    height: 180px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    padding-left: 5px;
}

.read-more i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

.section-footer {
    margin-top: 30px;
    text-align: center;
}

.share-story-section {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.9)), url('') center/cover no-repeat;
    padding: 40px 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
}

.share-story-content {
    max-width: 700px;
    margin: 0 auto;
}

.share-story-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.share-story-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--light-text);
}

.betting-insights {
    margin-bottom: 40px;
}

.odds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.odds-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.odds-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.match-header {
    margin-bottom: 15px;
}

.match-header h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.match-date {
    font-size: 0.8rem;
    color: var(--gray-text);
}

.teams {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.team {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.team-name {
    font-weight: 600;
}

.odds {
    font-weight: 700;
    color: var(--primary-color);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.draw {
    border-left: 2px solid var(--primary-color);
}

/* Promotions Page Styles */
.promotions-hero {
    padding: 40px 20px;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a, var(--dark-bg));
    border-radius: 8px;
    margin-bottom: 40px;
}

.promotions-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.promo-highlight {
    margin-bottom: 25px;
    background: var(--gradient-primary);
    border-radius: 8px;
    padding: 3px;
}

.promo-highlight-inner {
    background-color: var(--darker-bg);
    border-radius: 6px;
    padding: 20px;
    text-align: center;
}

.promo-highlight h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1rem;
}

.bonus-amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.bonus-amount span {
    font-size: 2rem;
}

.promo-highlight p {
    color: var(--gray-text);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.bonus-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--light-text);
}

.bonus-detail i {
    color: var(--primary-color);
}

.bonus-code {
    background-color: rgba(255, 206, 0, 0.1);
    border: 1px dashed var(--primary-color);
    padding: 8px;
    border-radius: 4px;
    margin: 15px 0;
}

.bonus-code p {
    margin: 0;
    font-size: 0.9rem;
}

.promo-categories {
    margin-bottom: 25px;
}

.promo-categories h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.promo-categories ul li {
    margin-bottom: 10px;
}

.promo-categories ul li a {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.promo-categories ul li a:hover {
    background-color: var(--card-bg);
    padding-left: 15px;
}

.promo-categories ul li a i {
    margin-right: 10px;
    color: var(--primary-color);
}

.help-box {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    margin-top: 25px;
}

.help-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.help-box p {
    color: var(--gray-text);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.help-option {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    color: var(--light-text);
}

.help-option:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
}

.help-option i {
    margin-right: 10px;
    color: var(--primary-color);
}

.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.bonus-title {
    display: flex;
    align-items: center;
}

.bonus-title i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-right: 15px;
}

.bonus-title h2 {
    margin: 0;
    text-align: left;
}

.bonus-tag {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.bonus-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
}

.main-bonus {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.95)), url('') center/cover no-repeat;
    border: none;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.bonus-content {
    display: flex;
    gap: 30px;
}

.bonus-info {
    flex: 2;
}

.bonus-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-image img {
	height: 100%;
	width: 100%;
	object-fit: contain;
}

.bonus-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.bonus-info p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--light-text);
}

.bonus-details {
    margin-bottom: 25px;
}

.bonus-details li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.bonus-details li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.bonus-buttons {
    display: flex;
    gap: 15px;
}

.bonus-amount-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 206, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 206, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 206, 0, 0);
    }
}

.bonus-amount-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bonus-percentage {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-bg);
    line-height: 1;
}

.bonus-plus {
    font-size: 1.5rem;
    color: var(--dark-bg);
    margin: 5px 0;
}

.bonus-spins {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-bg);
}

.promotions-grid {
    margin-bottom: 40px;
}

.promotions-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.promo-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 25px;
    position: relative;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.promo-icon {
    background-color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.promo-icon i {
    font-size: 1.5rem;
    color: var(--dark-bg);
}

.promo-content h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.promo-subtitle {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.promo-content p {
    color: var(--gray-text);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.promo-time {
    position: absolute;
    top: 25px;
    right: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--gray-text);
}

.festival-tag {
    position: absolute;
    top: 0;
    right: 25px;
    background-color: var(--tertiary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 0 0 8px 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.promo-card.festival {
    padding-top: 35px;
}

.festival-prizes, .gadget-prizes {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.prize, .gadget {
    text-align: center;
    flex: 1;
}

.prize i, .gadget i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.prize span, .gadget span {
    font-size: 0.9rem;
    font-weight: 600;
}

.prize i.gold {
    color: gold;
}

.prize i.silver {
    color: silver;
}

.prize i.bronze {
    color: #cd7f32;
}

.vip-program {
    margin-bottom: 40px;
}

.vip-intro {
    max-width: 800px;
		margin-bottom: 30px;
}

.vip-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.vip-tier {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.vip-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.tier-header {
    padding: 20px;
    text-align: center;
}

.tier-header.bronze {
    background: linear-gradient(135deg, #cd7f32, #e7b382);
}

.tier-header.silver {
    background: linear-gradient(135deg, #c0c0c0, #e5e5e5);
}

.tier-header.gold {
    background: linear-gradient(135deg, #ffd700, #ffeb99);
}

.tier-header.platinum {
    background: linear-gradient(135deg, #e5e5e5, #ffffff);
}

.tier-icon {
    font-size: 2rem;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.tier-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-bg);
}

.tier-benefits {
    padding: 20px;
}

.tier-benefits ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.tier-benefits ul li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.vip-footer {
    text-align: center;
}

.loyalty-points {
    margin-bottom: 40px;
}

.loyalty-content {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.points-conversion {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.conversion-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.conversion-value, .conversion-reward {
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.conversion-value {
    color: var(--primary-color);
    font-weight: 600;
}

.earning-rates h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.earning-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.earning-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.loyalty-shop {
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.loyalty-shop h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.shop-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.shop-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.shop-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.item-points {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.item-name {
    font-size: 0.9rem;
}

.bonus-calendar {
    margin-bottom: 40px;
}

.calendar-wrapper {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.calendar-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-nav {
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--light-text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.current-month {
    font-size: 1.2rem;
    font-weight: 600;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.calendar-day {
    text-align: center;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    min-height: 60px;
    position: relative;
}

.day-header {
    font-weight: 600;
}

.day-event {
    position: absolute;
    bottom: 5px;
    left: 5px;
    right: 5px;
    font-size: 0.7rem;
    padding: 2px;
    border-radius: 2px;
    text-align: center;
}

.day-event.reload {
    background-color: #00ccff;
    color: var(--dark-bg);
}

.day-event.freespin {
    background-color: #ff6b00;
    color: white;
}

.day-event.cashback {
    background-color: #00ff88;
    color: var(--dark-bg);
}

.day-event.tournament {
    background-color: #ff00aa;
    color: white;
}

.day-event.special {
    background-color: #6b00ff;
    color: white;
}

.calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.legend-color {
    width: 15px;
    height: 15px;
    border-radius: 2px;
    margin-right: 5px;
}

.legend-color.reload {
    background-color: #00ccff;
}

.legend-color.freespin {
    background-color: #ff6b00;
}

.legend-color.cashback {
    background-color: #00ff88;
}

.legend-color.tournament {
    background-color: #ff00aa;
}

.legend-color.special {
    background-color: #6b00ff;
}

.calendar-footer {
    text-align: center;
    margin-top: 20px;
}

.terms-section {
    margin-bottom: 40px;
}

.terms-content {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.terms-item {
    margin-bottom: 25px;
}

.terms-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.terms-item p {
    margin-bottom: 10px;
}

.terms-item ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.terms-item ul li {
    margin-bottom: 5px;
}

/* Live Casino Page Styles */
.live-hero {
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 8px;
}

.live-video-bg {
    height: 400px;
    background-color: #1e1e1e;
    position: relative;
    overflow: hidden;
}

.live-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.live-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 0, 0, 0.7);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.pulse {
    display: inline-block;
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        opacity: 1;
    }
}

.live-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
		margin-bottom: 50px;
    z-index: 2;
    text-align: center;
}

.live-hero-content h1 {
    margin-bottom: 5px;
}

.live-hero-content h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.live-hero-content p {
    color: var(--light-text);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.live-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.live-categories {
    margin-bottom: 25px;
}

.live-categories h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.live-categories ul li {
    margin-bottom: 10px;
}

.live-categories ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.live-categories ul li a:hover {
    background-color: var(--card-bg);
}

.live-categories ul li a i {
    margin-right: 10px;
    color: var(--primary-color);
}

.live-tag {
    background-color: rgba(255, 0, 0, 0.7);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
}

.dealer-languages, .betting-limits, .live-providers {
    margin-bottom: 25px;
}

.dealer-languages h3, .betting-limits h3, .live-providers h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.language-options, .limit-options, .provider-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.language-options label, .limit-options label, .provider-options label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.language-options input, .limit-options input, .provider-options input {
    margin-right: 8px;
    cursor: pointer;
}

.language-options span, .limit-options span, .provider-options span {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.live-status {
    margin-top: 25px;
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 15px;
}

.live-status h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.status-counter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-online {
    color: #00ff88;
    font-size: 0.8rem;
    animation: pulse-animation 2s infinite;
}

.player-count {
    color: var(--light-text);
    font-weight: 700;
    font-size: 1.2rem;
}

.status-text {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.featured-live-games {
    margin-bottom: 40px;
}

.live-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.live-tab {
    padding: 8px 15px;
    background-color: var(--card-bg);
    border: none;
    border-radius: 4px;
    color: var(--light-text);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.live-tab.active, .live-tab:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.live-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.live-game-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.live-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.live-game-image {
    height: 180px;
    background-color: #333;
    position: relative;
    overflow: hidden;
}

.live-game-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.live-game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.live-game-card:hover .live-game-overlay {
    opacity: 1;
}

.live-indicator {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(255, 0, 0, 0.7);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.live-players {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

.live-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 2;
}

.live-badge.bangla {
    background-color: #ff6b00;
    color: white;
}

.live-badge.vip {
    background-color: #ff00aa;
    color: white;
}

.live-game-info {
    padding: 15px;
}

.live-game-info h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.game-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.game-detail {
    font-size: 0.8rem;
    color: var(--gray-text);
}

.provider-name {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.live-game-category {
    margin-bottom: 40px;
		margin-top: 40px;
    scroll-margin-top: 100px;
}

.category-header {
    margin-bottom: 20px;
}

.category-header h2 {
    text-align: left;
    margin-bottom: 10px;
}

.category-header p {
    color: var(--gray-text);
    max-width: 800px;
}

.how-to-play {
    margin-bottom: 40px;
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 250px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
}

.step-content h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.step-content p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.live-faq {
    margin: 40px 0;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.faq-item {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--gray-text);
    border-top: 1px solid var(--border-color);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.live-cta {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.9)), url('') center/cover no-repeat;
    padding: 60px 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 40px;
}

.cta-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Sportsbook Page Styles */
.sports-hero {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 8px;
}

.sports-hero-bg {
    height: 300px;
    background-color: #1e1e1e;
    position: relative;
    overflow: hidden;
}

.sports-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
}

.sports-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    text-align: center;
}

.sports-hero-content h1 {
    margin-bottom: 5px;
}

.sports-hero-content h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.sports-hero-content p {
    color: var(--light-text);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sports-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.sports-menu {
    margin-bottom: 25px;
}

.sports-menu h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.sports-menu ul li {
    margin-bottom: 10px;
}

.sports-menu ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.sports-menu ul li a.active,
.sports-menu ul li a:hover {
    background-color: var(--card-bg);
}

.sports-menu ul li a i {
    margin-right: 10px;
    color: var(--primary-color);
}

.sports-menu ul li a span {
    background-color: var(--card-bg);
    color: var(--gray-text);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.betting-type {
    margin-bottom: 25px;
}

.betting-type h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.bet-type-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bet-type-options label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.bet-type-options input {
    margin-right: 10px;
    cursor: pointer;
}

.bet-slip {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid var(--border-color);
}

.bet-slip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.bet-slip-header h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0;
}

.bet-count {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.bet-slip-empty {
    text-align: center;
    padding: 20px 0;
    color: var(--gray-text);
}

.bet-slip-empty i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.bet-slip-empty p {
    font-size: 0.9rem;
}

.bet-slip-footer {
    text-align: center;
    margin-top: 15px;
}

.betting-tabs {
    margin-bottom: 30px;
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 15px;
}

.betting-tabs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.betting-tab {
    background-color: transparent;
    border: none;
    color: var(--gray-text);
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.betting-tab.active, .betting-tab:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.featured-matches {
    margin-bottom: 40px;
}

.featured-matches-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.featured-matches-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.match-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    min-width: 300px;
    flex: 1;
}

.match-card.featured {
    min-width: 340px;
}

.match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.match-status {
    position: absolute;
    top: 0;
    right: 15px;
    transform: translateY(-50%);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
}

.match-status.live {
    background-color: var(--tertiary-color);
    animation: pulse-animation 2s infinite;
}

.match-status.upcoming {
    background-color: var(--secondary-color);
}

.match-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.match-tournament {
    font-size: 0.9rem;
    color: var(--gray-text);
    display: flex;
    align-items: center;
    gap: 5px;
}

.match-time {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.match-teams {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}

.match-teams .team {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.match-teams .team:last-child {
    align-items: flex-end;
}

.team-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.score {
    color: var(--primary-color);
    font-weight: 700;
}

.vs {
    font-size: 0.9rem;
    color: var(--gray-text);
}

.match-odds {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.odd-box {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.odd-box:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.odd-name {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-text);
    margin-bottom: 5px;
}

.odd-value {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
}

.match-footer {
    text-align: center;
}

.match-markets {
    position: absolute;
    right: 15px;
    bottom: 15px;
    font-size: 0.8rem;
    color: var(--gray-text);
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.slider-prev, .slider-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--card-bg);
    border: none;
    color: var(--light-text);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-prev:hover, .slider-next:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.sports-section {
    margin-bottom: 40px;
    scroll-margin-top: 100px;
}

.sports-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sport-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sport-title i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.sport-title h2 {
    margin: 0;
    font-size: 1.5rem;
}

.sports-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-filter {
    background-color: transparent;
    border: none;
    color: var(--gray-text);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-filter:hover {
    color: var(--primary-color);
}

.btn-view-all {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--gray-text);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.matches-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.mobile-testimonials {
	margin: 40px 0;
}

.live-scores {
    margin: 40px 0;
}

.score-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.score-filter {
    background-color: var(--card-bg);
    border: none;
    color: var(--light-text);
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.score-filter.active, .score-filter:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.live-scores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.score-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid var(--border-color);
}

.score-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.score-sport {
    font-size: 0.9rem;
    color: var(--gray-text);
    display: flex;
    align-items: center;
    gap: 5px;
}

.score-time {
    font-size: 0.9rem;
    color: var(--tertiary-color);
    font-weight: 600;
}

.score-tournament {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.score-teams {
    margin-bottom: 10px;
}

.score-team {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.team-score {
    font-weight: 700;
    color: var(--primary-color);
}

.score-status {
    font-size: 0.9rem;
    color: var(--gray-text);
    text-align: center;
    padding-top: 10px;
    border-top: 1px dashed var(--border-color);
}

.betting-guide {
    margin-bottom: 40px;
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.guide-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.guide-step {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 250px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
}

.step-content h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.step-content p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.guide-cta {
    text-align: center;
    margin-top: 30px;
}

.betting-stats {
    margin-bottom: 40px;
}

.stats-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.stats-tab {
    background-color: var(--card-bg);
    border: none;
    color: var(--light-text);
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.stats-tab.active, .stats-tab:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.stats-content {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid var(--border-color);
}

.stats-header {
    margin-bottom: 15px;
}

.stats-header h3 {
    font-size: 1.2rem;
}

.stats-table {
    overflow-x: auto;
}

.stats-table table {
    width: 100%;
    border-collapse: collapse;
}

.stats-table th, .stats-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.stats-table th {
    color: var(--primary-color);
    font-weight: 600;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Mobile Page Styles */
.mobile-hero {
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 8px;
}

.mobile-devices {
    height: 400px;
    background-color: #1e1e1e;
    position: relative;
    overflow: hidden;
}

.mobile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.mobile-hero-content {
    position: absolute;
		margin-bottom: 60px;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    text-align: center;
}

.mobile-hero-content h1 {
    margin-bottom: 5px;
}

.mobile-hero-content h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.mobile-hero-content p {
    color: var(--light-text);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.app-download {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
}

.app-download h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-align: center;
}

.app-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.app-btn.android {
    background-color: #a4c639;
    color: white;
}

.app-btn.ios {
    background-color: #000;
    color: white;
}

.app-btn i {
    font-size: 1.5rem;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
}

.app-btn-text span {
    font-size: 0.7rem;
    line-height: 1;
}

.app-btn-text strong {
    font-size: 1rem;
}

.app-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.qr-code {
    text-align: center;
}

.qr-code p {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin-bottom: 10px;
}

.qr-placeholder {
    width: 120px;
    height: 120px;
    background-color: white;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-placeholder i {
    font-size: 3rem;
    color: #333;
}

.mobile-categories {
    margin-bottom: 25px;
}

.mobile-categories h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.mobile-categories ul li {
    margin-bottom: 10px;
}

.mobile-categories ul li a {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-categories ul li a:hover {
    background-color: var(--card-bg);
    padding-left: 15px;
}

.mobile-categories ul li a i {
    margin-right: 10px;
    color: var(--primary-color);
}

.mobile-stats {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid var(--border-color);
}

.mobile-stats h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-weight: 700;
    font-size: 1.2rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-text);
}

.devices-section {
    margin-bottom: 40px;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.device-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.device-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.device-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.device-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.device-card p {
    color: var(--gray-text);
    margin-bottom: 15px;
}

.device-specs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.device-specs span {
    font-size: 0.9rem;
    color: var(--primary-color);
    background-color: rgba(255, 206, 0, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
}

.app-features {
	margin-bottom: 40px;
}
.mobile-games {
	margin-bottom: 40px;
}

.mobile-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.mobile-game-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.mobile-game-card .game-image {
    height: 180px;
    background-color: #333;
    position: relative;
    width: 100%;
}

.mobile-game-card .game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-game-card:hover .game-overlay {
    opacity: 1;
}

.mobile-game-card h3 {
    padding: 15px 15px 5px;
    font-size: 1.2rem;
}

.mobile-game-card .game-provider {
    padding: 0 15px;
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.rating {
    padding: 0 15px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.rating span {
    font-weight: 600;
}

.mobile-exclusive {
    margin-bottom: 40px;
}

.mobile-bonus-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.95)), url('') center/cover no-repeat;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.bonus-details {
    flex: 2;
    padding: 30px;
}

.bonus-details h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.bonus-value {
    margin-bottom: 20px;
}

.bonus-percent {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.bonus-up-to {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-left: 10px;
}

.bonus-details p {
    margin-bottom: 20px;
    color: var(--gray-text);
}

.bonus-code-mobile {
    background-color: rgba(255, 206, 0, 0.1);
    border: 1px dashed var(--primary-color);
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: inline-block;
}

.bonus-code-mobile span {
    color: var(--gray-text);
    margin-right: 10px;
}

.bonus-code-mobile strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.bonus-terms {
    margin-bottom: 25px;
}

.bonus-terms li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.bonus-terms li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.bonus-image {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bonus-badge {
    position: absolute;
    top: 40px;
    right: -20px;
    background-color: var(--tertiary-color);
    color: white;
    padding: 5px 15px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.9rem;
}

.other-bonuses {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.bonus-item {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border: 1px solid var(--border-color);
}

.bonus-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 206, 0, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.bonus-content {
    flex: 1;
}

.bonus-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.bonus-content p {
    color: var(--gray-text);
    font-size: 0.95rem;
}

.install-guide {
    margin-bottom: 40px;
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.installation-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.install-tab {
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--light-text);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.install-tab.active, .install-tab:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
}

.install-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.install-step {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.install-cta {
    text-align: center;
}

.mobile-cta-section {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.9)), url('') center/cover no-repeat;
    padding: 60px 20px;
    text-align: center;
    border-radius: 8px;
}

.mobile-cta-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mobile-cta-section p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.app-download-buttons.large {
    flex-direction: row;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.app-download-buttons.large .app-btn {
    flex: 1;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .sidebar {
        width: 240px;
        min-width: 240px;
    }
    
    h1 {
        font-size: 2.4rem;
    }

		.calendar-grid {
			grid-template-columns: repeat(5, 1fr);
		}
    
    h2 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 768px) {
    .main-nav .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--darker-bg);
        padding: 20px;
        z-index: 1000;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

		.mobile-bonus-card {
			flex-direction: column;
		}
    
    .main-nav .nav-links.active {
        display: flex;
        flex-direction: column;
    }
    
    .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
        z-index: 1001;
    }

		.bonus-content {
			flex-direction: column;
		}
    
    main {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        min-width: 100%;
        height: auto;
        position: relative;
        top: 0;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .sidebar-inner {
        padding: 15px;
    }
    
    .categories ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .categories ul li {
        margin-bottom: 0;
    }
    
    .categories ul li a {
        padding: 8px 12px;
        background-color: var(--card-bg);
    }
    
    .categories ul li a span {
        margin-left: 10px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }

		.calendar-grid {
			grid-template-columns: repeat(3, 1fr);
		}
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .games-grid, .features-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    
    /* Fix testimonial slider on mobile */
    .testimonial-slider {
        overflow: hidden;
        width: 100%;
        position: relative;
    }
    
    .testimonial {
        min-width: 100%;
        transition: transform 0.5s ease;
    }
    
    /* Improve game cards on mobile */
    .game-image {
        height: 180px;
    }
    
    .game-card {
        margin-bottom: 15px;
    }
    
    /* Fix mobile navigation */
    body.menu-open .nav-links {
        display: flex;
    }
}

@media screen and (max-width: 480px) {
    .auth-buttons .btn {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-section {
        padding: 30px 0;
    }
    
    .btn {
        padding: 10px 16px;
    }
    
    .games-grid, .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .payment-icons {
        justify-content: center;
    }
    
    /* Fix for mobile menu toggle */
    .menu-toggle {
        padding: 10px;
    }
    
    /* Improve mobile navigation */
    .nav-links.active {
        max-height: calc(100vh - 90px);
        overflow-y: auto;
    }
    
    .nav-links a {
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    /* Fix game images on mobile */
    .game-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Fix testimonials on mobile */
    .testimonial-slider {
        margin: 0 -15px;
        width: calc(100% + 30px);
    }
    
    .testimonial {
        padding: 0 15px;
    }
    
    /* Fix game tabs on mobile */
    .games-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tab-btn {
        margin-bottom: 10px;
    }
    
    /* Fix mobile menu */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        width: 40px;
    }
} 

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000000;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #ffff00;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #cccc00;
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #ffff00 #000000;
}

/* Payment Page Styles */
.payment-methods-section {
    margin-bottom: 40px;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.payment-method-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.payment-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.payment-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
}

.payment-logo.bkash {
    background: linear-gradient(135deg, #e2136e, #b9006e);
    color: white;
}

.payment-logo.nagad {
    background: linear-gradient(135deg, #fe9b01, #f26522);
    color: white;
}

.payment-logo.rocket {
    background: linear-gradient(135deg, #8c288c, #69136a);
    color: white;
}

.payment-logo.usdt {
    background: linear-gradient(135deg, #26a17b, #1a6851);
    color: white;
}

.payment-logo.card {
    background: linear-gradient(135deg, #1a1f71, #0a1045);
    color: white;
}

.payment-logo i {
    font-size: 1.5rem;
}

.payment-details {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.payment-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.payment-info:last-child {
    margin-bottom: 20px;
}

.payment-info span:first-child {
    color: var(--gray-text);
}

.payment-info span:last-child {
    font-weight: 600;
    color: var(--primary-color);
}

.btn-payment {
    display: block;
    background-color: var(--primary-color);
    color: var(--dark-bg);
    text-align: center;
    padding: 12px;
    font-weight: 600;
    width: 100%;
}

.btn-payment:hover {
    background-color: var(--hover-color);
}

.security-section {
    margin-bottom: 40px;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.security-feature {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.security-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.security-feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.security-feature h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.security-feature p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.payment-tips {
    margin-bottom: 40px;
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tip {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid var(--border-color);
}

.tip i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.tip h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.tip p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

