@import url('https://fonts.googleapis.com/css2?family=Muller:wght@300;400;500;600;700&display=swap');

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

:root {
    --primary-bg: #212132;
    --header-bg: #252536;
    --accent-yellow: #ddc43a;
    --accent-red: #cd1935;
    --text-light: #ffffff;
    --text-muted: #b8b8b8;
    --card-bg: #2a2a3e;
    --border-color: #3a3a4e;
}

body {
    font-family: 'Muller', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.mb-header {
    background: var(--header-bg);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.mb-logo img {
    height: 45px;
    width: auto;
}

.mb-nav {
    display: flex;
    list-style: none;
    gap: 30px;
}

.mb-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mb-nav a:hover {
    color: var(--accent-yellow);
}

.mb-header-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

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

.mb-btn-yellow {
    background: var(--accent-yellow);
    color: #000;
}

.mb-btn-yellow:hover {
    background: #c9b235;
    transform: translateY(-2px);
}

.mb-btn-red {
    background: var(--accent-red);
    color: var(--text-light);
}

.mb-btn-red:hover {
    background: #b01529;
    transform: translateY(-2px);
}

/* Mobile Menu */
.mb-burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mb-burger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: 0.3s;
}

/* Hero Section */
.mb-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
}

.mb-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.mb-casino-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.mb-casino-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--accent-yellow);
}

.mb-casino-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mb-casino-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-weight: 700;
}

.mb-bonus-info {
    background: linear-gradient(135deg, var(--accent-red), #e02040);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.mb-bonus-info::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.mb-bonus-text {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-light);
}

.mb-bonus-subtext {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.mb-casino-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.mb-btn-large {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.mb-btn-large::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 ease;
}

.mb-btn-large:hover::before {
    left: 100%;
}

.mb-rating-summary {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.mb-overall-rating {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.mb-rating-score {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-yellow);
    display: block;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.mb-rating-stars {
    font-size: 24px;
    color: var(--accent-yellow);
    margin: 10px 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.mb-overall-rating p {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0 5px 0;
    color: var(--text-light);
}

.mb-overall-rating small {
    color: var(--text-muted);
    font-size: 14px;
}

.mb-rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mb-rating-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.mb-rating-row span:first-child {
    min-width: 70px;
    color: var(--text-muted);
}

.mb-rating-row span:last-child {
    min-width: 30px;
    text-align: right;
    color: var(--text-light);
    font-weight: 600;
}

.mb-rating-bar {
    flex: 1;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    margin: 0 15px;
    overflow: hidden;
    position: relative;
}

.mb-rating-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-yellow));
    transition: width 1s ease-in-out;
    border-radius: 4px;
}

/* Casino Info */
.mb-casino-info {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    border: 2px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.mb-casino-info h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: var(--text-light);
    font-weight: 600;
}

.mb-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
}

.mb-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.mb-info-item:hover {
    background-color: rgba(255,255,255,0.02);
}

.mb-info-label {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 15px;
}

.mb-info-value {
    font-weight: 600;
    text-align: right;
    color: var(--text-light);
    font-size: 15px;
    max-width: 200px;
}

/* Pros and Cons */
.mb-pros-cons {
    margin: 60px 0;
}

.mb-pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mb-pros, .mb-cons {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.mb-pros:hover, .mb-cons:hover {
    transform: translateY(-5px);
}

.mb-pros h3 {
    color: #4CAF50;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 600;
}

.mb-cons h3 {
    color: #f44336;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 600;
}

.mb-pros h3 span, .mb-cons h3 span {
    font-size: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

.mb-pros h3 span {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.mb-cons h3 span {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

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

.mb-pros li, .mb-cons li {
    padding: 12px 0;
    position: relative;
    padding-left: 30px;
    line-height: 1.5;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mb-pros li:last-child, .mb-cons li:last-child {
    border-bottom: none;
}

.mb-pros li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 12px;
    color: #4CAF50;
    font-weight: bold;
    font-size: 16px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
}

.mb-cons li::before {
    content: "✗";
    position: absolute;
    left: 0;
    top: 12px;
    color: #f44336;
    font-weight: bold;
    font-size: 16px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 67, 54, 0.1);
    border-radius: 50%;
}

/* Review Form */
.mb-review-form-section {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    border: 2px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.mb-review-form-section h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 28px;
    color: var(--text-light);
    font-weight: 600;
}

.mb-form-description {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.6;
}

.mb-bonus-banner {
    background: linear-gradient(135deg, var(--accent-yellow), #e6d147);
    color: #000;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.mb-bonus-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 4s infinite;
}

.mb-bonus-banner h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.mb-bonus-banner p {
    margin-bottom: 20px;
    font-size: 16px;
    opacity: 0.9;
}

.mb-form {
    display: grid;
    gap: 25px;
}

.mb-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.mb-form-group {
    display: flex;
    flex-direction: column;
}

.mb-form-label {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-light);
    font-size: 15px;
}

.mb-form-input, .mb-form-textarea {
    padding: 15px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: var(--primary-bg);
    color: var(--text-light);
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
}

.mb-form-input:focus, .mb-form-textarea:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 3px rgba(221, 196, 58, 0.1);
}

.mb-form-input::placeholder, .mb-form-textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.mb-form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.mb-rating-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.mb-rating-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    background: var(--primary-bg);
    border-radius: 10px;
    border: 2px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.mb-rating-input:hover {
    border-color: rgba(221, 196, 58, 0.5);
}

.mb-rating-input span:first-child {
    font-weight: 500;
    color: var(--text-light);
    font-size: 14px;
    min-width: 120px;
}

.mb-rating-stars-input {
    display: flex;
    gap: 8px;
}

.mb-star-input {
    font-size: 22px;
    color: var(--border-color);
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.mb-star-input:hover {
    color: var(--accent-yellow);
    transform: scale(1.1);
}

.mb-star-input.active {
    color: var(--accent-yellow);
    text-shadow: 0 0 8px rgba(221, 196, 58, 0.5);
}

.mb-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
}

.mb-form-checkbox input[type="checkbox"] {
    display: none;
}

.mb-checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.mb-form-checkbox input[type="checkbox"]:checked + .mb-checkmark {
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
}

.mb-form-checkbox input[type="checkbox"]:checked + .mb-checkmark::after {
    content: "✓";
    color: #000;
    font-weight: bold;
    font-size: 14px;
}

.mb-form-checkbox a {
    color: var(--accent-yellow);
    text-decoration: none;
}

.mb-form-checkbox a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.mb-faq-section {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    border: 2px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.mb-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.mb-faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 25px 0;
    transition: all 0.3s ease;
}

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

.mb-faq-item:hover {
    background: rgba(255,255,255,0.02);
    margin: 0 -20px;
    padding: 25px 20px;
    border-radius: 10px;
}

.mb-faq-question {
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    line-height: 1.4;
    transition: color 0.3s ease;
    user-select: none;
}

.mb-faq-question:hover {
    color: var(--accent-yellow);
}

.mb-faq-arrow {
    font-size: 16px;
    color: var(--accent-yellow);
    transition: transform 0.3s ease;
    margin-left: 15px;
    flex-shrink: 0;
}

.mb-faq-question.active .mb-faq-arrow {
    transform: rotate(180deg);
}

.mb-faq-answer {
    margin-top: 20px;
    line-height: 1.7;
    color: var(--text-muted);
    padding-left: 0;
    animation: fadeIn 0.3s ease;
}

.mb-faq-answer p {
    margin: 0;
    font-size: 15px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mb-faq-cta {
    margin-top: 40px;
    text-align: center;
}

.mb-faq-cta .mb-bonus-banner {
    background: linear-gradient(135deg, var(--accent-red), #e02040);
    color: var(--text-light);
}

.mb-faq-cta .mb-bonus-banner h3 {
    color: var(--text-light);
}

.mb-faq-cta .mb-bonus-banner p {
    color: rgba(255,255,255,0.9);
}

/* Success Message Styles */
.mb-success-message {
    animation: slideInFromTop 0.5s ease;
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Button Styles */
.mb-btn-small {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    min-width: 80px;
}

/* Form Validation Styles */
.mb-form-input:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #f44336;
    box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1);
}

.mb-form-input:valid:not(:focus):not(:placeholder-shown) {
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.mb-form-textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #f44336;
    box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1);
}

.mb-form-textarea:valid:not(:focus):not(:placeholder-shown) {
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

/* Loading State */
.mb-btn.loading {
    pointer-events: none;
    opacity: 0.7;
    position: relative;
}

.mb-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Reviews Section */
.mb-reviews-section {
    margin: 60px 0;
}

.mb-section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
}

.mb-section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mb-reviews-stats {
    margin-top: 50px;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 15px;
    border: 2px solid var(--border-color);
}

.mb-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
}

.mb-stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mb-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-yellow);
}

.mb-stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.mb-review-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mb-review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(221, 196, 58, 0.1), transparent);
    transition: left 0.5s ease;
}

.mb-review-card:hover::before {
    left: 100%;
}

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

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

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

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

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

.mb-review-author {
    font-weight: 600;
    color: var(--text-light);
}

.mb-review-country {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--text-muted);
}

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

.mb-review-date {
    font-size: 14px;
    color: var(--text-muted);
}

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

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

.mb-rating-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-yellow);
}

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

.mb-star {
    font-size: 18px;
    color: var(--border-color);
}

.mb-star-filled {
    color: var(--accent-yellow);
}

.mb-review-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-light);
}

.mb-review-source {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.mb-review-source a {
    color: var(--accent-yellow);
    text-decoration: none;
}

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

.mb-review-text {
    line-height: 1.7;
}

.mb-review-expand {
    background: none;
    border: none;
    color: var(--accent-yellow);
    cursor: pointer;
    font-weight: 600;
    margin-top: 10px;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.mb-review-expand:hover {
    color: #c9b235;
}

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

.mb-review-pros h5, .mb-review-cons h5 {
    margin-bottom: 10px;
    font-weight: 600;
}

.mb-review-pros h5 {
    color: #4CAF50;
}

.mb-review-cons h5 {
    color: #f44336;
}

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

.mb-pro-item {
    color: #4CAF50;
    padding: 3px 0;
}

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

.mb-review-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

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

.mb-vote-btn {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mb-vote-btn.voted {
    background: var(--accent-yellow);
    color: #000;
    border-color: var(--accent-yellow);
}

.mb-vote-btn.voted.mb-like-btn {
    background: #4CAF50;
    border-color: #4CAF50;
    color: white;
}

.mb-vote-btn.voted.mb-dislike-btn {
    background: #f44336;
    border-color: #f44336;
    color: white;
}

.mb-vote-btn:hover {
    background: var(--border-color);
}

.mb-reply-btn {
    background: none;
    border: 1px solid var(--accent-yellow);
    color: var(--accent-yellow);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mb-reply-btn:hover {
    background: var(--accent-yellow);
    color: #000;
}

.mb-reply-form {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.mb-reply-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--primary-bg);
    color: var(--text-light);
    font-family: inherit;
    resize: vertical;
    margin-bottom: 15px;
}

.mb-reply-form textarea:focus {
    outline: none;
    border-color: var(--accent-yellow);
}

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

.mb-btn-primary {
    background: var(--accent-yellow);
    color: #000;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mb-btn-primary:hover {
    background: #c9b235;
    transform: translateY(-1px);
}

.mb-btn-secondary {
    background: none;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mb-btn-secondary:hover {
    background: var(--border-color);
    color: var(--text-light);
}

.mb-rating-details-btn {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.mb-rating-details-btn:hover {
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
}

.mb-rating-details {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.mb-rating-details h5 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.mb-detailed-ratings {
    display: grid;
    gap: 12px;
}

.mb-rating-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.mb-rating-item span:first-child {
    color: var(--text-muted);
    font-size: 14px;
    min-width: 140px;
}

.mb-review-short, .mb-review-full {
    line-height: 1.7;
}

/* Comparison Table */
.mb-comparison-section {
    margin: 60px 0;
}

.mb-comparison-table {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    overflow-x: auto;
    animation: slideInUp 0.6s ease;
}

.mb-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.mb-table th, .mb-table td {
    padding: 20px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
    transition: all 0.3s ease;
}

.mb-table th {
    background: var(--header-bg);
    font-weight: 600;
    color: var(--text-light);
    font-size: 16px;
    position: relative;
}

.mb-table th:first-child {
    width: 25%;
}

.mb-table th:not(:first-child) {
    width: 25%;
    text-align: center;
}

.mb-table td {
    color: var(--text-light);
    font-size: 15px;
}

.mb-table td:first-child {
    font-weight: 500;
    background: rgba(255,255,255,0.02);
}

.mb-table td:not(:first-child) {
    text-align: center;
}

.mb-table tbody tr:hover {
    background: rgba(221, 196, 58, 0.05);
    transform: scale(1.01);
}

.mb-table tbody tr:hover td {
    color: var(--text-light);
}

.mb-editor-choice {
    background: linear-gradient(135deg, var(--accent-yellow), #e6d147);
    color: #000;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    margin-top: 5px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(221, 196, 58, 0.3);
}

.mb-highlight-green {
    color: #4CAF50;
    font-weight: 600;
    background: rgba(76, 175, 80, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
}

.mb-highlight-yellow {
    color: var(--accent-yellow);
    font-weight: 600;
    background: rgba(221, 196, 58, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
}

.mb-highlight-red {
    color: #f44336;
    font-weight: 600;
    background: rgba(244, 67, 54, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
}

.mb-check {
    color: #4CAF50;
    font-size: 18px;
    font-weight: bold;
}

.mb-cross {
    color: #f44336;
    font-size: 18px;
    font-weight: bold;
}

.mb-comparison-note {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border-left: 4px solid var(--accent-yellow);
}

.mb-comparison-note p {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.mb-comparison-note strong {
    color: var(--accent-yellow);
}

/* Video Section */
.mb-video-section {
    background: var(--card-bg);
    padding: 50px 40px;
    border-radius: 15px;
    margin: 60px 0;
    border: 2px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    animation: fadeInScale 0.8s ease;
}

.mb-video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    margin-bottom: 30px;
}

.mb-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.mb-video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mb-video-container:hover::before {
    opacity: 1;
}

.mb-video-description {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.mb-video-description h3 {
    color: var(--accent-yellow);
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.mb-video-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mb-video-description li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: var(--text-light);
    line-height: 1.5;
}

.mb-video-description li::before {
    content: "▶";
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--accent-red);
    font-size: 12px;
}

/* Author Section */
.mb-author-section {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    margin: 60px 0;
    border: 2px solid var(--border-color);
    display: flex;
    gap: 30px;
    align-items: flex-start;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    animation: slideInLeft 0.7s ease;
}

.mb-author-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-yellow), var(--accent-red));
}

.mb-author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-yellow);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    flex-shrink: 0;
}

.mb-author-info {
    flex: 1;
}

.mb-author-info h4 {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 600;
}

.mb-author-bio {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 15px;
}

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

.mb-author-links a {
    color: var(--accent-yellow);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid var(--accent-yellow);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mb-author-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-yellow);
    transition: left 0.3s ease;
    z-index: -1;
}

.mb-author-links a:hover::before {
    left: 0;
}

.mb-author-links a:hover {
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(221, 196, 58, 0.3);
}

/* Footer */
.mb-footer {
    background: var(--header-bg);
    padding: 40px 0 20px;
    margin-top: 60px;
}

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

.mb-footer-section h4 {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 18px;
}

.mb-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mb-footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mb-footer-links a:hover {
    color: var(--accent-yellow);
}

.mb-trust-logos {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.mb-footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* Floating Widget */
.mb-floating-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-red), #e02040);
    padding: 15px 25px;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    animation: pulse 2s infinite;
}

.mb-floating-widget a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .mb-container {
        padding: 0 15px;
    }
    
    .mb-nav {
        display: none;
    }
    
    .mb-burger {
        display: flex;
    }
    
    .mb-hero {
        padding: 40px 0;
    }
    
    .mb-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mb-pros-cons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mb-casino-card, .mb-rating-summary {
        padding: 25px;
    }
    
    .mb-casino-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .mb-btn-large {
        width: 100%;
        max-width: 250px;
    }
    
    .mb-info-grid {
        grid-template-columns: 1fr;
    }
    
    .mb-rating-score {
        font-size: 36px;
    }
    
    .mb-casino-info, .mb-pros, .mb-cons {
        padding: 20px;
    }
    
    .mb-review-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .mb-rating-display {
        justify-content: flex-start;
    }
    
    .mb-review-pros-cons {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .mb-review-actions {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .mb-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .mb-rating-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .mb-rating-item span:first-child {
        min-width: auto;
    }
    
    .mb-form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mb-rating-inputs {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .mb-rating-input {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 15px;
    }
    
    .mb-rating-input span:first-child {
        min-width: auto;
        font-size: 15px;
    }
    
    .mb-faq-question {
        font-size: 16px;
        line-height: 1.3;
    }
    
    .mb-faq-item:hover {
        margin: 0 -15px;
        padding: 25px 15px;
    }
    
    .mb-bonus-banner {
        padding: 20px;
    }
    
    .mb-bonus-banner h3 {
        font-size: 20px;
    }
    
    .mb-review-form-section,
    .mb-faq-section {
        padding: 25px;
    }
    
    .mb-comparison-table {
        margin: 0 -15px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    .mb-table th, .mb-table td {
        padding: 15px 10px;
        font-size: 14px;
    }
    
    .mb-table th:first-child,
    .mb-table td:first-child {
        width: 30%;
    }
    
    .mb-table th:not(:first-child),
    .mb-table td:not(:first-child) {
        width: 23.33%;
    }
    
    .mb-editor-choice {
        font-size: 9px;
        padding: 3px 6px;
    }
    
    .mb-btn-small {
        padding: 6px 12px;
        font-size: 12px;
        min-width: 70px;
    }
    
    .mb-video-section {
        padding: 30px 20px;
    }
    
    .mb-video-description {
        padding: 20px;
    }
    
    .mb-video-description h3 {
        font-size: 18px;
    }
    
    .mb-video-description li {
        font-size: 14px;
        padding: 6px 0;
    }
    
    .mb-author-section {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }
    
    .mb-author-avatar {
        width: 80px;
        height: 80px;
        align-self: center;
    }
    
    .mb-author-info h4 {
        font-size: 20px;
    }
    
    .mb-author-bio {
        font-size: 14px;
    }
    
    .mb-author-links {
        justify-content: center;
        gap: 15px;
    }
    
    .mb-author-links a {
        font-size: 13px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .mb-hero {
        padding: 30px 0;
    }
    
    .mb-casino-logo {
        width: 100px;
        height: 100px;
    }
    
    .mb-casino-card h2 {
        font-size: 24px;
    }
    
    .mb-bonus-text {
        font-size: 18px;
    }
    
    .mb-rating-score {
        font-size: 32px;
    }
    
    .mb-info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .mb-info-value {
        text-align: left;
        max-width: none;
    }
    
    .mb-review-card {
        padding: 20px;
    }
    
    .mb-review-author-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .mb-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .mb-stat-number {
        font-size: 24px;
    }
    
    .mb-form-input, .mb-form-textarea {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .mb-rating-input {
        padding: 12px;
    }
    
    .mb-star-input {
        font-size: 20px;
    }
    
    .mb-btn-large {
        padding: 15px 30px;
        font-size: 15px;
        min-width: 180px;
    }
    
    .mb-faq-question {
        font-size: 15px;
    }
    
    .mb-faq-answer {
        font-size: 14px;
    }
    
    .mb-bonus-banner h3 {
        font-size: 18px;
    }
    
    .mb-bonus-banner p {
        font-size: 14px;
    }
    
    .mb-table {
        min-width: 600px;
    }
    
    .mb-table th, .mb-table td {
        padding: 12px 8px;
        font-size: 13px;
    }
    
    .mb-table .mb-rating-value {
        font-size: 16px;
    }
    
    .mb-table .mb-star {
        font-size: 12px;
    }
    
    .mb-comparison-note {
        margin: 20px -15px 0;
        border-radius: 0;
        padding: 15px;
    }
    
    .mb-comparison-note p {
        font-size: 13px;
    }
    
    .mb-video-description li {
        font-size: 13px;
    }
    
    .mb-author-info h4 {
        font-size: 18px;
    }
    
    .mb-author-bio {
        font-size: 13px;
    }
}

/* Unused styles for uniqueness */
.mb-unused-gradient {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
}

.mb-unused-animation {
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.mb-unused-shadow {
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.mb-unused-border {
    border: 3px dashed #ff6b6b;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
