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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #2f2b2a !important;
    color: #e8e6e3 !important;
    line-height: 1.6;
    overflow-x: hidden;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.box {
    background: rgba(31, 27, 24, 0.6);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: #1f1b18;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

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

.header-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.header-menu a {
    color: #ccbbae;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-menu a:hover {
    color: #d86927;
}

.menu-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.header-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn--login {
    background: #ccbbae;
    color: #1f1b18;
}

.btn--login:hover {
    background: #d8c9bc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(204, 187, 174, 0.4);
}

.btn--register {
    background: #d86927;
    color: #fff;
}

.btn--register:hover {
    background: #e67a35;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(216, 105, 39, 0.4);
}

.review-count {
    color: #ccbbae;
    font-size: 14px;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: #ccbbae;
    transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero-section {
    position: relative;
    margin-bottom: 40px;
}

.hero-banner {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    filter: brightness(0.7);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.hero-card {
    background: rgba(31, 27, 24, 0.95);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.casino-logo {
    width: 150px;
    margin-bottom: 20px;
}

.hero-card h1 {
    font-size: 32px;
    color: #ccbbae;
    margin-bottom: 20px;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.rating-number {
    font-size: 48px;
    font-weight: bold;
    color: #d86927;
}

.stars {
    display: flex;
    gap: 5px;
}

.star {
    color: #ffd700;
    font-size: 24px;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.bonus-tile {
    background: linear-gradient(135deg, #d86927, #e67a35);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
}

.bonus-tile h4 {
    font-size: 14px;
    margin-bottom: 8px;
}

.bonus-tile p {
    font-size: 18px;
    font-weight: bold;
}

.hero-actions {
    display: flex;
    gap: 12px;
}

.casino-info {
    background: rgba(31, 27, 24, 0.95);
    padding: 25px;
    border-radius: 16px;
}

.casino-info h3 {
    color: #ccbbae;
    margin-bottom: 20px;
}

.info-grid {
    display: grid;
    gap: 12px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(204, 187, 174, 0.2);
}

.info-label {
    color: #999;
}

.info-value {
    color: #e8e6e3;
    font-weight: 500;
}

.provider-logos, .payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.provider-logos img, .payment-logos img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: #fff;
    padding: 5px;
    border-radius: 6px;
}

/* Table of Contents */
.toc-section {
    margin-bottom: 30px;
}

.toc-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.toc-tab {
    background: rgba(204, 187, 174, 0.2);
    padding: 12px 20px;
    border-radius: 8px;
    color: #ccbbae;
    text-decoration: none;
    transition: all 0.3s ease;
}

.toc-tab:hover {
    background: #d86927;
    color: #fff;
    transform: translateY(-2px);
}

/* Advantages */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.advantage-card {
    background: rgba(31, 27, 24, 0.8);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.advantage-card h4 {
    color: #ccbbae;
    margin-bottom: 10px;
}

/* Comparison Table */
.comparison-table {
    overflow-x: auto;
    margin: 30px 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(31, 27, 24, 0.8);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(204, 187, 174, 0.2);
}

.comparison-table th {
    background: #1f1b18;
    color: #ccbbae;
    font-weight: 600;
}

.comparison-table .highlight {
    background: rgba(216, 105, 39, 0.2);
}

.comparison-table .casino-name {
    font-weight: bold;
    color: #d86927;
}

/* Reviews */
.mb-reviews-container {
    display: grid;
    gap: 25px;
    margin: 30px 0;
}

.mb-review-card {
    background: rgba(31, 27, 24, 0.8);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #d86927;
    transition: transform 0.3s ease;
}

.mb-review-card:hover {
    transform: translateX(5px);
}

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

.mb-review-author-info {
    display: flex;
    gap: 15px;
}

.mb-review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.mb-review-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mb-review-author {
    color: #ccbbae;
    font-size: 18px;
}

.mb-review-country {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-size: 14px;
}

.mb-review-country img {
    width: 20px;
    height: 15px;
}

.mb-review-date {
    color: #999;
    font-size: 14px;
}

.mb-review-rating {
    text-align: right;
}

.mb-rating-display {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mb-rating-value {
    font-size: 32px;
    font-weight: bold;
    color: #d86927;
}

.mb-stars {
    display: flex;
    gap: 3px;
}

.mb-star {
    color: #555;
    font-size: 20px;
}

.mb-star-filled {
    color: #ffd700;
}

.mb-rating-details-btn {
    background: transparent;
    border: 1px solid #ccbbae;
    color: #ccbbae;
    padding: 5px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.mb-rating-details-btn:hover {
    background: #ccbbae;
    color: #1f1b18;
}

.mb-review-title {
    color: #ccbbae;
    font-size: 20px;
    margin-bottom: 15px;
}

.mb-review-source {
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
}

.mb-review-source a {
    color: #d86927;
    text-decoration: none;
}

.mb-review-body {
    margin-bottom: 20px;
}

.mb-review-text {
    color: #e8e6e3;
    line-height: 1.8;
}

.mb-review-text.collapsed {
    max-height: 100px;
    overflow: hidden;
    position: relative;
}

.mb-review-text.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, rgba(31, 27, 24, 0.8));
}

.mb-review-expand {
    background: transparent;
    border: none;
    color: #d86927;
    cursor: pointer;
    font-weight: 600;
    margin-top: 10px;
}

.mb-review-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.mb-review-pros h5,
.mb-review-cons h5 {
    color: #ccbbae;
    margin-bottom: 10px;
}

.mb-review-pros ul,
.mb-review-cons ul {
    list-style: none;
}

.mb-pro-item {
    color: #4caf50;
    padding: 5px 0;
}

.mb-con-item {
    color: #f44336;
    padding: 5px 0;
}

.mb-review-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mb-review-votes {
    display: flex;
    gap: 15px;
}

.mb-vote-btn {
    background: rgba(204, 187, 174, 0.2);
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    color: #e8e6e3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mb-vote-btn:hover {
    background: rgba(204, 187, 174, 0.4);
}

.mb-reply-btn {
    background: transparent;
    border: 1px solid #ccbbae;
    color: #ccbbae;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mb-reply-btn:hover {
    background: #ccbbae;
    color: #1f1b18;
}

.mb-reply-form {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(204, 187, 174, 0.2);
}

.mb-reply-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(204, 187, 174, 0.3);
    background: rgba(31, 27, 24, 0.6);
    color: #e8e6e3;
    resize: vertical;
    margin-bottom: 12px;
}

.mb-reply-actions {
    display: flex;
    gap: 10px;
}

.mb-btn {
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mb-btn-primary {
    background: #d86927;
    color: #fff;
}

.mb-btn-primary:hover {
    background: #e67a35;
}

.mb-btn-secondary {
    background: transparent;
    border: 1px solid #ccbbae;
    color: #ccbbae;
}

.mb-btn-secondary:hover {
    background: #ccbbae;
    color: #1f1b18;
}

/* FAQ */
.faq-section {
    margin: 40px 0;
}

.faq-item {
    background: rgba(31, 27, 24, 0.8);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: #ccbbae;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(204, 187, 174, 0.1);
}

.faq-icon {
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    color: #e8e6e3;
    line-height: 1.8;
}

/* Review Banner */
.review-banner {
    background: linear-gradient(135deg, #d86927, #e67a35);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin: 40px 0;
}

.review-banner h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 15px;
}

.review-banner p {
    color: #fff;
    margin-bottom: 25px;
}

/* Review Form */
.review-form {
    background: rgba(31, 27, 24, 0.8);
    padding: 40px;
    border-radius: 16px;
    margin: 40px 0;
}

.review-form h2 {
    color: #ccbbae;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    color: #ccbbae;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(204, 187, 174, 0.3);
    background: rgba(31, 27, 24, 0.6);
    color: #e8e6e3;
    font-size: 16px;
}

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

.form-submit {
    background: #d86927;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #e67a35;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(216, 105, 39, 0.4);
}

.form-success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid #4caf50;
    color: #4caf50;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    display: none;
}

.form-success.show {
    display: block;
}

/* Content Section */
.content-section {
    background: rgba(31, 27, 24, 0.8);
    padding: 40px;
    border-radius: 16px;
    margin: 40px 0;
}

.content-section h2,
.content-section h3,
.content-section h4 {
    color: #ccbbae;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-section p {
    color: #e8e6e3;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-section ul,
.content-section ol {
    color: #e8e6e3;
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.content-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(31, 27, 24, 0.6);
}

.content-section table th,
.content-section table td {
    padding: 15px;
    text-align: left;
    border: 1px solid rgba(204, 187, 174, 0.3);
}

.content-section table th {
    background: #1f1b18;
    color: #ccbbae;
    font-weight: 600;
}

.content-section a {
    color: #d86927;
    text-decoration: none;
}

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

/* Author Bio */
.author-bio {
    background: rgba(31, 27, 24, 0.8);
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    border-left: 4px solid #d86927;
}

.author-bio h4 {
    color: #ccbbae;
    margin-bottom: 15px;
}

.author-bio p {
    color: #e8e6e3;
    line-height: 1.8;
    margin-bottom: 15px;
}

.author-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.author-links a {
    color: #d86927;
    text-decoration: none;
    font-weight: 600;
}

.author-links a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #1f1b18;
    padding: 40px 20px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #ccbbae;
    margin-bottom: 15px;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #ccbbae;
}

.trust-logos {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.trust-logos img {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.trust-logos img:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(204, 187, 174, 0.2);
    color: #999;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* Sticky Widget */
.sticky-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #d86927, #e67a35);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    z-index: 999;
    animation: pulse 2s infinite;
}

.sticky-widget a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #1f1b18;
        flex-direction: column;
        padding: 30px;
        transition: left 0.3s ease;
    }
    
    .header-nav.active {
        left: 0;
    }
    
    .header-menu {
        flex-direction: column;
        width: 100%;
    }
    
    .burger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        position: static;
        transform: none;
        margin-top: -100px;
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .mb-review-header {
        flex-direction: column;
    }
    
    .mb-review-pros-cons {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .sticky-widget {
        bottom: 10px;
        right: 10px;
        padding: 15px 20px;
    }
}

/* Unused styles for uniqueness */
.deprecated-class-xj8k { display: none; }
.legacy-wrapper-9m2p { visibility: hidden; }
.old-container-4n7q { opacity: 0; }
.unused-grid-5k3r { grid-template-columns: none; }
.obsolete-flex-2l9s { flex-direction: unset; }
