body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
}

/* Header Styles */
.header {
    background-color: #2d2d2d;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    position: relative;
}

.logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.header-right {
    display: flex;
    gap: 15px;
}

.btn-login {
    background-color: #1a1a1a;
    color: white;
    border: 1px solid #fd8701;
    padding: 12px 24px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background-color: #2a2a2a;
    border-color: #fd8701;
    transform: translateY(-1px);
}

.btn-register {
    background: linear-gradient(90deg, #FEA744, #FFD29E);
    color: #1a1a1a;
    border: none;
    padding: 12px 24px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(254, 167, 68, 0.3);
}

.btn-register:hover {
    background: linear-gradient(90deg, #FFD29E, #FEA744);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(254, 167, 68, 0.4);
}

/* Main Container */
.main-container {
    margin-top: 70px;
    margin-left: 250px;
    min-height: calc(100vh - 70px);
}

/* Sidebar Styles */
.sidebar {
    width: 250px;
    background-color: #2d2d2d;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: fixed;
    top: 70px;
    left: 0;
    height: calc(100vh - 70px);
    overflow-y: auto;
    z-index: 999;
}

.sidebar-top {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-wheel {
    background-color: #8b5cf6;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s;
}

.btn-wheel:hover {
    background-color: #7c3aed;
}

.btn-register-sidebar {
    background-color: #ff6b35;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s;
}

.btn-register-sidebar:hover {
    background-color: #e55a2b;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-item {
    color: white;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.3s;
    font-size: 14px;
}

.nav-item:hover {
    background-color: #333;
}

.nav-item i {
    width: 20px;
    text-align: center;
}

.nav-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.tournament-box {
    background-color: #fbbf24;
    color: #1a1a1a;
    padding: 15px;
    border-radius: 8px;
    margin-top: auto;
}

.tournament-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    margin-bottom: 8px;
}

.countdown {
    font-size: 12px;
    font-weight: bold;
}

/* Main Content */
.main-content {
    padding: 20px;
    background-color: #1a1a1a;
    max-width: 1576px;
    margin: 0 auto;
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, #065f46, #047857);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    height: 400px;
}

.promo-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}

.promo-text h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

.promo-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #e5e7eb;
}

.btn-bonus {
    background: linear-gradient(90deg, #FEA744, #FFD29E);
    color: #1a1a1a;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(254, 167, 68, 0.3);
}

.btn-bonus:hover {
    background: linear-gradient(90deg, #FFD29E, #FEA744);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(254, 167, 68, 0.4);
}

.promo-image {
    position: relative;
    width: 200px;
    height: 200px;
}

.character {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    position: absolute;
    top: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.character::before {
    content: "👨‍💼";
    font-size: 80px;
}

.money-notes {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="40">💵</text></svg>') no-repeat center;
    background-size: contain;
    animation: float 3s ease-in-out infinite;
}

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

/* Filters */
.filters {
    margin-bottom: 30px;
}

.primary-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.filter-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.filter-btn.shop {
    background-color: #3b82f6;
    color: white;
}

.filter-btn.wheel {
    background-color: #ff6b35;
    color: white;
}

.filter-btn.cashback {
    background-color: #10b981;
    color: white;
}

.filter-btn.tournaments {
    background-color: #3b82f6;
    color: white;
}

.secondary-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.filter-btn-small {
    background-color: #333;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s;
}

.filter-btn-small:hover {
    background-color: #444;
}

.view-all {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    color: #9ca3af;
    font-size: 14px;
}

.nav-arrow {
    background-color: #333;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.nav-arrow:hover {
    background-color: #444;
}

/* Games Section */
.games-section {
    margin-bottom: 30px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    color: white;
    margin: 0;
}

.view-all-btn {
    background-color: #333;
    color: white;
    border: 1px solid #555;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.view-all-btn:hover {
    background-color: #444;
}

.games-grid {
    display: grid;
    grid-template-columns: 402px repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    height: 485px;
    overflow-x: auto;
}

.game-card {
    background-color: #2d2d2d;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.game-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    font-size: 14px;
    color: white;
    text-align: center;
    font-weight: normal;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    margin: 0;
}

.game-card:hover h3 {
    opacity: 1;
}

/* Game overlay on hover */
.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 16px;
    z-index: 10;
    backdrop-filter: blur(2px);
}

.game-card:hover .game-overlay,
.relative:hover .game-overlay {
    opacity: 1;
}

.game-play-btn {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.game-play-btn:hover {
    background: linear-gradient(135deg, #e55a2b, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.game-play-btn i {
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.game-demo-btn {
    background: rgba(45, 45, 45, 0.9);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.game-demo-btn:hover {
    background: rgba(60, 60, 60, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.game-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    text-align: center;
}

.game-title {
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 6px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.game-provider {
    color: #b0b0b0;
    font-size: 13px;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* First game card - large size */
.game-card:first-child {
    grid-column: 1;
    grid-row: span 2;
}

.game-card:first-child h3 {
    font-size: 18px;
    padding: 20px;
}

/* Enhanced hover effects for game cards */
.relative:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.relative:hover img {
    transform: scale(1.05);
    filter: blur(1px);
}

/* Mobile responsive styles for game overlay */
@media (max-width: 768px) {
    .game-overlay {
        border-radius: 12px;
    }
    
    .game-play-btn {
        padding: 10px 20px;
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .game-demo-btn {
        display: none; /* Hide demo button on mobile */
    }
    
    .game-title {
        font-size: 9px;
        margin-bottom: 3px;
    }
    
    .game-provider {
        font-size: 10px;
    }
    
    .game-info {
        bottom: 12px;
        left: 12px;
        right: 12px;
    }
}

@media (max-width: 480px) {
    .game-play-btn {
        padding: 8px 16px;
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .game-demo-btn {
        display: none; /* Hide demo button on small mobile */
    }
    
    .game-title {
        font-size: 9px;
        margin-bottom: 2px;
    }
    
    .game-provider {
        font-size: 9px;
    }
    
    .game-info {
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
}

/* Additional styles for very small game cards */
@media (max-width: 400px) {
    .game-play-btn {
        padding: 6px 12px;
        font-size: 11px;
        margin-bottom: 5px;
    }
    
    .game-demo-btn {
        display: none; /* Hide demo button on very small screens */
    }
    
    .game-title {
        font-size: 9px;
        margin-bottom: 1px;
    }
    
    .game-provider {
        font-size: 8px;
    }
    
    .game-info {
        bottom: 8px;
        left: 8px;
        right: 8px;
    }
}

/* Styles for small game cards in slider */
.hot-game-slide .game-overlay,
.regular-game-slide .game-overlay {
    padding: 8px;
}

.hot-game-slide .game-play-btn,
.regular-game-slide .game-play-btn {
    padding: 8px 16px;
    font-size: 12px;
    margin-bottom: 6px;
}

.hot-game-slide .game-demo-btn,
.regular-game-slide .game-demo-btn {
    padding: 5px 10px;
    font-size: 10px;
    margin-bottom: 10px;
}

.hot-game-slide .game-title,
.regular-game-slide .game-title {
    font-size: 9px;
    margin-bottom: 2px;
}

.hot-game-slide .game-provider,
.regular-game-slide .game-provider {
    font-size: 9px;
}

.hot-game-slide .game-info,
.regular-game-slide .game-info {
    bottom: 10px;
    left: 10px;
    right: 10px;
}


/* Text Content Container */
.text-content-container {
    margin-top: 40px;
    margin-bottom: 40px;
}

.text-content {
    background-color: #2d2d2d;
    padding: 30px;
    border-radius: 12px;
    color: #ffffff;
    line-height: 1.6;
}

.text-content h1 {
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 0;
}

.text-content h2 {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 18px;
    margin-top: 25px;
}

.text-content h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: 20px;
}

.text-content h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    margin-top: 15px;
}

.text-content h5 {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 12px;
}

.text-content h6 {
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
    margin-top: 10px;
}

.text-content p {
    margin-bottom: 15px;
    color: #e5e7eb;
}

.text-content a {
    color: #3b82f6;
    text-decoration: none;
}

.text-content a:hover {
    text-decoration: underline;
}

.text-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
    list-style-type: disc;
}

.text-content ol {
    margin-bottom: 15px;
    padding-left: 20px;
    list-style-type: decimal;
}

.text-content li {
    margin-bottom: 8px;
    color: #e5e7eb;
    line-height: 1.5;
}

.text-content ul li {
    list-style-type: disc;
    margin-left: 5px;
}

.text-content ol li {
    list-style-type: decimal;
    margin-left: 5px;
}

.bonus-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
}

.bonus-table th,
.bonus-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.bonus-table th {
    background-color: #1a1a1a;
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
}

.bonus-table td {
    color: #e5e7eb;
    font-size: 14px;
}

.bonus-table tbody tr {
    background-color: #2a2a2a;
}

.bonus-table tbody tr:nth-child(even) {
    background-color: #2d2d2d;
}

.bonus-table tbody tr:hover {
    background-color: #3a3a3a;
}

.bonus-table tbody tr:last-child td {
    border-bottom: none;
}

/* FAQ Container */
.faq-container {
    margin-top: 40px;
    margin-bottom: 40px;
}

.faq-content {
    background-color: #2d2d2d;
    padding: 30px;
    border-radius: 12px;
    color: #ffffff;
}

.faq-content h2 {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    margin-top: 0;
}

.faq-item {
    border-bottom: 1px solid #444;
    margin-bottom: 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #3b82f6;
}

.faq-question h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 24px;
    font-weight: bold;
    color: #3b82f6;
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    color: #e5e7eb;
    margin: 0 0 20px 0;
    padding-bottom: 20px;
    line-height: 1.6;
}

/* Reviews Container */
.reviews-container {
    margin-top: 40px;
    margin-bottom: 40px;
}

.reviews-content {
    background-color: #2d2d2d;
    padding: 30px;
    border-radius: 12px;
    color: #ffffff;
}

.reviews-content h2 {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    margin-top: 0;
}

/* Review Item */
.review-item {
    background-color: #3a3a3a;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #444;
}

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

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.reviewer-details h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 5px 0;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #666;
    font-size: 16px;
}

.star.filled {
    color: #fbbf24;
}

.review-date {
    color: #9ca3af;
    font-size: 14px;
}

.review-text p {
    color: #e5e7eb;
    line-height: 1.6;
    margin: 0;
}

/* Add Review Form */
.add-review-form {
    background-color: #3a3a3a;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #444;
}

.add-review-form h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: #2d2d2d;
    border: 1px solid #555;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group textarea::placeholder {
    color: #9ca3af;
}

/* Rating Input */
.rating-input {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.star-input {
    font-size: 24px;
    color: #666;
    cursor: pointer;
    transition: color 0.2s ease;
}

.star-input:hover,
.star-input.active {
    color: #fbbf24;
}

.submit-review-btn {
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-review-btn:hover {
    background: linear-gradient(90deg, #1d4ed8, #1e40af);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Footer */
.footer {
    background-color: #1d1d1d;
    padding: 40px 20px;
    margin-top: 40px;
    border-radius: 12px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-company .company-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-info,
.footer-help {
    justify-self: end;
}

.footer-info {
    margin-left: auto;
}

.footer-help {
    margin-left: auto;
}

.age-restriction {
    width: 30px;
    height: 30px;
    background-color: white;
    color: black;
    border: 2px solid black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.footer-logo svg {
    width: 40px;
    height: 40px;
}

.company-description {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.footer-title {
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 0;
}

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

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3b82f6;
}

.footer-links a[href^="mailto:"] {
    color: #3b82f6;
}

/* Chat Button */
.chat-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #ff6b35;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s;
    z-index: 1000;
}

.chat-btn:hover {
    background-color: #e55a2b;
    transform: scale(1.1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    margin-right: 8px;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: #ff6b35;
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.mobile-overlay.active {
    display: block;
}

/* Desktop optimizations */
@media (min-width: 1200px) and (max-width: 1400px) {
    /* Header adjustments for 1366px screens */
    .header {
        padding: 12px 20px;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .btn-login, .btn-register {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    /* Main content adjustments */
    .main-content {
        padding: 15px;
        max-width: 1200px;
    }
    
    /* Sidebar adjustments */
    .sidebar {
        width: 220px;
        padding: 15px;
    }
    
    /* Promo banner adjustments */
    .promo-banner {
        height: 350px;
        padding: 25px;
    }
    
    .promo-text h1 {
        font-size: 42px;
    }
    
    .promo-text p {
        font-size: 16px;
    }
    
    /* Game cards adjustments */
    .hot-game-slide .game-play-btn,
    .regular-game-slide .game-play-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .hot-game-slide .game-title,
    .regular-game-slide .game-title {
        font-size: 12px;
    }
    
    .hot-game-slide .game-provider,
    .regular-game-slide .game-provider {
        font-size: 10px;
    }
}

@media (min-width: 1401px) and (max-width: 1600px) {
    /* Header adjustments for larger screens */
    .header {
        padding: 15px 25px;
    }
    
    .logo-img {
        height: 34px;
    }
    
    .btn-login, .btn-register {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    /* Main content adjustments */
    .main-content {
        padding: 20px;
        max-width: 1400px;
    }
    
    /* Sidebar adjustments */
    .sidebar {
        width: 250px;
        padding: 20px;
    }
    
    /* Game cards adjustments for larger screens */
    .hot-game-slide .game-play-btn,
    .regular-game-slide .game-play-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .hot-game-slide .game-title,
    .regular-game-slide .game-title {
        font-size: 14px;
    }
    
    .hot-game-slide .game-provider,
    .regular-game-slide .game-provider {
        font-size: 11px;
    }
}

/* Medium desktop screens - fix sidebar spacing */
@media (min-width: 1401px) and (max-width: 1919px) {
    /* Ensure proper spacing from sidebar */
    .main-container {
        margin-left: 250px;
    }
    
    .sidebar {
        width: 250px;
    }
    
    /* Add padding to main content to prevent merging */
    .main-content {
        padding: 20px;
        max-width: 1400px;
    }
    
    /* Ensure all content blocks have proper spacing */
    .promo-banner,
    .hot-games,
    .regular-games,
    .text-content-container,
    .faq-container {
        margin-left: 0;
        margin-right: 0;
    }
}


/* Extra large screens */
@media (min-width: 1920px) {
    .main-content {
        max-width: 1600px;
        padding: 25px;
    }
    
    .sidebar {
        width: 280px;
        padding: 25px;
    }
    
    .main-container {
        margin-left: 280px;
    }
    
    .promo-banner {
        height: 450px;
        padding: 35px;
    }
    
    .promo-text h1 {
        font-size: 52px;
    }
    
    .promo-text p {
        font-size: 20px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header adjustments */
    .header {
        padding: 10px 15px;
        position: relative;
        z-index: 1000;
    }
    
    .mobile-menu-btn {
        display: block;
        font-size: 18px;
        padding: 6px;
        margin-right: 6px;
    }
    
    .header-right {
        gap: 10px;
    }
    
    .btn-login, .btn-register {
        padding: 10px 18px;
        font-size: 12px;
    }
    
    /* Main container */
    .main-container {
        margin-top: 0px;
        margin-left: 0;
    }
    
    /* Sidebar mobile styles */
    .sidebar {
        position: fixed;
        top: 70px;
        left: -300px;
        width: 300px;
        height: calc(100vh - 70px);
        background-color: #2d2d2d;
        z-index: 999;
        transition: left 0.3s ease;
        overflow-y: auto;
        padding: 20px;
        flex-direction: column;
    }
    
    .sidebar.active {
        left: 0;
    }
    
    .sidebar-top {
        margin-bottom: 15px;
    }
    
    .sidebar-nav {
        flex-direction: column;
        gap: 4px;
        margin-bottom: 15px;
    }
    
    .sidebar-nav .nav-item {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .sidebar-top .btn-wheel,
    .sidebar-top .btn-register-sidebar {
        padding: 10px 12px;
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .tournament-box {
        margin-top: auto;
        margin-left: 0;
        min-width: auto;
    }
    
    /* Main content */
    .main-content {
        width: 100%;
        max-width: none;
        padding: 15px;
    }
    
    /* Promo banner mobile */
    .promo-banner {
        padding: 20px;
        margin-bottom: 20px;
        height: 300px;
    }
    
    .promo-content {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
        height: 100%;
    }
    
    .promo-text h1 {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .promo-text p {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .promo-image {
        width: 150px;
        height: 150px;
        margin-top: 15px;
    }
    
    .character {
        width: 120px;
        height: 120px;
        top: 15px;
        right: 15px;
    }
    
    .character::before {
        font-size: 60px;
    }
    
    /* Filters mobile */
    .filters {
        margin-bottom: 20px;
    }
    
    .primary-filters {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .filter-btn {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .secondary-filters {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .filter-btn-small {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .view-all {
        justify-content: center;
        margin-top: 10px;
    }
    
    /* Games section mobile */
    .games-section {
        margin-bottom: 20px;
    }
    
    .section-header {
        margin-bottom: 15px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .view-all-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    
    
    /* Text content mobile */
    .text-content-container {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .text-content {
        padding: 20px;
    }
    
    .text-content h1 {
        font-size: 22px;
        margin-top: 0;
    }
    
    .text-content h2 {
        font-size: 20px;
        margin-top: 20px;
    }
    
    .text-content h3 {
        font-size: 18px;
        margin-top: 15px;
    }
    
    .text-content h4,
    .text-content h5,
    .text-content h6 {
        font-size: 16px;
        margin-top: 12px;
    }
    
    .text-content p {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .text-content ul,
    .text-content ol {
        padding-left: 15px;
    }
    
    .text-content li {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .bonus-table {
        font-size: 12px;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }
    
    .bonus-table th,
    .bonus-table td {
        padding: 8px 10px;
        white-space: nowrap;
    }
    
    /* FAQ mobile */
    .faq-container {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .faq-content {
        padding: 20px;
    }
    
    .faq-content h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .faq-question {
        padding: 15px 0;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-icon {
        font-size: 20px;
        margin-left: 10px;
    }
    
    .faq-item.active .faq-answer {
        max-height: 300px;
    }
    
    .faq-answer p {
        font-size: 14px;
        padding-bottom: 15px;
    }
    
    /* Reviews mobile */
    .reviews-container {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .reviews-content {
        padding: 20px;
    }
    
    .reviews-content h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .review-item {
        padding: 15px;
    }
    
    .review-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .reviewer-info {
        gap: 10px;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .reviewer-details h4 {
        font-size: 14px;
    }
    
    .star {
        font-size: 14px;
    }
    
    .review-date {
        font-size: 12px;
    }
    
    .add-review-form {
        padding: 20px;
    }
    
    .add-review-form h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group input[type="text"],
    .form-group textarea {
        padding: 10px;
        font-size: 14px;
    }
    
    .star-input {
        font-size: 20px;
    }
    
    .submit-review-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    /* Footer mobile */
    .footer {
        padding: 30px 15px;
        margin-top: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-info,
    .footer-help {
        justify-self: stretch;
        margin-left: 0;
    }
    
    .footer-company .company-info {
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .age-restriction {
        width: 25px;
        height: 25px;
        font-size: 10px;
    }
    
    .footer-logo svg {
        width: 35px;
        height: 35px;
    }
    
    .company-description {
        font-size: 13px;
    }
    
    .footer-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    /* Chat button mobile */
    .chat-btn {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        font-size: 20px;
    }
    
    /* Hide scrollbar but keep functionality */
    .games-section::-webkit-scrollbar {
        height: 4px;
    }
    
    .games-section::-webkit-scrollbar-track {
        background: #333;
        border-radius: 2px;
    }
    
    .games-section::-webkit-scrollbar-thumb {
        background: #ff6b35;
        border-radius: 2px;
    }
    
    .games-section::-webkit-scrollbar-thumb:hover {
        background: #e55a2b;
    }
}

@media (max-width: 480px) {
    /* Header for very small screens */
    .header {
        padding: 8px 10px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo-img {
        height: 28px;
    }
    
    .mobile-menu-btn {
        font-size: 16px;
        padding: 5px;
        margin-right: 5px;
    }
    
    .btn-login, .btn-register {
        padding: 8px 16px;
        font-size: 11px;
    }
    
    /* Sidebar for very small screens */
    .sidebar {
        width: 280px;
        left: -280px;
        padding: 60px 15px 15px 15px;
    }
    
    /* Main content for very small screens */
    .main-content {
        padding: 10px;
    }
    
    /* Promo banner for very small screens */
    .promo-banner {
        padding: 15px;
        margin-bottom: 15px;
        height: 250px;
    }
    
    .promo-text h1 {
        font-size: 24px;
        margin-bottom: 6px;
    }
    
    .promo-text p {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .promo-image {
        width: 120px;
        height: 120px;
        margin-top: 10px;
    }
    
    .character {
        width: 100px;
        height: 100px;
        top: 10px;
        right: 10px;
    }
    
    .character::before {
        font-size: 50px;
    }
    
    /* Filters for very small screens */
    .filter-btn {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .filter-btn-small {
        padding: 5px 10px;
        font-size: 10px;
    }
    
    /* Games for very small screens */
    .section-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .view-all-btn {
        padding: 5px 10px;
        font-size: 11px;
    }
    
    
    /* Chat button for very small screens */
    .chat-btn {
        width: 45px;
        height: 45px;
        bottom: 10px;
        right: 10px;
        font-size: 18px;
    }
}
