/* Slotoro Casino — CSS-only premium design
   Brand colors: #58bc89 green, #0E0A14 dark bg
   No images. CSS gradients, patterns, inline SVG only.
*/

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

:root {
    --primary: #58bc89;
    --primary-dark: #3a9e6f;
    --primary-light: #7dd4a8;
    --cta: #58bc89;
    --cta-hover: #4aa97a;
    --bg: #0E0A14;
    --bg-light: #15101f;
    --bg-card: #1a1528;
    --bg-elevated: #221a35;
    --text: #e8e4f0;
    --text-muted: #a89bbf;
    --text-dim: #6b6280;
    --border: #2a1f3d;
    --border-hover: #3d2f54;
    --white: #ffffff;
    --gold: #f0c75e;
    --red: #ff4444;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(0,0,0,0.3);
    --shadow-glow: 0 0 30px rgba(88,188,137,0.15);
}

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* ===== Header ===== */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(14, 10, 20, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    max-width: 1180px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--bg);
    font-weight: 900;
}

.logo span { color: var(--white); }
.logo .green { color: var(--primary); }

nav ul {
    display: flex;
    list-style: none;
    gap: 26px;
}

nav ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary);
}

/* ===== Hero ===== */
.hero {
    background:
        radial-gradient(ellipse at 30% 20%, rgba(88,188,137,0.12), transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(88,188,137,0.06), transparent 50%),
        linear-gradient(180deg, #110b1c 0%, var(--bg) 100%);
    padding: 80px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(88,188,137,0.04) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(88,188,137,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: -1px;
}

.hero h1 .accent { color: var(--primary); }

.hero .lead {
    font-size: 19px;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 32px;
    position: relative;
}

.hero .trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 36px;
    position: relative;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(88,188,137,0.08);
    border: 1px solid rgba(88,188,137,0.2);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
}

.trust-badge svg { width: 14px; height: 14px; }

/* ===== CTA Button ===== */
.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg);
    padding: 16px 42px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(88,188,137,0.35);
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 32px rgba(88,188,137,0.5);
}

.cta-btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--border-hover);
    transition: all 0.2s;
}

.cta-btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ===== Sections ===== */
section {
    padding: 64px 20px;
}

section.alt {
    background: var(--bg-light);
}

section h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: -0.5px;
}

section h2 .accent { color: var(--primary); }

section .subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 17px;
    max-width: 640px;
    margin: 0 auto 36px;
}

section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 8px;
}

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

a { color: var(--primary); }

/* ===== Game Cards ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1180px;
    margin: 0 auto;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
    position: relative;
}

.game-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.game-card .card-visual {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Slot card gradients — unique per card */
.gradient-1 { background: linear-gradient(135deg, #1a3a2a, #0d4d2e); }
.gradient-2 { background: linear-gradient(135deg, #2a1a3a, #3d1f54); }
.gradient-3 { background: linear-gradient(135deg, #3a2a1a, #5c4a1e); }
.gradient-4 { background: linear-gradient(135deg, #1a2a3a, #1f4a6e); }
.gradient-5 { background: linear-gradient(135deg, #3a1a2a, #6e1f4a); }
.gradient-6 { background: linear-gradient(135deg, #1a3a3a, #2a5e5e); }
.gradient-7 { background: linear-gradient(135deg, #2a3a1a, #4a6e1f); }
.gradient-8 { background: linear-gradient(135deg, #3a1a1a, #6e2a1f); }
.gradient-9 { background: linear-gradient(135deg, #1a1a3a, #2a2a6e); }

.game-card .card-visual .card-icon {
    font-size: 40px;
    opacity: 0.6;
}

.game-card .card-visual .rtp-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(88,188,137,0.9);
    color: var(--bg);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}

.game-card .card-visual .provider-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-card .card-body {
    padding: 20px;
}

.game-card .card-body h3 {
    margin: 0 0 6px;
    color: var(--white);
}

.game-card .card-body p {
    font-size: 14px;
    margin: 0;
    color: var(--text-muted);
}

/* Generic card */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color 0.2s;
}

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

.card h3 {
    margin-bottom: 8px;
    color: var(--primary);
}

/* ===== Bonus Box ===== */
.bonus-box {
    background:
        linear-gradient(135deg, rgba(88,188,137,0.08), rgba(88,188,137,0.02)),
        var(--bg-card);
    border: 1px solid rgba(88,188,137,0.3);
    border-radius: 20px;
    padding: 44px;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
    position: relative;
    overflow: hidden;
}

.bonus-box::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(88,188,137,0.06), transparent 40%);
    pointer-events: none;
}

.bonus-box .amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}

.bonus-box .desc {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ===== Payments ===== */
.payments-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.pay-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    transition: border-color 0.2s;
}

.pay-badge:hover {
    border-color: var(--primary);
}

.pay-badge svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.pay-badge .pay-name {
    font-size: 13px;
}

/* ===== Steps ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1180px;
    margin: 0 auto;
}

.step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    position: relative;
}

.step .num {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 10px;
}

.step h3 {
    color: var(--white);
    margin: 0 0 6px;
}

.step p {
    font-size: 14px;
    margin: 0;
}

/* ===== FAQ ===== */
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    transition: border-color 0.2s;
}

.faq-item:hover { border-color: var(--border-hover); }

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--white);
    font-size: 16px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.faq-item summary::after {
    content: '+';
    font-size: 22px;
    color: var(--primary);
    font-weight: 300;
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 15px;
}

/* ===== Info Table ===== */
.info-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.info-table th, .info-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.info-table th {
    background: var(--bg-elevated);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

.info-table td {
    color: var(--text-muted);
    font-size: 14px;
}

.info-table tr:last-child td { border-bottom: none; }

.info-table td:first-child { color: var(--white); font-weight: 600; }

/* ===== Footer ===== */
footer {
    background: #08050d;
    border-top: 1px solid var(--border);
    padding: 48px 20px 28px;
    text-align: center;
}

footer .footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 28px;
}

footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
}

footer .footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

footer .footer-links a:hover { color: var(--primary); }

footer .eighteen {
    display: inline-block;
    border: 2px solid #c8202e;
    color: #ff4444;
    font-weight: 700;
    font-size: 18px;
    padding: 6px 16px;
    border-radius: 8px;
    margin-bottom: 12px;
}

footer .copyright {
    color: var(--text-dim);
    font-size: 13px;
}

footer .disclaimer {
    color: var(--text-dim);
    font-size: 12px;
    max-width: 600px;
    margin: 12px auto 0;
    line-height: 1.5;
}

/* ===== Internal Links ===== */
.internal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding: 20px 0;
}

.internal-links a {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.2s;
}

.internal-links a:hover {
    border-color: var(--primary);
    background: rgba(88,188,137,0.05);
}

/* ===== Divider ===== */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    max-width: 800px;
    margin: 0 auto;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .hero h1 { font-size: 34px; }
    .hero .lead { font-size: 16px; }
    nav ul { display: none; }
    section h2 { font-size: 26px; }
    .bonus-box .amount { font-size: 36px; }
    .bonus-box { padding: 28px 20px; }
    .cards-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
}
