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

:root {
    --bg-dark: #0f1923;
    --bg-card: #1a2c3b;
    --bg-card-alt: #162533;
    --text-white: #ffffff;
    --text-gray: #b0bec5;
    --text-muted: #78909c;
    --accent-primary: #00e676;
    --accent-secondary: #00bfa5;
    --accent-gold: #ffd54f;
    --accent-orange: #ffab40;
    --gradient-main: linear-gradient(135deg, #00e676, #00bfa5);
    --gradient-button: linear-gradient(90deg, #00e676, #00bfa5, #26c6da);
    --gradient-logo: linear-gradient(135deg, #00e676, #00bfa5, #26c6da);
    --border-color: rgba(0, 230, 118, 0.25);
    --border-muted: rgba(255, 255, 255, 0.1);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

/* === HEADER === */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 25, 35, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-muted);
    padding: 16px 0;
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-logo);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    color: var(--bg-dark);
}

.logo-title {
    display: block;
    font-weight: 700;
    font-size: 18px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.logo-subtitle {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.header-buttons {
    display: flex;
    gap: 12px;
}

.btn-header {
    padding: 10px 24px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-header-outline {
    border: 1px solid var(--border-muted);
    color: var(--text-white);
}

.btn-header-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn-header-primary {
    background: var(--gradient-button);
    color: var(--bg-dark);
    font-weight: 700;
}

.btn-header-primary:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* === HERO === */
.hero {
    padding: 60px 0 80px;
}

.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: start;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid var(--border-color);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 24px;
    max-width: 640px;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.trophies {
    font-size: 18px;
}

.rating-score {
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 16px;
}

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

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.btn-main {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 28px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
}

.btn-gradient {
    background: var(--gradient-button);
    color: var(--bg-dark);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 230, 118, 0.3);
}

.btn-outline {
    border: 2px solid var(--border-muted);
    color: var(--text-white);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn-center {
    display: block;
    width: fit-content;
    margin: 32px auto 0;
}

.hero-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.check-item {
    font-size: 14px;
    color: var(--text-gray);
}

.check-item::before {
    color: var(--accent-primary);
}

/* HERO CARD */
.hero-card {
    background: var(--bg-card);
    border: 1px solid var(--border-muted);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.card-title {
    font-weight: 700;
    font-size: 18px;
}

.card-badge {
    background: rgba(0, 230, 118, 0.15);
    color: var(--accent-primary);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.card-desc {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-card {
    display: block;
    text-align: center;
    padding: 14px;
    background: var(--gradient-button);
    color: var(--bg-dark);
    font-weight: 700;
    border-radius: 28px;
    font-size: 15px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.btn-card:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 230, 118, 0.3);
}

.card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat-box {
    background: var(--bg-card-alt);
    border: 1px solid var(--border-muted);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-primary);
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* === EDITOR NOTE === */
.editor-note {
    padding: 0 0 60px;
}

.editor-note-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.editor-note-inner {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.editor-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.editor-content strong {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
}

.editor-content p {
    color: var(--text-gray);
    font-size: 14px;
}

/* === FEATURES === */
.features {
    padding: 60px 0;
}

.features-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.features-inner h2,
.steps-inner h2,
.slot-lobby-inner h2,
.live-winners-inner h2,
.blog-inner h2,
.reviews-inner h2,
.faq-inner h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 36px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-muted);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.feature-badge {
    display: inline-block;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-gold);
}

.feature-card p {
    color: var(--text-gray);
    font-size: 14px;
}

/* === STEPS === */
.steps {
    padding: 60px 0;
}

.steps-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.steps-list {
    margin-top: 32px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--bg-dark);
    font-size: 16px;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 6px;
}

.step-content p {
    color: var(--text-gray);
    font-size: 14px;
}

/* === SLOT LOBBY === */
.slot-lobby {
    padding: 60px 0;
}

.slot-lobby-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.slot-card {
    background: var(--bg-card);
    border: 1px solid var(--border-muted);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    transition: border-color 0.3s;
}

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

.slot-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.slot-name {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid var(--border-muted);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-gray);
}

/* RTP TABLE */
.rtp-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.rtp-table {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
}

.rtp-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 16px 24px;
    background: rgba(0, 230, 118, 0.08);
    font-weight: 700;
    font-size: 14px;
}

.rtp-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 14px 24px;
    border-top: 1px solid var(--border-muted);
    font-size: 14px;
    color: var(--text-gray);
}

/* === LIVE WINNERS === */
.live-winners {
    padding: 60px 0;
}

.live-winners-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.winners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
    margin-bottom: 40px;
}

.winner-card {
    background: var(--bg-card);
    border: 1px solid var(--border-muted);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.winner-card.winner-featured {
    border-color: var(--accent-primary);
}

.winner-name {
    display: block;
    font-weight: 700;
    font-size: 16px;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.winner-amount {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 8px;
}

.winner-card p {
    color: var(--text-muted);
    font-size: 13px;
}

.stats-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.stats-item {
    background: var(--bg-card);
    border: 1px solid var(--border-muted);
    border-radius: var(--radius);
    padding: 14px 16px;
    text-align: center;
    font-size: 13px;
    color: var(--text-gray);
}

/* === BLOG === */
.blog {
    padding: 60px 0;
}

.blog-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-muted);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.blog-date {
    display: inline-block;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid var(--border-color);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    color: var(--accent-primary);
    margin-bottom: 16px;
}

.blog-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-card p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 16px;
}

.blog-link {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--border-muted);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-gray);
    transition: all 0.3s;
}

.blog-link:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* === REVIEWS === */
.reviews {
    padding: 60px 0;
}

.reviews-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-muted);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.review-card p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 12px;
    font-style: italic;
}

.review-author {
    font-size: 13px;
    color: var(--text-muted);
}

/* === FAQ === */
.faq {
    padding: 60px 0;
}

.faq-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-list {
    margin-top: 32px;
}

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

.faq-item.faq-featured {
    border-color: var(--accent-primary);
}

.faq-item summary {
    padding: 18px 24px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--accent-gold);
    list-style: none;
}

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

.faq-item summary::after {
    content: '+';
    font-size: 20px;
    color: var(--accent-primary);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 24px 18px;
    color: var(--text-gray);
    font-size: 14px;
}

/* === WARNING === */
.warning {
    padding: 40px 0;
}

.warning-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.warning-inner p {
    background: rgba(255, 82, 82, 0.08);
    border: 1px solid rgba(255, 82, 82, 0.3);
    border-radius: var(--radius);
    padding: 18px 24px;
    font-size: 14px;
    color: #ff8a80;
}

/* === FOOTER === */
.footer {
    background: var(--bg-card-alt);
    padding: 40px 0;
    border-top: 1px solid var(--border-muted);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.footer-inner p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 16px;
}

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

.footer-links a {
    padding: 8px 16px;
    border: 1px solid var(--border-muted);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-gray);
    transition: all 0.3s;
}

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

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .winners-grid,
    .blog-grid,
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }

    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-bar {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }

    .features-inner h2,
    .steps-inner h2,
    .slot-lobby-inner h2,
    .live-winners-inner h2,
    .blog-inner h2,
    .reviews-inner h2,
    .faq-inner h2 {
        font-size: 24px;
    }

    .features-grid,
    .winners-grid,
    .blog-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

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

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

    .hero-checks {
        grid-template-columns: 1fr;
    }

    .rtp-header,
    .rtp-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        font-size: 12px;
        padding: 12px 16px;
    }

    .header-buttons {
        gap: 8px;
    }

    .btn-header {
        padding: 8px 16px;
        font-size: 13px;
    }

    .card-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-main {
        text-align: center;
    }

    .slots-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-bar {
        grid-template-columns: 1fr;
    }
}

/* === INFO BLOCKS === */
.info-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 36px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-muted);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.info-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.info-card p {
    color: var(--text-gray);
    font-size: 14px;
}

/* === MOBILE FIXED BUTTONS === */
@media (max-width: 768px) {
    .header {
        padding-bottom: 76px;
    }

    .header-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(15, 25, 35, 0.98);
        backdrop-filter: blur(10px);
        padding: 12px 16px;
        border-top: 1px solid var(--border-muted);
        z-index: 999;
        display: flex;
    }

    .header-buttons .btn-header {
        flex: 1;
        text-align: center;
        border-radius: 14px;
    }

    .info-blocks {
        grid-template-columns: 1fr;
    }

    body {
        padding-bottom: 90px;
    }
}
