@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap);

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

body {
    font-family: "Inter", sans-serif;
    background: #0f1923;
    color: #e2e8f0;
    min-height: 100vh;
    line-height: 1.6;
}

a { color: #38bdf8; text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* Header */
.header {
    background: #0f1923;
    padding: 16px 0;
    border-bottom: 1px solid #1e293b;
}
.header .container {
    display: flex;
    align-items: center;
    gap: 16px;
}
.header .logo img { height: 48px; width: auto; }
.header h1 {
    font-size: 16px;
    font-weight: 700;
    color: #e2e8f0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #0f2937 0%, #1a3a4a 100%);
    padding: 48px 0 40px;
    text-align: center;
}
.hero__view {
    display: inline-block;
    background: #f2ce74;
    color: #0f1923;
    font-weight: 700;
    font-size: 13px;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hero__headline {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.hero__updated {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 24px;
}
.hero__bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}
.hero__bullets li {
    font-size: 14px;
    color: #cbd5e1;
    padding-left: 24px;
    position: relative;
}
.hero__bullets li::before {
    content: "\2022";
    position: absolute;
    left: 8px;
    color: #f2ce74;
    font-weight: 700;
}

/* Main */
.main { padding: 40px 0 60px; }

/* Toplist */
.toplist {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.casino-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 24px;
    display: grid;
    grid-template-columns: 48px minmax(132px, 180px) 1fr auto;
    grid-template-rows: auto auto;
    gap: 12px 16px;
    align-items: start;
    position: relative;
}
.casino-card--top {
    border: 2px solid #f2ce74;
    box-shadow: 0 0 24px rgba(242, 206, 116, 0.1);
}

.badge {
    position: absolute;
    top: -10px;
    left: 24px;
    background: #f2ce74;
    color: #0f1923;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 12px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.casino-card__rank {
    font-size: 28px;
    font-weight: 700;
    color: #f2ce74;
    grid-column: 1;
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-card__logo {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 10px 12px;
    min-height: 86px;
    align-self: stretch;
}
.casino-card__logo img {
    max-width: 170px;
    max-height: 65px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.casino-card__info { grid-column: 3; }
.casino-card__info h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.casino-card__bonus-label {
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.casino-card__bonus-title {
    font-size: 18px;
    font-weight: 700;
    color: #f2ce74;
}
.casino-card__bonus-extra {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 12px;
}
.casino-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.casino-card__features li {
    font-size: 13px;
    color: #94a3b8;
    padding-left: 18px;
    position: relative;
}
.casino-card__features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}

.casino-card__actions {
    grid-column: 4;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
    min-width: 160px;
}

.casino-card__disclaimer {
    grid-column: 1 / -1;
    font-size: 11px;
    color: #64748b;
    text-align: center;
    border-top: 1px solid #334155;
    padding-top: 8px;
    margin-top: 4px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s;
}
.btn--primary {
    background: #22c55e;
    color: #fff;
}
.btn--primary:hover { background: #16a34a; text-decoration: none; }
.btn--secondary {
    background: transparent;
    border: 1px solid #475569;
    color: #cbd5e1;
}
.btn--secondary:hover { border-color: #94a3b8; text-decoration: none; }

/* Content sections */
.content {
    color: #cbd5e1;
}
.content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 32px 0 12px;
}
.content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #e2e8f0;
    margin: 20px 0 8px;
}
.content p { margin: 10px 0; font-size: 15px; }
.content ul, .content ol {
    padding-left: 24px;
    margin: 10px 0;
}
.content li {
    font-size: 14px;
    margin-bottom: 6px;
    list-style: disc;
}
.content strong { color: #fff; }

/* Footer */
.footer {
    background: #0b1219;
    padding: 32px 0;
    text-align: center;
    border-top: 1px solid #1e293b;
}
.footer p {
    font-size: 13px;
    color: #64748b;
    margin: 4px 0;
}
.footer__disclaimer {
    font-size: 12px;
    color: #475569;
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero__headline { font-size: 26px; }
    .header h1 { font-size: 14px; }
    .casino-card {
        grid-template-columns: 40px 1fr;
        grid-template-rows: auto auto auto auto;
    }
    .casino-card__rank {
        grid-column: 1;
        grid-row: 1 / 2;
    }
    .casino-card__logo {
        grid-column: 2;
        grid-row: 1;
        min-height: 72px;
        justify-content: flex-start;
    }
    .casino-card__info {
        grid-column: 1 / -1;
        grid-row: 2;
    }
    .casino-card__actions {
        grid-column: 1 / -1;
        grid-row: 3;
        flex-direction: row;
    }
    .casino-card__actions .btn { flex: 1; }
    .content h2 { font-size: 20px; }
}
