/* General Styles */
:root {
    --bs-body-color: #fff;
    --bs-body-bg: #212529;
}
body {
    font-family: 'Mulish', sans-serif;
    background-color: #19191b;
    color: #e2e1e0;
    line-height: 1.7;
}

.wrapper {
    overflow-x: hidden;
}

.content-block {
    background-color: #2a2a2e;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 12px;
    border: 1px solid #3a3a3e;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.block-title {
    color: #d6a054;
    margin-bottom: 20px;
    border-bottom: 2px solid #d6a054;
    padding-bottom: 10px;
    font-weight: 700;
}

a {
    color: #e2e1e0;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #d6a054;
}

/* Buttons */
.btn-bonus {
    background-color: #d6a054;
    color: #060606;
    border: none;
    font-weight: bold;
    padding: 10px 25px;
    transition: all 0.3s ease;
}
.btn-bonus:hover {
    background-color: #c59043;
    color: #000;
    transform: translateY(-2px);
}

.btn-login {
    background-color: #e2e1e0;
    color: #060606;
    border: none;
    font-weight: bold;
    padding: 10px 25px;
    transition: all 0.3s ease;
}
.btn-login:hover {
    background-color: #ccc;
    color: #000;
}

/* Header */
.header-main {
    background-color: #060606;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1020;
    border-bottom: 2px solid #d6a054;
}
.logo-img {
    max-height: 120px;
    margin: -26px 0 -16px 0;
}
.online-players {
    color: #999;
}
#online-count {
    color: #d6a054;
    font-weight: bold;
}
.navbar-dark .navbar-nav .nav-link {
    color: #e2e1e0;
    font-weight: 700;
    margin: 0 10px;
}
.navbar-dark .navbar-nav .nav-link:hover {
    color: #d6a054;
}
.header-buttons-mobile {
    display: flex;
    gap: 10px;
}

/* Hero Section */
.hero-section {
    background: url('/img/hero-banner.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(6, 6, 6, 0.7);
}

/* Breadcrumbs */
.breadcrumb {
    background-color: transparent;
    padding: 0;
}
.breadcrumb-item a {
    color: #d6a054;
}
.breadcrumb-item.active {
    color: #999;
}

/* Content Styling */
.text-content h2, .text-content h3, .text-content h4 {
    color: #d6a054;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
}
.text-content p {
    margin-bottom: 1em;
}
.text-content ul, .text-content ol {
    padding-left: 25px;
    margin-bottom: 1em;
}
.text-content li {
    margin-bottom: 0.5em;
}
.text-content table {
    width: 100%;
    margin-bottom: 1.5em;
    border-collapse: collapse;
}
.text-content th, .text-content td {
    border: 1px solid #444;
    padding: 12px;
    text-align: left;
}
.text-content th {
    background-color: #333;
}
.text-content blockquote {
    border-left: 4px solid #d6a054;
    padding-left: 15px;
    margin: 1.5em 0;
    font-style: italic;
    color: #ccc;
}

/* Tables */
.table {
    border-color: #444;
}
.table-dark {
    --bs-table-bg: #222;
    --bs-table-striped-bg: #2a2a2e;
}

/* App Buttons */
.app-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.app-buttons .btn i {
    margin-right: 8px;
}

/* Pros & Cons */
.pros-cons-card {
    padding: 20px;
    border-radius: 8px;
    height: 100%;
}
.pros-cons-card.pros {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid #28a745;
}
.pros-cons-card.cons {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid #dc3545;
}
.pros-cons-card h4 {
    color: #fff;
}
.pros-cons-card ul {
    padding-left: 20px;
}

/* Cards (Bonuses, Tournaments) */
.card-item {
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.tournament-card .timer {
    font-weight: bold;
    color: #d6a054;
    margin: 10px 0;
}
.tournament-card .prize {
    font-size: 1.2em;
}

/* Game Cards */
.game-card {
    background-color: #333;
    padding: 10px;
    border-radius: 8px;
    transition: transform 0.2s;
}
.game-card:hover {
    transform: scale(1.05);
}
.game-card img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 10px;
}

/* Mini Game */
.slot-machine .reels {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 4rem;
    background-color: #111;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #d6a054;
}
.reel {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#slot-result {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 20px;
}

/* FAQ */
.accordion-item {
    background-color: #333;
    border: 1px solid #444;
}
.accordion-button {
    background-color: #3a3a3e;
    color: #e2e1e0;
}
.accordion-button:not(.collapsed) {
    background-color: #d6a054;
    color: #060606;
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-body {
    background-color: #2a2a2e;
}

/* Reviews */
.review-card {
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    height: 100%;
}
.review-author {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.review-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}
.review-card .stars {
    color: #d6a054;
}
.review-form-wrapper {
    background-color: #333;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}
.form-control {
    background-color: #19191b;
    border-color: #444;
    color: #e2e1e0;
}
.form-control:focus {
    background-color: #19191b;
    border-color: #d6a054;
    color: #e2e1e0;
    box-shadow: none;
}

/* Author */
.author-card {
    display: flex;
    gap: 20px;
    align-items: center;
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
}
.author-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.author-social a {
    font-size: 1.5rem;
    margin-right: 15px;
}

/* Footer */
.footer-main {
    background-color: #060606;
}
.footer-main a {
    color: #999;
}
.footer-main a:hover {
    color: #d6a054;
}
.payment-logos img, .provider-logos img {
    height: 25px;
    margin: 5px;
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.7;
}

/* Widget */
.registration-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #060606;
    padding: 15px 0;
    border-top: 2px solid #d6a054;
    z-index: 1000;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
}
.registration-widget span {
    font-weight: bold;
    color: #d6a054;
}

/* Unused WP-like styles */
.wp-block-button__link { color: #fff; }
.elementor-widget-container { margin: 0; }
.yoast-seo-breadcrumb { display: none; }

@media (max-width: 991.98px) {
    .header-buttons-mobile {
        display: flex !important;
    }
    .registration-widget {
        font-size: 0.9rem;
    }
    .registration-widget .btn {
        padding: 5px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .author-card {
        flex-direction: column;
        text-align: center;
    }
    .card-item, .review-card {
        margin-bottom: 20px;
    }
}
