/* CASINO BONUSES - HERO CARDS LAYOUT */

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

body {
    font-family: 'Inter', sans-serif;
    background: #0a0d1a;
    color: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* TOP BAR */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 13, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.logo-brand:hover {
    text-decoration: none;
}

.logo-icon {
    font-size: 36px;
    animation: spin 10s linear infinite;
}

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

.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-casino {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
}

.brand-bonus {
    font-size: 14px;
    font-weight: 600;
    color: #fbbf24;
    letter-spacing: 3px;
}

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

.nav-item {
    color: #9ca3af;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-item:hover {
    color: #fbbf24;
    text-decoration: none;
}

.cta-button {
    padding: 12px 28px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 900;
    font-size: 14px;
    transition: transform 0.2s;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.cta-button {
    padding: 12px 30px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border: none;
    border-radius: 30px;
    color: #000;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* HERO BANNER */
.hero-banner {
    margin-top: 90px;
    padding: 80px 40px;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15), transparent);
    border-radius: 50%;
}

.hero-content-wrap {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid #fbbf24;
    border-radius: 30px;
    color: #fbbf24;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-heading {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 22px;
    color: #d1d5db;
    max-width: 700px;
    margin: 0 auto 50px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    color: #fbbf24;
}

.stat-label {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 600;
}

/* PAGE LAYOUT */
.page-layout {
    max-width: 1600px;
    margin: 60px auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* SIDEBAR */
.filters-sidebar {
    position: sticky;
    top: 150px;
    height: fit-content;
}

.filter-section {
    background: #111827;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fbbf24;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    cursor: pointer;
    color: #d1d5db;
    font-size: 14px;
    font-weight: 600;
}

.filter-checkbox input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.promo-banner {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.promo-icon {
    font-size: 36px;
}

.promo-text strong {
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

.promo-text p {
    font-size: 13px;
    color: #fca5a5;
}

/* MAIN CONTENT */
.casinos-main {
    min-height: 100vh;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.section-heading {
    font-size: 36px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 15px;
}

.heading-icon {
    font-size: 42px;
}

.sort-select {
    padding: 12px 20px;
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

/* MEGA CARD */
.mega-card {
    position: relative;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 24px;
    padding: 35px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 35px;
    align-items: center;
    transition: all 0.4s;
}

.mega-card:hover {
    border-color: #fbbf24;
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(251, 191, 36, 0.2);
}

.rank-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 900;
    font-size: 18px;
    color: #000;
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
}

.card-left {
    display: flex;
    gap: 25px;
    align-items: center;
}

.casino-logo-big {
    width: 110px;
    height: 110px;
    background: #000;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    flex-shrink: 0;
}

.casino-logo-big img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-placeholder {
    font-size: 48px;
}

.casino-info {
    flex: 1;
}

.casino-title {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 10px;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 18px;
}

.rating-score {
    font-weight: 800;
    color: #fbbf24;
    font-size: 16px;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-pill {
    padding: 6px 14px;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid #22c55e;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #86efac;
}

.card-center {
    text-align: center;
}

.bonus-box {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.bonus-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #c4b5fd;
    margin-bottom: 8px;
}

.bonus-value {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 5px;
}

.bonus-terms {
    font-size: 14px;
    color: #e9d5ff;
    font-weight: 600;
}

.card-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
}

.play-button {
    padding: 18px 35px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 16px;
    color: #000;
    font-weight: 900;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

.play-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
}

.button-arrow {
    font-size: 20px;
    transition: transform 0.3s;
}

.play-button:hover .button-arrow {
    transform: translateX(5px);
}

.details-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding: 12px;
    transition: color 0.3s;
}

.details-link:hover {
    color: #fbbf24;
}

/* LOAD MORE */
.load-more-section {
    text-align: center;
    margin: 50px 0;
}

.load-more-btn {
    padding: 16px 50px;
    background: #111827;
    border: 2px solid #fbbf24;
    border-radius: 16px;
    color: #fbbf24;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.load-more-btn:hover {
    background: #fbbf24;
    color: #000;
}

/* FOOTER */
.simple-footer {
    background: #000;
    padding: 40px;
    margin-top: 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-wrap {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-brand strong {
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
}

.footer-brand p {
    color: #6b7280;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.footer-links a:hover {
    color: #fbbf24;
}

.footer-warning {
    display: flex;
    align-items: center;
    gap: 15px;
}

.age-badge {
    padding: 8px 18px;
    background: #dc2626;
    border-radius: 8px;
    font-weight: 900;
    font-size: 18px;
}

.footer-copyright {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: #6b7280;
    font-size: 13px;
    margin: 8px 0;
}

.disclaimer {
    color: #4b5563;
    font-size: 12px;
}

/* SEO CONTENT */
.seo-content {
    background: #111827;
    padding: 80px 40px;
    margin-top: 100px;
}

.seo-container {
    max-width: 1200px;
    margin: 0 auto;
}

.seo-article h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-article h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 30px 0 15px;
    color: #fbbf24;
}

.seo-article p {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.seo-article ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.seo-article li {
    padding: 12px 0 12px 30px;
    color: #d1d5db;
    line-height: 1.7;
    position: relative;
}

.seo-article li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fbbf24;
    font-weight: 900;
    font-size: 18px;
}

/* REVIEW PAGE STYLES */
.casino-hero-review {
    background: linear-gradient(135deg, #1a1d29 0%, #2d1b45 100%);
    padding: 60px 40px;
    margin-top: 80px;
}

.hero-review-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.casino-hero-left {
    display: flex;
    gap: 30px;
    flex: 1;
}

.casino-logo-huge {
    width: 150px;
    height: 150px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(251, 191, 36, 0.3);
}

.casino-logo-huge img {
    max-width: 120px;
    max-height: 120px;
}

.casino-name-big {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
}

.rating-review-big {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 24px;
}

.rating-number-big {
    font-size: 32px;
    font-weight: 900;
    color: #fbbf24;
}

.casino-badges-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.badge-pill {
    padding: 8px 16px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.bonus-box-review {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    min-width: 350px;
}

.bonus-label-review {
    font-size: 14px;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
}

.bonus-value-review {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    margin-bottom: 10px;
}

.bonus-extra-review {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
}

.claim-bonus-btn {
    display: block;
    background: #000;
    color: #fff;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.2s;
}

.claim-bonus-btn:hover {
    transform: scale(1.05);
}

.quick-stats-section {
    background: #111827;
    padding: 40px;
    margin: 0;
}

.stats-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-label {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 28px;
    font-weight: 900;
    color: #fbbf24;
}

.review-layout {
    max-width: 1600px;
    margin: 60px auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.review-section {
    background: #1a1d29;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-heading-review {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 25px;
    color: #fbbf24;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bar-label {
    min-width: 150px;
    font-weight: 700;
}

.bar-track {
    flex: 1;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 10px;
}

.bar-value {
    min-width: 40px;
    text-align: right;
    font-weight: 900;
    color: #fbbf24;
    font-size: 18px;
}

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

.pros-box, .cons-box {
    padding: 30px;
    border-radius: 16px;
}

.pros-box {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.cons-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.pros-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #22c55e;
}

.cons-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ef4444;
}

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

.pros-list li, .cons-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.pros-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 900;
}

.cons-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 900;
}

.bonus-detailed-card {
    background: rgba(251, 191, 36, 0.1);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
}

.bonus-card-header {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    padding: 30px;
    text-align: center;
}

.bonus-type-badge {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 15px;
}

.bonus-amount-big {
    font-size: 42px;
    font-weight: 900;
    color: #000;
}

.bonus-card-body {
    padding: 30px;
}

.bonus-terms-list {
    list-style: none;
    padding: 0;
}

.bonus-terms-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.bonus-mini-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

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

.games-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.game-category-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
}

.game-cat-icon {
    font-size: 64px;
    margin-bottom: 15px;
}

.game-count {
    font-size: 24px;
    font-weight: 900;
    color: #fbbf24;
    margin: 10px 0;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.provider-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
}

.payment-methods-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.payment-method-item {
    display: flex;
    gap: 20px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
}

.pm-icon {
    font-size: 48px;
}

.pm-info h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
}

.pm-time {
    display: inline-block;
    background: #22c55e;
    color: #000;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
    margin-top: 8px;
}

.info-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
}

.info-value {
    font-weight: 900;
    color: #fbbf24;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.security-feature {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.sf-icon-big {
    font-size: 64px;
    margin-bottom: 15px;
}

.verdict-section {
    background: linear-gradient(135deg, #1a1d29 0%, #2d1b45 100%);
    border: 2px solid #fbbf24;
}

.verdict-box {
    display: flex;
    gap: 40px;
    align-items: center;
}

.verdict-rating {
    text-align: center;
    padding: 30px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 16px;
    min-width: 180px;
}

.verdict-score {
    font-size: 72px;
    font-weight: 900;
    color: #fbbf24;
    line-height: 1;
}

.verdict-label {
    font-size: 18px;
    margin-top: 10px;
    color: #9ca3af;
}

.final-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 900;
    text-decoration: none;
    margin-top: 25px;
    transition: transform 0.2s;
}

.final-cta-btn:hover {
    transform: scale(1.05);
}

.review-sidebar {
    position: relative;
}

.sidebar-sticky-review {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: #1a1d29;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-card-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fbbf24;
}

.quick-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.qi-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.qi-label {
    color: #9ca3af;
    font-size: 14px;
}

.qi-value {
    font-weight: 800;
}

.cta-card {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    text-align: center;
}

.cta-badge {
    background: #000;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 15px;
}

.sidebar-cta-btn {
    display: block;
    background: #000;
    color: #fff;
    padding: 16px;
    border-radius: 12px;
    font-weight: 900;
    text-decoration: none;
    margin-top: 20px;
}

.support-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.support-icon {
    font-size: 24px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 25px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 3px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #000;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    padding: 15px;
    font-weight: 700;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .main-nav, .cta-button {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-review-container {
        flex-direction: column;
    }
    
    .stats-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .review-layout {
        grid-template-columns: 1fr;
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
    
    .games-categories {
        grid-template-columns: 1fr;
    }
}

/* COMMON PAGE STYLES */
.page-hero {
    background: linear-gradient(135deg, #1a1d29 0%, #2d1b45 100%);
    padding: 80px 40px 60px;
    margin-top: 80px;
    text-align: center;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.page-desc {
    font-size: 20px;
    color: #d1d5db;
}

.content-section {
    padding: 60px 0;
    min-height: 500px;
}

/* FILTERS & TABS */
.tabs-wrapper {
    margin-bottom: 40px;
}

.tabs-nav {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn:hover, .tab-btn.active {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    border-color: transparent;
}

/* FAQ STYLES */
.faq-list, .faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item, .faq-item-acc {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question, .faq-q {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 800;
    font-size: 18px;
    transition: background 0.2s;
}

.faq-question:hover, .faq-q:hover {
    background: rgba(251, 191, 36, 0.1);
}

.faq-answer, .faq-a {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-answer,
.faq-item-acc.active .faq-a {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-answer p, .faq-a {
    color: #d1d5db;
    line-height: 1.7;
}

/* UTILITY CLASSES */
.section-spacer {
    height: 60px;
}

.section-title-left {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 30px;
    color: #fbbf24;
}

.section-title-center {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 40px;
    text-align: center;
    color: #fbbf24;
}

.section-description {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* RATING HELPERS */
.rating-small, .rating-xs, .rating-inline-sm {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.rating-xs {
    font-size: 12px;
}

/* LOGO PLACEHOLDERS */
.logo-placeholder, .logo-placeholder-sm, .logo-placeholder-huge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.logo-placeholder-sm {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    font-size: 24px;
}

.logo-placeholder-huge {
    font-size: 64px;
}

/* RESPONSIVE */
@media (max-width: 1400px) {
    .page-layout {
        grid-template-columns: 1fr;
    }
    
    .filters-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .mega-card {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .card-left {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 42px;
    }
    
    .top-bar-wrapper {
        padding: 15px 20px;
    }
    
    .main-nav {
        display: none;
    }
    
    .page-layout {
        padding: 0 20px;
    }
    
    .free-spin-item {
        grid-template-columns: 1fr !important;
    }
    
    .cashback-types-grid,
    .cashback-offers-list,
    .no-deposit-grid,
    .faq-grid,
    .pros-cons-grid,
    .tips-grid {
        grid-template-columns: 1fr !important;
    }
}

/* FREE SPINS PAGE STYLES */
.tabs-wrapper {
    margin: 40px 0;
}

.tabs-nav {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 10px;
}

.tabs-nav::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #d1d5db;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.tab-btn:hover {
    border-color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

.tab-btn.active {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-color: #fbbf24;
    color: #000;
}

.free-spins-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.free-spin-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    display: grid;
    grid-template-columns: auto 200px 1fr auto;
    gap: 25px;
    align-items: center;
    transition: all 0.3s;
}

.free-spin-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(251, 191, 36, 0.3);
    transform: translateX(5px);
}

.fs-rank {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 60px;
}

.fs-casino {
    display: flex;
    gap: 15px;
    align-items: center;
}

.fs-casino img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-placeholder-sm {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.fs-casino h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.rating-xs {
    font-size: 12px;
}

.fs-offer {
    text-align: center;
    padding: 20px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 12px;
}

.fs-amount {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.fs-label {
    font-size: 14px;
    color: #9ca3af;
    margin-top: 5px;
}

.fs-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    margin-top: 10px;
}

.fs-badge.no-deposit {
    background: #10b981;
    color: #fff;
}

.fs-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fs-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #d1d5db;
}

.fs-detail-item i {
    color: #fbbf24;
    width: 20px;
}

.fs-games {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    margin: 15px 0;
}

.game-tag {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fs-actions {
    text-align: right;
}

.btn-get-spins {
    padding: 14px 28px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    border-radius: 10px;
    font-weight: 900;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s;
}

.btn-get-spins:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

/* CASHBACK PAGE STYLES */
.intro-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
}

.intro-box h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #d1d5db;
    max-width: 800px;
    margin: 0 auto;
}

.cashback-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.cashback-type-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.cashback-type-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(251, 191, 36, 0.3);
    transform: translateY(-5px);
}

.type-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.cashback-type-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cashback-type-card p {
    color: #9ca3af;
    margin-bottom: 25px;
    line-height: 1.6;
}

.type-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-tag {
    padding: 10px 15px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 8px;
    font-size: 13px;
    color: #fbbf24;
    font-weight: 600;
}

.section-spacer {
    height: 60px;
}

.section-title-left {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cashback-offers-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.cashback-offer-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s;
}

.cashback-offer-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(251, 191, 36, 0.3);
}

.offer-header {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
}

.casino-logo-med {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.casino-logo-med img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.logo-placeholder {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.casino-info-med h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.best-offer-tag {
    position: absolute;
    top: -10px;
    right: 0;
    padding: 8px 16px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
}

.cashback-amount-section {
    text-align: center;
    padding: 30px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 12px;
    margin-bottom: 25px;
}

.cashback-percent {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.cashback-label {
    font-size: 16px;
    color: #9ca3af;
    margin-top: 10px;
}

.cashback-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.detail-label {
    color: #9ca3af;
    font-size: 14px;
}

.detail-row strong {
    color: #fbbf24;
    font-weight: 700;
}

.offer-highlights {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.highlight {
    flex: 1;
    padding: 10px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    font-size: 13px;
    text-align: center;
    color: #10b981;
    font-weight: 600;
}

.offer-actions {
    text-align: center;
}

.btn-get-cashback {
    display: block;
    padding: 16px 32px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    border-radius: 10px;
    font-weight: 900;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.2s;
}

.btn-get-cashback:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.calculator-box {
    max-width: 600px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
}

.calculator-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.calc-input-group label {
    display: block;
    margin-bottom: 10px;
    color: #d1d5db;
    font-weight: 600;
    font-size: 14px;
}

.calc-input-group input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s;
}

.calc-input-group input:focus {
    outline: none;
    border-color: #fbbf24;
}

.calc-result-box {
    text-align: center;
    padding: 30px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 12px;
}

.result-label {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 10px;
}

.result-amount {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-calculate {
    padding: 16px 32px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    border-radius: 10px;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-calculate:hover {
    transform: translateY(-2px);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.faq-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
}

.faq-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fbbf24;
}

.faq-card p {
    color: #d1d5db;
    line-height: 1.8;
}

/* NO DEPOSIT PAGE STYLES */
.alert-info-box {
    display: flex;
    gap: 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0;
}

.alert-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.alert-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #60a5fa;
}

.alert-content p {
    color: #d1d5db;
    line-height: 1.8;
    font-size: 15px;
}

.no-deposit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.no-deposit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.3s;
}

.no-deposit-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(251, 191, 36, 0.3);
    transform: translateY(-5px);
}

.top-pick-ribbon {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.nd-card-header {
    text-align: center;
    margin-bottom: 25px;
}

.casino-logo-lg {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.casino-logo-lg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.nd-card-header h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
}

.rating-stars {
    font-size: 16px;
}

.nd-bonus-display {
    text-align: center;
    padding: 30px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 12px;
    margin-bottom: 25px;
}

.bonus-type-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 15px;
}

.bonus-type-badge.money {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.bonus-type-badge.spins {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
}

.bonus-value {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.bonus-subtitle {
    font-size: 14px;
    color: #9ca3af;
    margin-top: 10px;
}

.nd-requirements, .nd-how-to-get {
    margin-bottom: 20px;
}

.nd-requirements h4, .nd-how-to-get h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fbbf24;
}

.nd-requirements ul, .nd-how-to-get ol {
    list-style-position: inside;
    color: #d1d5db;
    line-height: 2;
}

.nd-requirements li, .nd-how-to-get li {
    font-size: 14px;
}

.nd-requirements strong {
    color: #fff;
}

.btn-claim-nd {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    border-radius: 10px;
    font-weight: 900;
    font-size: 14px;
    text-decoration: none;
    transition: transform 0.2s;
}

.btn-claim-nd:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.pros-box, .cons-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px;
}

.pros-box h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #10b981;
}

.cons-box h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #ef4444;
}

.pros-box ul, .cons-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pros-box li::before {
    content: "✓ ";
    color: #10b981;
    font-weight: 900;
    margin-right: 10px;
}

.cons-box li::before {
    content: "✗ ";
    color: #ef4444;
    font-weight: 900;
    margin-right: 10px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.tip-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
}

.tip-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    margin: 0 auto 20px;
}

.tip-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
}

.tip-card p {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.6;
}

.warning-section {
    background: rgba(239, 68, 68, 0.1);
    padding: 60px 0;
}

.warning-box-large {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    padding: 40px;
}

.warning-icon-large {
    font-size: 64px;
    flex-shrink: 0;
}

.warning-text h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #ef4444;
}

.warning-text p {
    color: #d1d5db;
    line-height: 1.8;
    font-size: 15px;
}

/* WELCOME BONUSES PAGE */
.content-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin: 40px 0;
}

.sidebar-left {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.filter-group h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #d1d5db;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #9ca3af;
    cursor: pointer;
    font-size: 14px;
    transition: color 0.2s;
}

.filter-checkbox:hover {
    color: #fbbf24;
}

.filter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #fbbf24;
}

.main-content-area {
    flex: 1;
}

.welcome-bonuses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.welcome-bonus-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.3s;
}

.welcome-bonus-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(251, 191, 36, 0.3);
    transform: translateY(-5px);
}

.best-bonus-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.bonus-card-header {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.casino-logo-circle {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.casino-info-compact h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.rating-small {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.bonus-highlight-main {
    text-align: center;
    padding: 35px 25px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 12px;
    margin-bottom: 25px;
    border: 2px solid rgba(251, 191, 36, 0.2);
}

.bonus-percent-big {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 10px;
}

.bonus-label-big {
    font-size: 18px;
    color: #d1d5db;
    font-weight: 700;
    margin-bottom: 10px;
}

.bonus-extra-info {
    font-size: 16px;
    color: #10b981;
    font-weight: 800;
}

.bonus-specs {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.spec-item i {
    font-size: 24px;
    color: #fbbf24;
}

.spec-item small {
    display: block;
    font-size: 11px;
    color: #9ca3af;
    margin-bottom: 4px;
}

.spec-item strong {
    display: block;
    font-size: 16px;
    color: #fff;
    font-weight: 800;
}

.bonus-terms-preview {
    margin-bottom: 25px;
}

.bonus-terms-preview h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fbbf24;
}

.bonus-terms-preview ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bonus-terms-preview li {
    font-size: 13px;
    color: #d1d5db;
    padding-left: 20px;
    position: relative;
}

.bonus-terms-preview li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fbbf24;
    font-weight: 900;
}

.bonus-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-claim-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 30px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    border-radius: 12px;
    font-weight: 900;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-claim-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    text-decoration: none;
}

.link-terms {
    text-align: center;
    padding: 12px;
    color: #9ca3af;
    font-size: 13px;
    text-decoration: underline;
    transition: color 0.2s;
}

.link-terms:hover {
    color: #fbbf24;
    text-decoration: underline;
}

.guide-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.guide-step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
}

.guide-step-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.step-number-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    margin: 0 auto 20px;
}

.guide-step-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
}

.guide-step-card p {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.6;
}

.notice-box {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
}

.notice-box.warning {
    border-color: rgba(251, 191, 36, 0.3);
    background: rgba(251, 191, 36, 0.05);
}

.notice-icon {
    font-size: 64px;
    flex-shrink: 0;
}

.notice-content h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #fbbf24;
}

.notice-content p {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.notice-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fbbf24;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.2s;
}

.notice-link:hover {
    transform: translateX(5px);
    text-decoration: none;
}

@media (max-width: 1200px) {
    .content-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar-left {
        order: 2;
    }
    
    .sidebar-sticky {
        position: static;
    }
    
    .welcome-bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .guide-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-specs {
        flex-direction: column;
    }
    
    .notice-box {
        flex-direction: column;
        text-align: center;
    }
}
