/* CasinoCanada — Simple Dark Theme */

:root {
    --bg: #0f172a;
    --surface: #1a2332;
    --card: #1e293b;
    --border: #2d3a4a;
    --border-gold: #d4a017;
    --text: #e2e8f0;
    --text-muted: #8899aa;
    --text-dim: #5a6a7a;
    --green: #22c55e;
    --red: #e11d48;
    --gold: #fbbf24;
    --radius: 10px;
}

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

body {
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text);
    background: var(--bg);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* Header */
.site-header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

.main-nav a {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.main-nav a:hover { color: var(--text); }

/* Hero */
.hero {
    background: linear-gradient(135deg, #1a2332 0%, #162033 50%, #1a1a2e 100%);
    border-bottom: 1px solid var(--border);
    padding: 52px 20px 48px;
    text-align: center;
}

.hero-inner {
    max-width: 700px;
    margin: 0 auto;
}

.hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 14px;
    font-style: normal;
    text-align: center;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 36px;
}

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

.hero-stat strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.hero-stat span {
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px 60px;
}

.list-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 28px;
    font-style: italic;
}

.list-title span {
    color: var(--text-muted);
    font-weight: 400;
}

/* === Casino Card === */
.casino-card {
    background: var(--card);
    border: 2px solid var(--border-gold);
    border-radius: var(--radius);
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 160px 1fr 180px;
    position: relative;
    overflow: hidden;
}

/* TOP badge */
.card-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--red);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 0 0 8px 0;
    z-index: 2;
}

/* Left — Logo + Review */
.card-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 16px;
    border-right: 1px solid var(--border);
    background: var(--surface);
}

.casino-logo {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-logo img {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
}

.read-review {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.read-review:hover { color: var(--text); }

/* Center — Bonus + Tags + Payment + Features */
.card-center {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bonus-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.bonus-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.bonus-terms {
    font-size: 0.7rem;
    color: var(--text-dim);
}

/* Game tags */
.game-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}

.tag {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.tag-slots { color: #f59e0b; }
.tag-blackjack { color: #3b82f6; }
.tag-roulette { color: #94a3b8; }
.tag-baccarat { color: #ef4444; }

.all-games {
    font-size: 0.75rem;
    color: var(--gold);
    margin-left: auto;
    cursor: pointer;
}

.all-games:hover { text-decoration: underline; }

/* Payment methods */
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 2px;
}

.pay-badge {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Features */
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 20px;
    margin-top: 4px;
}

.feature {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.feature::first-letter {
    color: var(--green);
}

/* Right — Name + Rating + Button */
.card-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 16px;
    border-left: 1px solid var(--border);
    background: var(--surface);
}

.casino-name-flag {
    display: flex;
    align-items: center;
    gap: 6px;
}

.flag {
    width: 20px;
    height: 14px;
}

.casino-name {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rating {
    text-align: center;
}

.stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.score {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

.btn-join {
    display: block;
    border: 2px solid var(--red);
    color: var(--red);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 28px;
    border-radius: 6px;
    transition: all 0.2s;
    text-align: center;
}

.btn-join:hover {
    background: var(--red);
    color: #fff;
}

/* Footer */
.site-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 24px 20px;
    text-align: center;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
}

.badge-18 {
    background: var(--red);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.badge-link {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.badge-link:hover { color: var(--text); }

.copyright {
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* === Info Blocks === */
.info-block {
    margin-top: 50px;
    margin-bottom: 10px;
}

.info-block h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text);
}

.intro-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Icon grid — Why BTC */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.icon-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 18px;
    transition: border-color 0.2s;
}

.icon-card:hover {
    border-color: var(--border-gold);
}

.icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.icon-circle.green  { background: rgba(34,197,94,0.12); }
.icon-circle.blue   { background: rgba(59,130,246,0.12); }
.icon-circle.gold   { background: rgba(251,191,36,0.12); }
.icon-circle.red    { background: rgba(225,29,72,0.12); }

.icon-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.icon-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Steps — How We Rate */
.steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: border-color 0.2s;
}

.step:hover {
    border-color: var(--border-gold);
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text);
}

.step-content p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Payment methods grid */
.methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.method-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 18px;
    transition: border-color 0.2s;
}

.method-card:hover {
    border-color: var(--border-gold);
}

.method-icon {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.method-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.method-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item[open] {
    border-color: var(--border-gold);
}

.faq-item summary {
    padding: 16px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
}

.faq-item summary:hover {
    background: var(--surface);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-muted);
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item[open] summary::after {
    content: '\2212';
    color: var(--gold);
}

.faq-item p {
    padding: 0 20px 16px;
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Text block */
.text-block p {
    color: var(--text-muted);
    font-size: 0.87rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.text-block p:last-child {
    margin-bottom: 0;
}

/* === Responsive === */
@media (max-width: 800px) {
    .casino-card {
        grid-template-columns: 1fr;
    }

    .card-badge {
        position: static;
        display: inline-block;
        border-radius: 0;
        text-align: center;
        padding: 6px;
    }

    .card-left {
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 14px;
    }

    .card-right {
        border-left: none;
        border-top: 1px solid var(--border);
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        padding: 14px;
        gap: 14px;
    }

    .btn-join {
        width: 100%;
    }

    .list-title { font-size: 1.1rem; }

    .hero { padding: 36px 16px 32px; }
    .hero h1 { font-size: 1.5rem; }
    .hero-stats { flex-direction: column; gap: 14px; padding: 18px 28px; }
    .hero-stat-divider { width: 60px; height: 1px; }
    .bonus-amount { font-size: 1.1rem; }

    .icon-grid { grid-template-columns: repeat(2, 1fr); }
    .methods-grid { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
    .icon-grid { grid-template-columns: 1fr; }
}
