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

body {
    font-family: 'Arial', sans-serif;
    background: #1a1a1a;
    color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0 auto;
}

/* Top Header */
.top-header {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid #2a2a2a;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 20px;
}

.logo-section .logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.center-nav {
    display: flex;
    gap: 30px;
}

.center-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.center-nav a:hover {
    color: #ff4757;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bonus-text-header {
    color: #fff;
    font-size: 13px;
    white-space: nowrap;
}

.btn-register,
.btn-login {
    background: #ff4757;
    color: #fff;
    border: none;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 3px;
}

.btn-register:hover,
.btn-login:hover {
    background: #ff3742;
}

/* Main Wrapper */
.main-wrapper {
    display: flex;
    margin-top: 60px;
}

/* Sidebar */
.sidebar {
    width: 200px;
    background: #2a2a2a;
    position: fixed;
    top: 60px;
    left: 0;
    height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    border-right: 1px solid #1a1a1a;
    z-index: 100;
}

.collapse-btn {
    background: #333;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 12px;
}

.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.3s;
}

.sidebar-nav a:hover {
    background: #333;
}

.sidebar-nav .icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.sidebar-footer {
    border-top: 1px solid #1a1a1a;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.support,
.language {
    color: #fff;
    font-size: 12px;
}

/* Main Content */
.main-content {
    margin-left: 200px;
    flex: 1;
    padding: 30px;
}

/* Promo Section */
.promo-section {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.promo-banner-left {
    background: #1e5f35;
    padding: 40px 50px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 0 0 400px;
}

.promo-text {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    line-height: 1.3;
}

.btn-claim {
    background: #ff4757;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-claim:hover {
    background: #ff3742;
}

.promo-banner-right {
    flex: 1;
    background: linear-gradient(135deg, #ff4757 0%, #1e5f35 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    position: relative;
    overflow: hidden;
}

.promo-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: auto;
    height: auto;
}

/* Filters Section */
.filters-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background: #2a2a2a;
    padding: 15px 20px;
    border-radius: 10px;
}

.filters-wrapper {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
}

.filters-wrapper::-webkit-scrollbar {
    display: none;
}

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

.filter-btn i {
    font-size: 12px;
}

.filter-btn:hover {
    background: #333;
}

.filter-btn.active {
    background: #ff4757;
    font-weight: bold;
}

.filter-arrow {
    background: #333;
    color: #fff;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 5px;
}

.filter-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-search {
    background: #333;
    color: #fff;
    border: none;
    padding: 8px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-providers {
    background: #444;
    color: #fff;
    border: none;
    padding: 8px 20px;
    font-size: 12px;
    cursor: pointer;
    border-radius: 5px;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.game-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

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

.game-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 15px 10px 10px;
}

.game-overlay h3 {
    font-size: 11px;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    line-height: 1.3;
}

/* SEO Content */
.seo-content {
    background: #fff;
    color: #333;
    padding: 50px 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.seo-content h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #333;
}

.seo-content h3 {
    font-size: 22px;
    margin: 30px 0 15px 0;
    color: #ff4757;
}

.seo-content h4 {
    font-size: 18px;
    margin: 25px 0 10px 0;
    color: #333;
}

.seo-content p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.seo-content ul {
    margin: 15px 0 15px 30px;
}

.seo-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.seo-content strong {
    color: #ff4757;
}

/* Responsive */
@media (max-width: 1024px) {
    .main-content {
        margin-left: 0;
        padding: 20px;
    }
    
    .sidebar {
        transform: translateX(-200px);
        transition: transform 0.3s;
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .promo-section {
        flex-direction: column;
    }
    
    .promo-banner-left {
        flex: 1;
    }
    
    .filters-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        height: auto;
        padding: 10px;
    }
    
    .center-nav {
        display: none;
    }
    
    .main-wrapper {
        margin-top: 100px;
    }
    
    .promo-text {
        font-size: 20px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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