:root {
    --primary-color: #121212;
    --secondary-color: #1c1c1c;
    --accent-color: #d0ff00;
    --text-color: #ffffff;
    --text-secondary: #a0a0a0;
    --sidebar-width: 250px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.sidebar {
    background-color: var(--secondary-color);
    width: var(--sidebar-width);
    position: fixed;
    height: 100%;
    left: 0;
    top: 0;
    padding-top: 20px;
    z-index: 100;
    transition: all 0.3s;
    overflow-y: auto;
}

.content {
    margin-left: var(--sidebar-width);
    padding: 20px;
    transition: all 0.3s;
}

.logo {
    color: var(--accent-color);
    font-style: italic;
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
    padding: 20px 0;
}

.menu-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    color: var(--text-color);
    transition: all 0.2s;
}

.menu-item:hover {
    background-color: rgba(255,255,255,0.1);
    color: var(--accent-color);
}

.menu-item.active {
    background-color: rgba(255,255,255,0.1);
    color: var(--accent-color);
    border-left: 3px solid var(--accent-color);
}

.menu-item i {
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.badge {
    background-color: var(--accent-color);
    color: black;
    border-radius: 10px;
    padding: 2px 8px;
    font-size: 0.8em;
    margin-left: auto;
}

.game-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.game-image {
    height: 180px;
    background: linear-gradient(135deg, #333 0%, #444 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-weight: bold;
    position: relative;
}

.game-provider {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0,0,0,0.7);
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.7em;
}

.game-info {
    padding: 15px;
}

.game-title {
    font-weight: 600;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-details {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.9em;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
}

.btn {
    background-color: var(--accent-color);
    color: black;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #333;
}

th {
    font-weight: 600;
    color: var(--accent-color);
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.faq-question {
    font-weight: 600;
    margin-bottom: 10px;
}

.header-mobile {
    display: none;
    background-color: var(--secondary-color);
    padding: 15px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99;
}

.mobile-menu-btn {
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .content {
        margin-left: 0;
        margin-top: 60px;
    }
    
    .header-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .mobile-logo {
        color: var(--accent-color);
        font-style: italic;
        font-weight: 700;
        font-size: 1.5rem;
    }
}
.table {
    overflow: auto;
}
.banner {
    background: url('/assets/img/banner.webp') no-repeat center / cover;
}

.game-1 {
    background: url('/assets/img/bookofdead.webp') no-repeat center / cover;
}

.game-2 {
    background: url('/assets/img/sweet.webp') no-repeat center / cover;
}
.game-3 {
    background: url('/assets/img/joker.webp') no-repeat center / cover;
}
.game-4 {
    background: url('/assets/img/valley.webp') no-repeat center / cover;
}
.game-5 {
    background: url('/assets/img/star.webp') no-repeat center / cover;
}
.game-6 {
    background: url('/assets/img/wolf.webp') no-repeat center / cover;
}
.game-7 {
    background: url('/assets/img/reactoonz.webp') no-repeat center / cover;
}
.game-8 {
    background: url('/assets/img/gonzos.webp') no-repeat center / cover;
}
.game-9 {
    background: url('/assets/img/viking.webp') no-repeat center / cover;
}
.game-10 {
    background: url('/assets/img/fruit.webp') no-repeat center / cover;
}

.bonus {
    background: url('/assets/img/bonus.webp') no-repeat center / cover;
}
.game-card {
    cursor: pointer;
}