/* === R7 Casino — Brand Stylesheet === */
/* Dark theme with golden-orange accents */

:root {
    --bg-primary: #07070d;
    --bg-secondary: #0f0f1a;
    --bg-card: #151525;
    --bg-card-hover: #1a1a30;
    --accent: #f5a623;
    --accent-hover: #ffb833;
    --accent-orange: #ff6b35;
    --gradient-cta: linear-gradient(135deg, #f5a623 0%, #ff6b35 100%);
    --gradient-hero: linear-gradient(180deg, rgba(245,166,35,0.08) 0%, transparent 60%);
    --text-primary: #eaeaea;
    --text-secondary: #a0a0b8;
    --text-muted: #6b6b80;
    --border: #222238;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
    --transition: 0.25s ease;
    --max-width: 1140px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    min-height: 100vh;
}

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;
    color: var(--text-primary);
    font-weight: 700;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 0.6em; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0.5em; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); margin-bottom: 0.4em; }

p { margin-bottom: 1em; color: var(--text-secondary); }

ul, ol { padding-left: 1.5em; margin-bottom: 1em; color: var(--text-secondary); }
li { margin-bottom: 0.4em; }

/* === CONTAINER === */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* === HEADER === */
.site-header {
    background: rgba(7,7,13,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo span { font-weight: 400; opacity: 0.85; }

.nav-main { display: flex; gap: 24px; align-items: center; }
.nav-main a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
    white-space: nowrap;
}
.nav-main a:hover { color: var(--accent); }

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--gradient-cta);
    color: #0a0a0f !important;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
    -webkit-text-fill-color: #0a0a0f;
}
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245,166,35,0.35);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    color: var(--accent) !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--accent);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.btn-cta-outline:hover {
    background: rgba(245,166,35,0.1);
    transform: translateY(-2px);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px;
}

/* === HERO === */
.hero {
    background: var(--gradient-hero);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.hero h1 { margin-bottom: 0.4em; }
.hero h1 .accent { color: var(--accent); -webkit-text-fill-color: var(--accent); }

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto 2em;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 3em;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* === SECTIONS === */
.section {
    padding: 60px 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--bg-secondary);
}

.section-title {
    text-align: center;
    margin-bottom: 0.3em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2.5em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* === CARDS GRID === */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(245,166,35,0.3);
    box-shadow: var(--shadow);
}

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: block;
}

.card h3 { margin-bottom: 0.5em; }
.card p { font-size: 0.93rem; margin-bottom: 0; }

/* === FEATURES LIST === */
.features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.features-list li {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.features-list li .emoji {
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* === INFO BLOCK === */
.info-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    margin-bottom: 24px;
}

.info-block h2,
.info-block h3 {
    margin-bottom: 0.5em;
}

/* === TABLE === */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
    font-size: 0.93rem;
}

.info-table th,
.info-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.info-table th {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(245,166,35,0.05);
}

.info-table td { color: var(--text-secondary); }
.info-table tr:last-child td { border-bottom: none; }

/* === REVIEWS === */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-cta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #0a0a0f;
    flex-shrink: 0;
}

.review-name { font-weight: 600; font-size: 0.95rem; color: var(--text-primary); }
.review-date { font-size: 0.8rem; color: var(--text-muted); }
.review-stars { color: var(--accent); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 8px; }
.review-text { font-size: 0.9rem; color: var(--text-secondary); margin: 0; }

/* === WINS TICKER === */
.wins-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.win-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.win-game { font-weight: 600; color: var(--text-primary); font-size: 0.95rem; }
.win-player { color: var(--text-muted); font-size: 0.85rem; }
.win-amount { font-weight: 800; color: var(--accent); font-size: 1.1rem; white-space: nowrap; }

/* === FAQ === */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    padding: 20px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: inherit;
    line-height: 1.4;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

/* === ARTICLE === */
.article-block {
    max-width: 780px;
    margin: 0 auto;
}

.article-block h2 { margin-top: 1.5em; }
.article-block h3 { margin-top: 1.2em; }

.article-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 1.5em;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.article-meta span { display: flex; align-items: center; gap: 4px; }

/* === STEPS === */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    counter-reset: step;
}

.step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    position: relative;
    text-align: center;
}

.step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-cta);
    color: #0a0a0f;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 16px;
}

.step h3 { font-size: 1rem; margin-bottom: 0.4em; }
.step p { font-size: 0.88rem; margin: 0; }

/* === BANNER === */
.banner {
    background: var(--gradient-cta);
    border-radius: var(--radius);
    padding: 40px 36px;
    text-align: center;
    margin: 40px 0;
}

.banner h2 { color: #0a0a0f; }
.banner p { color: rgba(10,10,15,0.7); }

.banner .btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-primary);
    color: var(--accent) !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 32px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
    margin-top: 8px;
}

.banner .btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* === FOOTER === */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 12px;
    max-width: 320px;
}

.footer-links h4 {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--text-muted); font-size: 0.88rem; }
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy { font-size: 0.82rem; color: var(--text-muted); }
.footer-disclaimer {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    text-align: right;
}

/* === BREADCRUMBS === */
.breadcrumbs {
    padding: 16px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { margin: 0 6px; }

/* === PAGE HEADER === */
.page-header {
    padding: 40px 0 30px;
    background: var(--gradient-hero);
    border-bottom: 1px solid var(--border);
}

.page-header h1 { margin-bottom: 0.3em; }
.page-header p { max-width: 640px; }

/* === PAGE CONTENT === */
.page-content {
    padding: 40px 0 60px;
}

.page-content h2 { margin-top: 2em; }
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { margin-top: 1.5em; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .nav-main { display: none; }
    .nav-main.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border);
        padding: 16px 20px;
        gap: 12px;
    }
    .menu-toggle { display: block; }

    .hero { padding: 50px 0 40px; }
    .hero-stats { gap: 24px; }

    .section { padding: 40px 0; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-disclaimer { text-align: center; }

    .info-block { padding: 24px 20px; }

    .banner { padding: 28px 20px; }
}

@media (max-width: 480px) {
    body { font-size: 15px; }

    .hero-buttons { flex-direction: column; align-items: center; }
    .btn-cta, .btn-cta-outline { width: 100%; max-width: 280px; justify-content: center; }

    .cards-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
}
