/* ============================================
   Banzai Casino — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

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

button:focus,
button:focus-visible {
    outline: none;
}

*:focus {
    -webkit-tap-highlight-color: transparent;
}

:root {
    --red: #E80000;
    --red-dark: #C20000;
    --red-light: #FF3333;
    --dark: #0F0F13;
    --dark-2: #1A1A24;
    --dark-3: #252536;
    --dark-4: #32324A;
    --gold: #FFD700;
    --gold-dark: #D4A800;
    --white: #FFFFFF;
    --gray-100: #F5F5F7;
    --gray-200: #E8E8ED;
    --gray-300: #D1D1D9;
    --gray-400: #A0A0B0;
    --gray-500: #6E6E82;
    --text: #E0E0EC;
    --text-muted: #9898AD;
    --success: #22C55E;
    --warning: #F59E0B;
    --info: #3B82F6;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0,0,0,0.35);
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.2);
    --shadow-lg: 0 8px 48px rgba(0,0,0,0.5);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--red-light);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
    color: var(--white);
}

/* --- CONTAINER --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- HEADER / NAV --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15,15,19,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

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

.logo img {
    height: 36px;
    width: auto;
}

.logo span {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-menu li a {
    display: block;
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--white);
    background: rgba(232,0,0,0.12);
}

.header-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(232,0,0,0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(232,0,0,0.5);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
    border-color: var(--red);
    background: rgba(232,0,0,0.08);
    color: var(--white);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(255,215,0,0.35);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(255,215,0,0.5);
    color: var(--dark);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1001;
}

.hamburger:focus,
.hamburger:focus-visible,
.hamburger:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    -webkit-appearance: none;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center center;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    padding: 120px 0 60px;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(232,0,0,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255,215,0,0.08) 0%, transparent 40%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text h1 .highlight {
    background: linear-gradient(135deg, var(--red), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text .subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-badges {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.badge i {
    color: var(--gold);
}

.hero-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-lg);
}

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

.stat-card {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(232,0,0,0.06);
    border-color: rgba(232,0,0,0.2);
}

.stat-card .num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 4px;
}

.stat-card .label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- SECTION STYLES --- */
.section {
    padding: 80px 0;
    position: relative;
}

.section:nth-child(even) {
    background: rgba(255,255,255,0.015);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

.section-header .accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    border-radius: 4px;
    margin: 16px auto 0;
}

/* --- INFO TABLE STYLE --- */
.info-table-wrap {
    overflow-x: auto;
    margin: 32px 0;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.08);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.info-table thead th {
    background: rgba(232,0,0,0.15);
    color: var(--white);
    font-weight: 700;
    padding: 14px 20px;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-table tbody td {
    padding: 13px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text);
}

.info-table tbody tr:hover {
    background: rgba(255,255,255,0.03);
}

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

.info-table .label-cell {
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    width: 200px;
}

/* --- CARDS GRID --- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.card {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    opacity: 0;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(232,0,0,0.2);
    box-shadow: var(--shadow);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232,0,0,0.1);
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--red-light);
}

.card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* --- GAMES SECTION --- */
.games-showcase {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.08);
}

.games-showcase img {
    width: 100%;
}

.games-categories {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    justify-content: center;
}

.cat-tag {
    padding: 8px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
    cursor: default;
}

.cat-tag:hover,
.cat-tag.active {
    background: rgba(232,0,0,0.12);
    border-color: rgba(232,0,0,0.3);
    color: var(--white);
}

/* --- BONUS SECTION --- */
.bonus-card {
    background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 32px;
}

.bonus-card .amount {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.bonus-card .bonus-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.bonus-details {
    list-style: none;
}

.bonus-details li {
    padding: 8px 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.bonus-details li i {
    color: var(--success);
    font-size: 0.85rem;
}

/* --- CALCULATOR --- */
.calc-wrapper {
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.calc-wrapper h3 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 1.4rem;
}

.calc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.calc-field label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.calc-field input,
.calc-field select {
    width: 100%;
    padding: 14px 18px;
    background: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.calc-field input:focus,
.calc-field select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(232,0,0,0.15);
}

.calc-field select option {
    background: var(--dark-2);
}

.calc-btn {
    width: 100%;
    margin-top: 8px;
}

.calc-result {
    margin-top: 28px;
    padding: 28px;
    background: rgba(232,0,0,0.06);
    border: 1px solid rgba(232,0,0,0.15);
    border-radius: var(--radius);
    display: none;
}

.calc-result.active {
    display: block;
}

.calc-result h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--gold);
}

.result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.result-item {
    padding: 16px;
    background: rgba(0,0,0,0.2);
    border-radius: var(--radius-sm);
    text-align: center;
}

.result-item .val {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
}

.result-item .desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* --- PROS/CONS --- */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.pros-list, .cons-list {
    list-style: none;
    background: var(--dark-2);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.06);
}

.pros-list h4, .cons-list h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pros-list h4 { color: var(--success); }
.cons-list h4 { color: var(--red-light); }

.pros-list li, .cons-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.pros-list li:last-child, .cons-list li:last-child {
    border-bottom: none;
}

.pros-list li i { color: var(--success); margin-top: 3px; }
.cons-list li i { color: var(--red-light); margin-top: 3px; }

/* --- PROVIDERS LIST --- */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.provider-item {
    padding: 20px 16px;
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.provider-item:hover {
    border-color: rgba(232,0,0,0.2);
    background: rgba(232,0,0,0.05);
    color: var(--white);
}

/* --- FAQ ACCORDION --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--dark-2);
    transition: var(--transition);
}

.faq-item.open {
    border-color: rgba(232,0,0,0.2);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
    user-select: none;
    transition: var(--transition);
}

.faq-q:hover {
    background: rgba(255,255,255,0.02);
}

.faq-q i {
    transition: var(--transition);
    color: var(--red-light);
    font-size: 0.85rem;
}

.faq-item.open .faq-q i {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-a p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.8;
}

/* --- PAYMENT METHODS --- */
.payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.payment-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
}

.payment-tag:hover {
    border-color: rgba(232,0,0,0.2);
    color: var(--white);
}

/* --- PROMO BANNER --- */
.promo-banner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin: 32px 0;
}

.promo-banner img {
    width: 100%;
    display: block;
}

.promo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    text-align: center;
}

/* --- FOOTER --- */
.site-footer {
    background: var(--dark-2);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-top: 16px;
}

.footer-links h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li a {
    display: block;
    padding: 5px 0;
    color: var(--text-muted);
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--red-light);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* --- FORTUNE WHEEL --- */
.wheel-section {
    background: radial-gradient(ellipse at 50% 30%, rgba(232,0,0,0.08) 0%, transparent 60%);
}

.wheel-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.wheel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wheel-pointer {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--gold);
    z-index: 10;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
    line-height: 1;
}

#wheelCanvas {
    border-radius: 50%;
    box-shadow:
        0 0 0 8px var(--dark-3),
        0 0 0 12px rgba(255,215,0,0.3),
        0 0 40px rgba(232,0,0,0.2);
    transition: filter 0.3s ease;
}

#wheelCanvas:hover {
    filter: brightness(1.05);
}

.wheel-panel {
    min-height: 320px;
    display: flex;
    align-items: center;
}

.wheel-panel-inner {
    text-align: center;
}

.wheel-panel-inner h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.wheel-panel-inner p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.wheel-spin-btn {
    position: relative;
    overflow: hidden;
}

.wheel-spin-btn.spinning {
    pointer-events: none;
    opacity: 0.7;
}

.wheel-spin-btn i {
    transition: transform 0.4s ease;
}

.wheel-spin-btn.spinning i {
    animation: btnSpin 0.6s linear infinite;
}

@keyframes btnSpin {
    to { transform: rotate(360deg); }
}

.wheel-result {
    text-align: center;
    animation: resultPop 0.5s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes resultPop {
    from {
        opacity: 0;
        transform: scale(0.7);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.wheel-result-icon {
    font-size: 3.5rem;
    margin-bottom: 12px;
    animation: iconBounce 0.6s ease 0.3s both;
}

@keyframes iconBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.wheel-result h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--gold);
}

.wheel-result-prize {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.wheel-result-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

/* Wheel responsive */
@media (max-width: 768px) {
    .wheel-wrapper {
        grid-template-columns: 1fr;
        gap: 28px;
        justify-items: center;
    }
    #wheelCanvas {
        width: 280px !important;
        height: 280px !important;
    }
    .wheel-panel {
        min-height: auto;
    }
    .wheel-panel-inner h3 {
        font-size: 1.2rem;
    }
    .wheel-result-prize {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    #wheelCanvas {
        width: 240px !important;
        height: 240px !important;
    }
    .wheel-pointer {
        font-size: 1.5rem;
        top: -6px;
    }
}

/* --- MOBILE STICKY CTA (hidden by default, shown on small screens via @media) --- */
.mobile-sticky-cta {
    display: none;
}

/* --- SCROLL TO TOP --- */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--red-dark);
    transform: translateY(-4px);
}

/* --- RATING STARS --- */
.stars {
    display: flex;
    gap: 4px;
}

.stars i {
    color: var(--gold);
    font-size: 1rem;
}

/* --- STEPS --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
}

.step-item {
    text-align: center;
    padding: 32px 20px;
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    position: relative;
    transition: var(--transition);
}

.step-item:hover {
    border-color: rgba(232,0,0,0.2);
    transform: translateY(-3px);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    border-radius: 50%;
    margin-bottom: 16px;
}

.step-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.step-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- TWO COLUMN TEXT --- */
.text-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.text-cols p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* --- INLINE NOTICE --- */
.notice {
    padding: 20px 24px;
    background: rgba(59,130,246,0.08);
    border-left: 4px solid var(--info);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 24px 0;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.notice.warning {
    background: rgba(245,158,11,0.08);
    border-left-color: var(--warning);
}

/* --- RESPONSIVE: TABLET (max 1024px) --- */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hero-text h1 {
        font-size: 2.2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .bonus-card {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .text-cols {
        gap: 28px;
    }
    .providers-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}

/* --- RESPONSIVE: MOBILE (max 768px) --- */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    .container {
        padding: 0 16px;
    }

    /* -- Header Mobile -- */
    .site-header {
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    .header-inner {
        height: 60px;
    }
    .logo img {
        height: 28px;
    }
    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15,15,19,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 8px 16px 32px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 1000;
        border-bottom: none;
    }
    .nav-menu.open {
        display: flex;
    }
    .nav-menu li a {
        padding: 14px 16px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        border-radius: 0;
    }
    .nav-menu li:last-child a {
        border-bottom: none;
    }
    .hamburger {
        display: flex;
        order: 3;
    }
    .header-cta {
        order: 2;
    }
    .header-cta .btn-outline {
        display: none;
    }
    .header-cta .btn-primary {
        padding: 8px 16px;
        font-size: 0.8rem;
        border-radius: var(--radius-sm);
    }

    /* -- Hero Mobile -- */
    .hero {
        padding: 76px 0 32px;
        min-height: auto;
    }
    .hero-text h1 {
        font-size: 1.65rem;
        line-height: 1.25;
    }
    .hero-text .subtitle {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 24px;
    }
    .hero-badges {
        gap: 8px;
        margin-bottom: 20px;
    }
    .badge {
        padding: 5px 10px;
        font-size: 0.72rem;
    }
    .hero-image {
        border-radius: var(--radius);
    }
    .hero-image img {
        border-radius: var(--radius);
    }
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-top: 28px;
    }
    .stat-card {
        padding: 16px 8px;
    }
    .stat-card .num {
        font-size: 1.4rem;
    }
    .stat-card .label {
        font-size: 0.7rem;
    }

    /* -- CTA Buttons Mobile -- */
    .hero-text .btn-lg,
    .btn-lg {
        padding: 14px 24px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    /* -- Sections Mobile -- */
    .section {
        padding: 44px 0;
    }
    .section-header {
        margin-bottom: 32px;
    }
    .section-header h2 {
        font-size: 1.4rem;
        line-height: 1.3;
        padding: 0 4px;
    }
    .section-header p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    /* -- Tables Mobile -- */
    .info-table-wrap {
        margin: 20px -16px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    .info-table {
        font-size: 0.85rem;
    }
    .info-table thead th {
        padding: 12px 14px;
        font-size: 0.78rem;
    }
    .info-table tbody td {
        padding: 10px 14px;
    }
    .info-table .label-cell {
        width: auto;
        min-width: 110px;
        font-size: 0.82rem;
    }

    /* -- Rating Overview Mobile -- */
    .rating-overview {
        grid-template-columns: 1fr;
        padding: 24px 20px;
        gap: 24px;
    }
    .rating-big .score {
        font-size: 3rem;
    }
    .rating-bars .bar-label {
        width: 100px;
        font-size: 0.78rem;
    }
    .rating-bars .bar-val {
        width: 34px;
        font-size: 0.8rem;
    }

    /* -- Text Columns Mobile -- */
    .text-cols {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .text-cols p {
        font-size: 0.9rem;
    }
    .text-cols h3 {
        font-size: 1.1rem;
    }

    /* -- Bonus Card Mobile -- */
    .bonus-card {
        grid-template-columns: 1fr;
        padding: 24px 20px;
        gap: 24px;
    }
    .bonus-card .amount {
        font-size: 2.5rem;
    }
    .bonus-card .bonus-title {
        font-size: 1.1rem;
    }
    .bonus-details li {
        font-size: 0.88rem;
        padding: 6px 0;
    }

    /* -- Pros/Cons Mobile -- */
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .pros-list, .cons-list {
        padding: 20px;
    }
    .pros-list li, .cons-list li {
        font-size: 0.88rem;
    }

    /* -- Games Categories Mobile -- */
    .games-categories {
        gap: 8px;
        margin-bottom: 20px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
    }
    .games-categories::-webkit-scrollbar {
        display: none;
    }
    .cat-tag {
        padding: 6px 14px;
        font-size: 0.78rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* -- Cards Grid Mobile -- */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .card {
        padding: 24px 20px;
    }
    .card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        margin-bottom: 16px;
    }
    .card h3 {
        font-size: 1.05rem;
    }

    /* -- Providers Grid Mobile -- */
    .providers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .provider-item {
        padding: 14px 8px;
        font-size: 0.75rem;
        border-radius: var(--radius-sm);
    }

    /* -- Calculator Mobile -- */
    .calc-wrapper {
        padding: 24px 18px;
        border-radius: var(--radius);
    }
    .calc-wrapper h3 {
        font-size: 1.15rem;
        margin-bottom: 24px;
    }
    .calc-row {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 14px;
    }
    .calc-field input,
    .calc-field select {
        padding: 12px 14px;
        font-size: 1rem;
        -webkit-appearance: none;
        appearance: none;
    }
    .calc-field label {
        font-size: 0.82rem;
    }
    .result-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .result-item {
        padding: 14px 10px;
    }
    .result-item .val {
        font-size: 1.2rem;
    }
    .result-item .desc {
        font-size: 0.72rem;
    }

    /* -- Payment Grid Mobile -- */
    .payment-grid {
        gap: 8px;
    }
    .payment-tag {
        padding: 10px 14px;
        font-size: 0.8rem;
        gap: 6px;
    }

    /* -- Steps Grid Mobile -- */
    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .step-item {
        padding: 20px 14px;
    }
    .step-num {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    .step-item h4 {
        font-size: 0.9rem;
    }
    .step-item p {
        font-size: 0.78rem;
    }

    /* -- FAQ Mobile -- */
    .faq-q {
        padding: 16px 18px;
        font-size: 0.9rem;
        gap: 12px;
    }
    .faq-q span {
        flex: 1;
    }
    .faq-item.open .faq-a {
        padding: 0 18px 16px;
    }
    .faq-a p {
        font-size: 0.88rem;
    }

    /* -- Promo Banner Mobile -- */
    .promo-banner {
        border-radius: var(--radius);
    }
    .promo-overlay {
        padding: 20px 16px;
    }
    .promo-overlay .btn-lg {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    /* -- Notice Mobile -- */
    .notice {
        padding: 16px 18px;
        font-size: 0.85rem;
        margin: 16px 0;
    }

    /* -- Responsible Grid Mobile -- */
    .responsible-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .resp-card {
        padding: 18px 14px;
    }
    .resp-card i {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    .resp-card h4 {
        font-size: 0.88rem;
    }
    .resp-card p {
        font-size: 0.78rem;
    }

    /* -- Footer Mobile -- */
    .site-footer {
        padding: 40px 0 24px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-about .logo img {
        height: 24px;
    }
    .footer-about p {
        font-size: 0.82rem;
    }
    .footer-links h4 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    .footer-links ul li a {
        padding: 6px 0;
        font-size: 0.85rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .footer-bottom p {
        font-size: 0.72rem;
        line-height: 1.6;
    }
    .footer-legal {
        justify-content: center;
        gap: 16px;
    }
    .footer-legal a {
        font-size: 0.75rem;
    }

    /* -- Scroll Top Mobile -- */
    .scroll-top {
        bottom: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

/* --- RESPONSIVE: SMALL MOBILE (max 480px) --- */
@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }
    .hero-text h1 {
        font-size: 1.4rem;
    }
    .hero-text .subtitle {
        font-size: 0.88rem;
    }
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    .stat-card {
        padding: 12px 6px;
    }
    .stat-card .num {
        font-size: 1.15rem;
    }
    .stat-card .label {
        font-size: 0.65rem;
    }
    .section-header h2 {
        font-size: 1.25rem;
    }
    .bonus-card .amount {
        font-size: 2rem;
    }
    .bonus-card {
        padding: 20px 16px;
    }
    .rating-overview {
        padding: 20px 16px;
    }
    .rating-big .score {
        font-size: 2.5rem;
    }
    .rating-bars .bar-label {
        width: 80px;
        font-size: 0.72rem;
    }
    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .responsible-grid {
        grid-template-columns: 1fr;
    }
    .result-grid {
        grid-template-columns: 1fr;
    }
    .calc-wrapper {
        padding: 20px 14px;
    }
    .info-table .label-cell {
        min-width: 90px;
    }
    .info-table tbody td,
    .info-table thead th {
        padding: 8px 10px;
        font-size: 0.78rem;
    }

    /* Sticky mobile CTA */
    .mobile-sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 10px 14px;
        background: rgba(15,15,19,0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid rgba(232,0,0,0.2);
        z-index: 998;
        display: flex;
    }
    .mobile-sticky-cta .btn {
        width: 100%;
        padding: 14px;
        font-size: 0.95rem;
    }
    .scroll-top {
        bottom: 70px;
    }
    body {
        padding-bottom: 64px;
    }
}

/* --- Touch-friendly targets --- */
@media (hover: none) and (pointer: coarse) {
    .nav-menu li a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .faq-q {
        min-height: 48px;
    }
    .btn {
        min-height: 44px;
    }
    .cat-tag {
        min-height: 40px;
        display: flex;
        align-items: center;
    }
    .payment-tag {
        min-height: 44px;
    }
    .card:hover {
        transform: none;
    }
    .step-item:hover {
        transform: none;
    }
    .card:active {
        border-color: rgba(232,0,0,0.2);
    }
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- RATING OVERVIEW --- */
.rating-overview {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 32px;
    align-items: center;
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 32px;
}

.rating-big {
    text-align: center;
}

.rating-big .score {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.rating-big .out-of {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.rating-bars .bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.rating-bars .bar-label {
    width: 130px;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-shrink: 0;
}

.rating-bars .bar-track {
    flex: 1;
    height: 8px;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bars .bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--red), var(--gold));
    border-radius: 4px;
    transition: width 1s ease;
}

.rating-bars .bar-val {
    width: 40px;
    text-align: right;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
}

/* --- RESPONSIBLE GAMING --- */
.responsible-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.resp-card {
    padding: 24px;
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    text-align: center;
}

.resp-card i {
    font-size: 2rem;
    color: var(--info);
    margin-bottom: 12px;
}

.resp-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.resp-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- (mobile overrides merged above) --- */
