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

:root {
    --primary: #1a2b5f;
    --primary-light: #2a3f7e;
    --primary-dark: #0f1a3d;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --gold: #f59e0b;
    --gold-light: #fbbf24;
    --success: #10b981;
    --danger: #ef4444;
    --bg-dark: #0d0d0d;
    --bg-section: #111827;
    --bg-card: #1e293b;
    --bg-card-hover: #253349;
    --text-white: #f8fafc;
    --text-gray: #94a3b8;
    --text-light: #cbd5e1;
    --border: #334155;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0,0,0,.3);
    --shadow-lg: 0 8px 40px rgba(0,0,0,.4);
    --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }

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

h1, h2, h3, h4, h5, h6 { line-height: 1.3; font-weight: 700; }

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

/* ===== HEADER ===== */
.site-header {
    background: var(--primary-dark);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-white);
}
.logo-icon-img {
    height: 42px;
    width: 42px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 10px;
}
.logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-white);
}
.logo-accent { color: var(--accent); }

.main-nav > ul {
    display: flex;
    list-style: none;
    gap: 4px;
}
.main-nav a {
    display: block;
    padding: 10px 16px;
    color: var(--text-light);
    font-weight: 500;
    font-size: 15px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active {
    color: var(--text-white);
    background: var(--primary-light);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    min-width: 220px;
    padding: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 100;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li { list-style: none; }
.dropdown a {
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 6px;
}
.dropdown a:hover { background: var(--primary); }

/* Mobile menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-toggle span {
    width: 24px; height: 2px;
    background: var(--text-white);
    transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, rgba(15,26,61,.85), rgba(26,43,95,.8)), var(--hero-bg) center/cover no-repeat;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(59,130,246,.1) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 1; }
.hero h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero h1 span { color: var(--accent); }
.hero p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 36px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
}
.hero-stat { text-align: center; }
.hero-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--gold);
}
.hero-stat-label {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 4px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
}
.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(59,130,246,.4);
}
.btn-gold {
    background: var(--gold);
    color: var(--bg-dark);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--bg-dark);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}
.btn-outline:hover {
    background: var(--accent);
    color: #fff;
}
.btn-lg { padding: 16px 36px; font-size: 17px; }

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}
.section-dark { background: var(--bg-section); }
.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
}
.section-title span { color: var(--accent); }
.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 48px;
}

/* ===== CASINO CARDS ===== */
.casino-list { display: flex; flex-direction: column; gap: 20px; }

.casino-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    align-items: center;
}
.casino-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: var(--bg-dark);
    font-weight: 800;
    font-size: 14px;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}

.casino-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
}
.casino-logo-wrap {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}
.casino-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
}
.casino-logo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 11px;
    text-align: center;
    color: #fff;
    padding: 4px;
}
.casino-info h3 {
    font-size: 20px;
    margin-bottom: 6px;
}
.casino-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}
.rating-score {
    background: var(--success);
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}
.stars { color: var(--gold); font-size: 16px; }
.star.empty { color: var(--border); }

.casino-card-body { padding: 24px; border-left: 1px solid var(--border); }
.casino-bonus {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}
.bonus-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-gray);
    letter-spacing: 1px;
}
.bonus-value {
    font-size: 17px;
    font-weight: 700;
    color: var(--gold);
}
.casino-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.casino-features li {
    font-size: 13px;
    color: var(--text-light);
    background: rgba(59,130,246,.1);
    padding: 4px 10px;
    border-radius: 20px;
}

.casino-card-footer {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    border-left: 1px solid var(--border);
}

/* ===== INFO BLOCKS ===== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--transition);
}
.info-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.info-card-icon {
    font-size: 40px;
    margin-bottom: 16px;
}
.info-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.info-card p {
    color: var(--text-gray);
    font-size: 15px;
}

/* ===== CONTENT BLOCKS ===== */
.content-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    margin-bottom: 32px;
}
.content-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-white);
}
.content-block h3 {
    font-size: 22px;
    margin: 24px 0 12px;
    color: var(--text-white);
}
.content-block p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 16px;
}
.content-block ul, .content-block ol {
    color: var(--text-light);
    margin: 0 0 16px 20px;
}
.content-block li { margin-bottom: 8px; }

/* ===== PROS/CONS ===== */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 24px 0;
}
.pros, .cons {
    background: var(--bg-section);
    border-radius: var(--radius-sm);
    padding: 24px;
}
.pros { border-left: 4px solid var(--success); }
.cons { border-left: 4px solid var(--danger); }
.pros h4, .cons h4 {
    font-size: 18px;
    margin-bottom: 12px;
}
.pros h4 { color: var(--success); }
.cons h4 { color: var(--danger); }
.pros li::marker { color: var(--success); }
.cons li::marker { color: var(--danger); }

/* ===== RATING TABLE ===== */
.rating-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}
.rating-table th, .rating-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.rating-table th {
    background: var(--primary-dark);
    color: var(--text-white);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.rating-table td { color: var(--text-light); }
.rating-table tr:hover td { background: rgba(59,130,246,.05); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}
.faq-question:hover { background: var(--bg-card-hover); }
.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--accent);
    transition: transform var(--transition);
}
.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}
.faq-answer {
    display: none;
    padding: 0 24px 20px;
    color: var(--text-gray);
    line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    padding: 16px 0;
}
.breadcrumbs ol {
    display: flex;
    list-style: none;
    gap: 8px;
    font-size: 14px;
    color: var(--text-gray);
}
.breadcrumbs li::after { content: ' ›'; margin-left: 8px; }
.breadcrumbs li:last-child::after { content: ''; }
.breadcrumbs a { color: var(--text-gray); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .active { color: var(--text-white); }

/* ===== COMPARISON TABLE ===== */
.comparison-table-wrap { overflow-x: auto; margin: 24px 0; }
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.comparison-table th, .comparison-table td {
    padding: 16px;
    text-align: center;
    border: 1px solid var(--border);
}
.comparison-table th {
    background: var(--primary);
    color: var(--text-white);
    font-weight: 700;
}
.comparison-table td { background: var(--bg-card); color: var(--text-light); }
.comparison-table tr:hover td { background: var(--bg-card-hover); }

/* ===== BONUS CARDS ===== */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}
.bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: all var(--transition);
}
.bonus-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.bonus-card-title {
    font-size: 22px;
    margin-bottom: 8px;
}
.bonus-card-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 12px;
}
.bonus-card-desc {
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* ===== PAYMENT METHODS ===== */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}
.payment-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px;
    text-align: center;
    transition: all var(--transition);
}
.payment-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}
.payment-icon { font-size: 36px; margin-bottom: 10px; }
.payment-name { font-weight: 600; font-size: 15px; }
.payment-speed { font-size: 13px; color: var(--text-gray); margin-top: 4px; }

/* ===== REVIEW DETAIL ===== */
.review-hero {
    background: linear-gradient(135deg, rgba(15,26,61,.9), rgba(26,43,95,.85)), var(--hero-bg) center/cover no-repeat;
    padding: 60px 0;
    position: relative;
}
.review-hero-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}
.review-hero-logo {
    width: 120px;
    height: 120px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}
.review-hero-info h1 { font-size: 40px; margin-bottom: 8px; }
.review-hero-info .rating-score { font-size: 18px; padding: 6px 16px; }
.review-meta {
    display: flex;
    gap: 24px;
    margin-top: 16px;
    color: var(--text-gray);
    font-size: 14px;
}
.review-meta span strong { color: var(--text-white); }

/* ===== SIDEBAR LAYOUT ===== */
.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    align-items: start;
}
.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
}
.sidebar-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.sidebar-nav { list-style: none; }
.sidebar-nav li { margin-bottom: 8px; }
.sidebar-nav a {
    display: block;
    padding: 8px 12px;
    color: var(--text-gray);
    border-radius: 6px;
    font-size: 14px;
}
.sidebar-nav a:hover {
    background: var(--primary);
    color: var(--text-white);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--primary-dark);
    border-top: 1px solid var(--border);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-white);
    margin-bottom: 16px;
}
.footer-logo .logo-icon-img {
    height: 36px;
    width: 36px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 8px;
}
.footer-desc { color: var(--text-gray); font-size: 14px; }
.footer-col h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--text-white);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
    color: var(--text-gray);
    font-size: 14px;
}
.footer-col a:hover { color: var(--accent); }

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.badge {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-gray);
}

.footer-disclaimer {
    padding: 24px 0;
    text-align: center;
}
.footer-disclaimer p {
    font-size: 12px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 13px; color: var(--text-gray); }

/* ===== ABOUT PAGE ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
}
.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 16px;
}
.team-card img {
    display: block;
    margin: 0 auto 16px;
}
.team-card h3 { font-size: 18px; margin-bottom: 4px; }
.team-card .role { color: var(--accent); font-size: 14px; margin-bottom: 12px; }
.team-card p { color: var(--text-gray); font-size: 14px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .content-with-sidebar { grid-template-columns: 1fr; }
    .sidebar-card { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        border-bottom: 1px solid var(--border);
        padding: 16px;
    }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: 0; }
    .dropdown {
        position: static;
        box-shadow: none;
        border: none;
        background: var(--primary);
        display: none;
    }
    .has-dropdown:hover .dropdown { display: block; }

    .hero { padding: 48px 0; }
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 17px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .hero-stat-number { font-size: 28px; }

    .section { padding: 48px 0; }
    .section-title { font-size: 28px; }

    .casino-card { grid-template-columns: 1fr; }
    .casino-card-body, .casino-card-footer { border-left: none; border-top: 1px solid var(--border); }

    .info-grid { grid-template-columns: 1fr; }
    .pros-cons { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-badges { flex-wrap: wrap; }

    .review-hero-inner { flex-direction: column; text-align: center; }
    .review-meta { flex-wrap: wrap; justify-content: center; }

    .content-block { padding: 24px; }
    .content-block h2 { font-size: 24px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 26px; }
    .bonus-grid { grid-template-columns: 1fr; }
    .payment-grid { grid-template-columns: repeat(2, 1fr); }
}
