/* === CSS RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Theme Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-card: #1e1e1e;
    --bg-card-hover: #252525;
    --bg-header: #0f0f0f;
    --bg-footer: #0f0f0f;
    
    /* Orange Accents */
    --orange-primary: #ff6b35;
    --orange-hover: #ff8c5a;
    --orange-dark: #e55a2b;
    --orange-light: #ffa366;
    
    /* Text Colors */
    --text-primary: #e0e0e0;
    --text-secondary: #b0b0b0;
    --text-muted: #888888;
    --text-white: #ffffff;
    
    /* Borders & Dividers */
    --border-color: #2a2a2a;
    --border-hover: #3a3a3a;
    --divider: #333333;
    
    /* Status Colors */
    --success: #4caf50;
    --warning: #ff9800;
    --error: #f44336;
    --info: #2196f3;
    
    /* Typography */
    --font-primary: 'Exo', sans-serif;
    --font-secondary: 'proxima-nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.6;
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Links in content */
.section p a,
.section li a,
.content-block p a,
.content-block li a {
    color: var(--orange-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.section p a:hover,
.section li a:hover,
.content-block p a:hover,
.content-block li a:hover {
    color: var(--orange-hover);
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-white);
}

/* Scroll offset for anchor links to prevent header overlap */
h2[id] {
    scroll-margin-top: 100px;
}

.imgcontent {
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
    max-width: 500px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* === HEADER === */
.main-header {
    background-color: var(--bg-header);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 36px;
    width: auto;
    filter: brightness(1.1);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
    margin: 0;
}

.nav-menu a {
    color: var(--text-secondary);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--orange-primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Nav dropdown */
.nav-item-has-dropdown {
    position: relative;
}

.nav-item-has-dropdown > a {
    padding-right: 18px;
    position: relative;
}

/* Hide the underline on dropdown parent */
.nav-item-has-dropdown > a::after {
    display: none !important;
}

/* Add arrow icon using ::before instead */
.nav-item-has-dropdown > a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1001;
}

.nav-item-has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px);
}

.nav-dropdown li {
    border: none;
}

.nav-dropdown li:first-child {
    border-top: none;
}

.nav-dropdown a {
    display: block;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    text-transform: none;
    color: var(--text-secondary);
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown a::after {
    display: none;
}

.nav-dropdown a:hover {
    background: var(--bg-card-hover);
    color: var(--orange-primary);
}

.nav-search {
    position: relative;
}

.nav-search input {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-primary);
    padding: 8px 12px;
    width: 150px;
    transition: all 0.3s ease;
}

.nav-search input:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1003;
    position: relative;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}

.mobile-toggle.active {
    position: relative;
}

.mobile-toggle span {
    width: 24px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: none;
    position: relative;
}

.mobile-toggle:hover span {
    background: var(--orange-primary);
}

.mobile-toggle.active span:nth-child(1) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    margin: 0;
}

.mobile-toggle.active span:nth-child(2) {
    display: none;
}

.mobile-toggle.active span:nth-child(3) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    margin: 0;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}


/* Mobile Slide Menu */
@media (max-width: 999px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 85vw;
        height: 100vh;
        background: var(--bg-header);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 0 30px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
        transition: right 0.3s ease;
        z-index: 1003 !important;
        overflow-y: auto;
        border-left: 2px solid var(--orange-primary);
        pointer-events: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu li:first-child {
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu a {
        display: block;
        padding: 18px 30px;
        font-size: 16px;
        color: var(--text-primary);
        width: 100%;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1004;
        pointer-events: auto;
        cursor: pointer;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu a:hover,
    .nav-menu a:active {
        color: var(--orange-primary);
        padding-left: 40px;
        background: rgba(255, 107, 53, 0.1);
    }
    
    .nav-menu li {
        position: relative;
        z-index: 1004;
        pointer-events: auto;
    }

    /* Mobile: dropdown items on same level */
    .nav-item-has-dropdown .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: auto;
        padding: 0;
        margin: 0;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

    .nav-item-has-dropdown .nav-dropdown li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-item-has-dropdown .nav-dropdown a {
        padding: 18px 30px;
        font-size: 16px;
    }

    .nav-item-has-dropdown .nav-dropdown a:hover,
    .nav-item-has-dropdown .nav-dropdown a:active {
        color: var(--orange-primary);
        padding-left: 40px;
        background: rgba(255, 107, 53, 0.1);
    }

    .nav-item-has-dropdown > a::before {
        display: none;
    }
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === HERO SECTION === */
.hero-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 80px 0 60px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: visible;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 42px;
    color: var(--text-white);
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-lead-wrap {
    margin-bottom: 32px;
}

.hero-lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0;
    max-width: 900px;
}

.hero-lead-wrap .hero-lead {
    margin-bottom: 0;
}

.hero-lead-wrap:not(.expanded) .hero-lead {
    margin-bottom: 0;
}

.hero-lead-more {
    display: inline;
}
.hero-lead-toggle {
    display: none;
}

.trust-indicators {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 10;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.trust-badge:hover {
    background: var(--bg-card-hover);
    border-color: var(--orange-primary);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    color: var(--orange-primary);
    flex-shrink: 0;
}

/* Author Meta */
.author-meta {
    margin: 24px 0 40px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.author-meta-persons {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.author-meta-separator {
    width: 1px;
    height: 32px;
    background: var(--border-color);
    flex-shrink: 0;
}

.author-info-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.author-details {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--orange-primary);
}

.author-full-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-white);
}

.author-full-name a {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.author-full-name a:hover {
    color: var(--orange-primary);
}

.author-role {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--text-secondary);
}

.publication-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.4;
    color: var(--text-secondary);
}

.date-icon {
    width: 16px;
    height: 16px;
    fill: var(--orange-primary);
}

/* Disclaimer Box */
.disclaimer-box {
    border-left: 4px solid var(--orange-primary);
    background: var(--bg-card);
    padding: 20px;
    margin-top: 24px;
    border-radius: 4px;
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    font-style: italic;
}

/* Disclaimer Spoiler - desktop: normal view */
.disclaimer-spoiler .disclaimer-spoiler-toggle {
    display: none;
}
.disclaimer-spoiler .disclaimer-spoiler-content {
    display: block;
}

/* === SECTION TITLE === */
.section {
    padding: 15px 0;
    background: var(--bg-primary);
}

.section-title {
    position: relative;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.section-title h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-white);
    text-transform: uppercase;
    background: var(--bg-primary);
    padding-right: 20px;
    position: relative;
    z-index: 1;
    margin: 0;
}

.section-title h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-white);
    text-transform: uppercase;
    background: var(--bg-primary);
    padding-right: 20px;
    position: relative;
    z-index: 1;
    margin: 0;
}

.author-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--orange-primary);
    margin: 8px 0 0 0;
    text-transform: none;
}

.section-title h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-white);
    text-transform: uppercase;
    background: var(--bg-primary);
    padding-right: 20px;
    position: relative;
    z-index: 1;
    margin: 0;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange-primary) 0%, transparent 100%);
    z-index: 0;
}

/* === CASINO CARDS (TOP 10) === */
.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 15px;
}

.casino-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.casino-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
    border-color: var(--orange-primary);
}

.casino-card-header {
    position: relative;
    padding: 24px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
    border-bottom: 1px solid var(--border-color);
}

.casino-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
    color: var(--text-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
}

.casino-logo {
    width: 100%;
    max-width: 200px;
    height: 90px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border-radius: 8px;
    padding: 10px;
}

.casino-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1.1);
}

.casino-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.stars {
    color: var(--orange-primary);
    font-size: 20px;
    letter-spacing: 2px;
}

.rating-score {
    font-weight: 700;
    font-size: 20px;
    color: var(--text-white);
}

.casino-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-white);
}

.casino-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.casino-features {
    list-style: none;
    margin-bottom: 24px;
}

.casino-features li {
    padding: 10px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.casino-features li:last-child {
    border-bottom: none;
}

.casino-features li::before {
    content: '✓';
    color: var(--orange-primary);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.casino-features li:first-child {
    border: 1px solid rgba(255, 107, 53, 0.6);
    background: rgba(93, 61, 42, 0.35);
    padding: 10px 14px;
    margin-bottom: 10px;
    margin-left: -10px;
    margin-right: -10px;
    border-radius: 8px;
    font-weight: 700;
    color: #ffffff;
}

.casino-features li:first-child::before {
    color: var(--orange-primary);
}

.casino-cta {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

/* Mobile: casino CTA buttons right under the logo */
@media (max-width: 999px) {
    .casino-card-body {
        display: contents;
    }
    .casino-card-header {
        order: 1;
    }
    .casino-cta {
        order: 2;
        margin-top: 0;
        padding: 20px 24px;
        flex-direction: column;
        gap: 12px;
        border-bottom: 1px solid var(--border-color);
    }
    .casino-cta .btn {
        width: 100%;
        flex: none;
    }
    .casino-rating,
    .casino-name,
    .casino-description,
    .casino-features {
        order: 3;
        padding-left: 24px;
        padding-right: 24px;
    }
    .casino-rating {
        padding-top: 24px;
    }
    .casino-features {
        padding-bottom: 24px;
    }
}

.btn {
    display: block;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    flex: 1;
    font-family: var(--font-primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
    color: var(--text-white);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--orange-hover) 0%, var(--orange-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--orange-primary);
    color: var(--orange-primary);
}

/* === COMPARISON TABLE === */
.comparison-table {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
}

thead {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-card) 100%);
    border-bottom: 2px solid var(--orange-primary);
}

th {
    padding: 18px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-secondary);
}

tbody tr {
    transition: background 0.3s ease;
}

tbody tr:hover {
    background: var(--bg-card-hover);
}

tbody tr:last-child td {
    border-bottom: none;
}

/* === CONTENT BLOCKS === */
.content-block {
    margin: 40px 0;
}

.content-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-white);
}

.content-block h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--text-white);
}

.content-block p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.content-block ul,
.content-block ol {
    margin: 20px 0;
    padding-left: 35px;
}

.content-block li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* === LISTS (ul, ol) === */
.section ul:not(.nav-menu):not(.casino-features):not(.footer-column ul):not(.pros ul):not(.cons ul),
.section ol:not(.pros ol):not(.cons ol) {
    margin: 24px 0;
    padding-left: 0;
    list-style: none;
}

.section ul:not(.nav-menu):not(.casino-features):not(.footer-column ul):not(.pros ul):not(.cons ul) li,
.section ol:not(.pros ol):not(.cons ol) li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.section ul:not(.nav-menu):not(.casino-features):not(.footer-column ul):not(.pros ul):not(.cons ul) li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--orange-primary);
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
}

.section ol:not(.pros ol):not(.cons ol) {
    counter-reset: list-counter;
}

.section ol:not(.pros ol):not(.cons ol) li {
    counter-increment: list-counter;
}

.section ol:not(.pros ol):not(.cons ol) li::before {
    content: counter(list-counter) '.';
    position: absolute;
    left: 0;
    color: var(--orange-primary);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.7;
}

/* Nested lists */
.section ul:not(.nav-menu):not(.casino-features):not(.footer-column ul):not(.pros ul):not(.cons ul) ul,
.section ol:not(.pros ol):not(.cons ol) ol {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 24px;
}

.section ul:not(.nav-menu):not(.casino-features):not(.footer-column ul):not(.pros ul):not(.cons ul) ul li::before {
    content: '◦';
    color: var(--orange-hover);
    font-size: 18px;
}

.section ol:not(.pros ol):not(.cons ol) ol li::before {
    content: counter(list-counter, lower-alpha) '.';
}

/* === ALERT BOXES === */
.alert-box {
    padding: 24px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid;
    background: var(--bg-card);
}

.alert-warning {
    border-color: var(--warning);
    background: rgba(255, 152, 0, 0.1);
    color: var(--text-secondary);
}

.alert-info {
    border-color: var(--orange-primary);
    background: rgba(255, 107, 53, 0.1);
    color: var(--text-secondary);
}

.alert-success {
    border-color: var(--success);
    background: rgba(76, 175, 80, 0.1);
    color: var(--text-secondary);
}

.alert-box strong {
    display: block;
    margin-bottom: 10px;
    font-size: 17px;
    color: var(--text-white);
}

.alert-box em {
    color: var(--text-secondary);
    font-style: italic;
}

/* === PROS & CONS === */
.pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.pros, .cons {
    padding: 24px;
    border-radius: 8px;
    border: 1px solid;
}

.pros {
    background: rgba(76, 175, 80, 0.1);
    border-color: var(--success);
}

.cons {
    background: rgba(244, 67, 54, 0.1);
    border-color: var(--error);
}

.pros h3, .cons h3 {
    margin-bottom: 16px;
    font-size: 20px;
    color: var(--text-white);
}

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

.pros li {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.pros li::before {
    content: '✓ ';
    color: var(--success);
    font-weight: 700;
    margin-right: 10px;
}

.cons li {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.cons li::before {
    content: '✗ ';
    color: var(--error);
    font-weight: 700;
    margin-right: 10px;
}

/* === BONUS CARDS === */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.bonus-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    border-color: var(--orange-primary);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.bonus-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--orange-primary);
}

.bonus-amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 12px;
}

/* === LICENSE BADGES === */
.license-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.license-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    min-width: 140px;
    transition: all 0.3s ease;
}

.license-badge:hover {
    border-color: var(--orange-primary);
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.license-badge img {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
    filter: brightness(1.1);
}

.license-name {
    font-size: 13px;
    text-align: center;
    font-weight: 600;
    color: var(--text-secondary);
}

/* === FAQ ACCORDION === */
.faq-section {
    margin: 50px 0;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-card);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: var(--bg-card);
    border: none;
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    color: var(--text-white);
    margin: 0;
    font-family: var(--font-primary);
    text-transform: none;
    position: relative;
    flex: 1;
}

.faq-question:hover {
    background: var(--bg-card-hover);
    color: var(--orange-primary);
}

.faq-question::after {
    content: '+';
    font-size: 28px;
    font-weight: 300;
    color: var(--orange-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-question.active::after {
    content: '−';
    transform: rotate(180deg);
}

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

.faq-answer-content {
    padding: 20px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
}

/* === 404 ERROR PAGE === */
.section-404 {
    padding: 80px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.error-message {
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 30px;
    font-weight: 600;
}

.error-reasons {
    text-align: left;
    max-width: 500px;
    margin: 30px auto;
    padding-left: 20px;
}

.error-reasons li {
    margin-bottom: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.error-actions .btn {
    min-width: 200px;
    display: inline-block;
}

.error-help {
    margin-top: 30px;
    color: var(--text-muted);
    font-size: 15px;
}

@media (max-width: 768px) {
    .section-404 {
        padding: 60px 0;
    }
    
    .error-message {
        font-size: 18px;
    }
    
    .error-actions {
        flex-direction: column;
    }
    
    .error-actions .btn {
        width: 100%;
    }
}

/* === AUTHOR BIO SECTION === */
.author-bio-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 50px 0;
    margin: 60px 0 0 0;
    border-top: 1px solid var(--border-color);
}

.author-bio-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 36px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.author-bio-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
}

.author-bio-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--orange-primary);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.author-bio-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.author-bio-name {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-white);
    margin: 0;
    text-transform: none;
}

.author-bio-name a {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.author-bio-name a:hover {
    color: var(--orange-primary);
}

.author-bio-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--orange-primary);
}

.author-bio-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

.author-bio-content strong {
    color: var(--orange-primary);
    font-weight: 700;
}

/* === FOOTER === */
footer {
    background-color: var(--bg-footer);
    color: var(--text-white);
    padding: 60px 0 30px;
    border-top: 2px solid var(--border-color);
}

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

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 14px;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: var(--text-secondary);
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column a:hover {
    color: var(--orange-primary);
    transform: translateX(4px);
}

.footer-archive-links ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px 16px;
    column-gap: 16px;
}

.footer-archive-links li {
    margin-bottom: 6px;
}

.footer-archive-links a {
    font-size: 12px;
}

.footer-copyright {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.footer-social a:hover {
    background: var(--orange-primary);
    border-color: var(--orange-primary);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

/* === RESPONSIVE === */
@media (max-width: 999px) {
    .mobile-toggle {
        display: flex;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 22px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .section-title h1 {
        font-size: 26px;
    }
    
    .section-title h2 {
        font-size: 22px;
    }
    
    .section-title h3 {
        font-size: 20px;
    }
    
    .content-block h2 {
        font-size: 24px;
    }
    
    .content-block h3 {
        font-size: 20px;
    }
    
    .casino-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-archive-links ul {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-copyright {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 824px) {
    .author-meta {
        gap: 16px;
    }
    .author-meta-persons {
        display: grid;
        grid-template-columns: 1fr 1px 1fr;
        gap: 0;
        width: 100%;
        align-items: stretch;
    }
    .author-meta-separator {
        width: 1px;
        height: auto;
        background: var(--border-color);
        align-self: stretch;
    }
    .author-info-block {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 6px;
        padding: 0 16px;
    }
    .author-details {
        gap: 8px;
    }
    .author-avatar-img {
        width: 32px;
        height: 32px;
    }
    .author-full-name {
        font-size: 13px;
        white-space: nowrap;
    }
    .author-role {
        font-size: 11px;
        line-height: 1.3;
    }
    .author-info-block:first-child {
        padding-left: 0;
    }
}

@media (max-width: 599px) {
    .section {
        padding: 40px 0;
    }
    
    .hero-section {
        padding: 50px 0 40px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    h3 {
        font-size: 18px;
    }
    
    .hero-content h1 {
        font-size: 20px;
    }
    
    .hero-lead {
        font-size: 14px;
    }
    .hero-lead-more {
        display: none;
    }
    .hero-lead-wrap.expanded .hero-lead-more {
        display: inline;
    }
    .hero-lead-toggle {
        display: inline;
        background: none;
        border: none;
        color: var(--text-secondary);
        font-size: inherit;
        font-weight: 600;
        cursor: pointer;
        padding: 0 0 0 4px;
        margin: 0;
        font-family: inherit;
        text-decoration: underline;
        transition: color 0.3s ease;
    }
    .hero-lead-toggle:hover {
        color: var(--text-primary);
    }
    
    /* Disclaimer Spoiler - mobile */
    .disclaimer-spoiler {
        background: #262626;
        border-left: 4px solid #3a3a3a;
        padding: 0;
        border-radius: 8px;
        overflow: hidden;
    }
    .disclaimer-spoiler .disclaimer-spoiler-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 16px 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        text-align: left;
        gap: 12px;
    }
    .disclaimer-spoiler .disclaimer-spoiler-text {
        font-size: 14px;
        font-weight: 500;
        color: #e0e0e0;
        font-style: normal;
        flex: 1;
    }
    .disclaimer-spoiler .disclaimer-spoiler-icon {
        flex-shrink: 0;
        font-size: 18px;
        font-weight: 300;
        color: #aaaaaa;
    }
    .disclaimer-spoiler .disclaimer-spoiler-content {
        display: none;
        padding: 0 20px 20px 20px;
    }
    .disclaimer-spoiler.expanded .disclaimer-spoiler-content {
        display: block;
    }
    .disclaimer-spoiler .disclaimer-spoiler-icon::before {
        content: '+';
    }
    .disclaimer-spoiler.expanded .disclaimer-spoiler-icon::before {
        content: '−';
    }
    .disclaimer-spoiler .disclaimer-spoiler-content p {
        color: #b0b0b0;
        font-size: 13px;
    }
    
    .author-avatar-img {
        width: 28px;
        height: 28px;
    }
    .author-full-name {
        font-size: 13px;
    }
    .author-role {
        font-size: 11px;
    }
    
    .section-title h1 {
        font-size: 22px;
    }
    
    .section-title h2 {
        font-size: 20px;
    }
    
    .section-title h3 {
        font-size: 18px;
    }
    
    .content-block h2 {
        font-size: 20px;
    }
    
    .content-block h3 {
        font-size: 18px;
    }
    
    .trust-indicators {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        margin-left: 0;
        margin-right: 0;
        padding-left: 20px;
        padding-right: 20px;
    }
    .trust-indicators::-webkit-scrollbar {
        display: none;
    }
    .trust-badge {
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 8px 20px;
    }
    
    table {
        font-size: 13px;
    }
    
    th, td {
        padding: 12px;
    }
    
    .author-bio-section {
        padding: 40px 0;
    }
    
    .author-bio-card {
        padding: 24px;
    }
    
    .author-bio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .author-bio-avatar {
        width: 70px;
        height: 70px;
    }
    
    .author-bio-name {
        font-size: 22px;
    }
    
    .author-bio-title {
        font-size: 15px;
    }
    
    .author-bio-content p {
        font-size: 15px;
    }
}

/* === BREADCRUMB === */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-secondary);
    transition: color 0.3s;
    word-break: break-word;
    line-height: 1.4;
}

.breadcrumb a:hover {
    color: var(--orange-primary);
}

.breadcrumb-sep {
    color: var(--text-muted);
    flex-shrink: 0;
}

/* Mobile breadcrumb optimization */
@media (max-width: 768px) {
    .breadcrumb {
        font-size: 10px;
        gap: 6px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        font-size: 10px;
        gap: 4px;
        margin-bottom: 12px;
    }
    
    .breadcrumb a {
        line-height: 1.4;
    }
}

/* === TABLE OF CONTENTS (TOC) === */
.toc-section {
    background: var(--bg-secondary);
    padding: 20px 0;
}

.toc-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.toc-toggle {
    width: 100%;
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 18px 24px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.toc-toggle:hover {
    background: var(--bg-card-hover);
}

.toc-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toc-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
    color: var(--text-primary);
}

.toc-toggle[aria-expanded="true"] .toc-icon {
    transform: rotate(180deg);
}

.toc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
    background: var(--bg-card);
}

.toc-content[aria-hidden="false"] {
    max-height: 2000px;
    padding: 24px;
    border-top: 1px solid var(--border-color);
}

.toc-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 20px;
    margin: 0;
    padding: 0;
}

.toc-list li {
    margin: 0;
    padding: 0;
    list-style: none;
    padding-left: 0!important;
}

.toc-list li::before {
    display: none;
}

.toc-list a {
    display: block;
    padding: 12px 16px;
    color: var(--text-primary) !important;
    text-decoration: none !important;
    background: var(--bg-secondary);
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    font-size: 15px;
    line-height: 1.4;
}

.toc-list a:hover {
    color: var(--text-white) !important;
    background: var(--bg-card-hover);
    border-color: var(--orange-primary);
    transform: translateX(4px);
    text-decoration: none !important;
}

.toc-list a:active {
    transform: translateX(2px);
}

/* Responsive TOC */
@media (max-width: 1024px) {
    .toc-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px 16px;
    }
}

@media (max-width: 767px) {
    .toc-toggle {
        font-size: 18px;
        padding: 16px 20px;
    }

    .toc-content[aria-hidden="false"] {
        padding: 20px;
    }

    .toc-list {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .toc-list a {
        font-size: 14px;
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    .toc-toggle {
        font-size: 16px;
        padding: 14px 16px;
    }

    .toc-title {
        gap: 8px;
    }
}

/* === EXPERT BLOCKQUOTE === */
blockquote.expert-note {
    background: var(--bg-card);
    border: none;
    border-radius: 8px;
    padding: 24px;
    margin: 30px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-left: 4px solid var(--orange-primary);
}

.expert-avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.expert-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.expert-content {
    flex: 1;
    min-width: 0;
}

.expert-content p {
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 12px 0;
    font-style: normal;
}

.expert-content cite {
    color: var(--orange-primary);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    display: block;
}

@media (max-width: 767px) {
    blockquote.expert-note {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        gap: 16px;
    }
    
    .expert-avatar {
        width: 56px;
        height: 56px;
    }
    
    .expert-content p {
        font-size: 15px;
    }
    
    .expert-content cite {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    blockquote.expert-note {
        padding: 16px;
        gap: 12px;
    }
    
    .expert-content p {
        font-size: 14px;
        margin-bottom: 10px;
    }
}
