* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
    scroll-behavior: smooth;
}

:root {
    /* Colors from mockup */
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --bg-header: #1a1a2e;
    --purple-dark: #2d1b4e;
    --red-dark: #4a1a2e;
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --purple: #7c3aed;
    --red: #e31e24;
    --gray-text: #999999;
    --white: #ffffff;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

/* ===== STICKY TOP BANNER ===== */
.sticky-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--purple) 0%, var(--red) 100%);
    padding: 15px 0;
    text-align: center;
    z-index: 1000;
    font-weight: 600;
    font-size: 15px;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    background: var(--bg-header);
    padding: 0 80px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-menu a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
    display: inline-block;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--purple);
    color: var(--purple);
}

.btn-outline:hover {
    background: var(--purple);
    color: var(--white);
}

.btn-gold {
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* ===== HERO SECTION ===== */
#hero {
    margin-top: 0;
    padding-top: 130px;
    min-height: 100vh;
    background-image: linear-gradient(135deg, rgba(45, 27, 78, 0.9) 0%, rgba(74, 26, 46, 0.9) 100%), 
                      url('/hero-bg-overlay.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 80px;
    padding-right: 80px;
    position: relative;
    overflow: hidden;
}

/* Animated particles background */
#hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent);
    background-size: 200% 200%;
    animation: sparkle 20s linear infinite;
    opacity: 0.3;
    pointer-events: none;
}

@keyframes sparkle {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

.hero-content {
    max-width: 700px;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 120px;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(
        90deg,
        #d4af37 0%,
        #f4d03f 25%,
        #fff 50%,
        #f4d03f 75%,
        #d4af37 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    animation: shimmerText 3s linear infinite;
    text-shadow: 0 0 80px rgba(212, 175, 55, 0.5);
}

@keyframes shimmerText {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.btn-hero-outline {
    padding: 18px 40px;
    background: transparent;
    border: 2px solid #666;
    color: var(--white);
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.btn-hero-gold {
    padding: 18px 50px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--bg-dark);
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    animation: pulseButton 2s infinite;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-hero-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

@keyframes pulseButton {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
    }
}

.hero-wheel {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 650px;
    height: 650px;
    z-index: 1;
    animation: wheelFloat 6s ease-in-out infinite;
}

.wheel-image {
    width: 100%;
    height: auto;
    animation: wheelRotate 20s linear infinite;
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.8)) 
            drop-shadow(0 0 80px rgba(124, 58, 237, 0.4))
            drop-shadow(0 0 120px rgba(227, 30, 36, 0.3));
    transition: all 0.5s ease;
}

.wheel-image:hover {
    filter: drop-shadow(0 0 60px rgba(212, 175, 55, 1)) 
            drop-shadow(0 0 100px rgba(124, 58, 237, 0.6))
            drop-shadow(0 0 140px rgba(227, 30, 36, 0.5));
    transform: scale(1.05);
}

@keyframes wheelRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes wheelFloat {
    0%, 100% { 
        transform: translateY(-50%) translateX(0); 
    }
    50% { 
        transform: translateY(-52%) translateX(10px); 
    }
}

.trust-badges {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    opacity: 0.9;
}

.trust-badge {
    font-size: 16px;
    font-weight: 600;
}

/* ===== STICKY NAVIGATION ===== */
#sticky-nav {
    position: sticky;
    top: 130px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 80px;
    z-index: 900;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    max-height: none;
    overflow: visible;
}

.nav-item {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 25px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
}

.nav-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--gold);
}

/* ===== SECTION COMMON STYLES ===== */
.section {
    padding: 120px 80px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-text);
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== LIVE STREAM + HISTORY ===== */
#live-stream {
    background: var(--bg-dark);
    padding: 80px;
}

.live-container {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
}

.live-player {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 20px;
    position: relative;
}

.live-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.stream-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gray-text);
}

.viewer-count {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.history-panel {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
}

.history-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.history-table {
    width: 100%;
    border-collapse: collapse;
}

.history-table th {
    background: #0a0a0a;
    padding: 12px;
    text-align: left;
    font-size: 13px;
    color: var(--gray-text);
}

.history-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
}

.history-table tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

/* ===== BONUS CARDS ===== */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.bonus-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.bonus-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.bonus-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.bonus-multiplier {
    color: var(--gold);
    font-size: 28px;
    font-weight: 800;
    margin-top: 15px;
}

.bonus-chance {
    color: var(--gray-text);
    font-size: 14px;
    margin-top: 10px;
}

.play-button {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

/* ===== WELCOME BONUS ===== */
.bonus-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 50px;
}

.tab {
    padding: 15px 35px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.tab.active {
    background: var(--gold);
    color: var(--bg-dark);
    border-color: var(--gold);
}

.bonus-packages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.bonus-package {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.bonus-package:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.package-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.package-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.package-bonus {
    font-size: 36px;
    font-weight: 800;
    color: var(--gold);
    margin: 20px 0;
}

.package-details {
    color: var(--gray-text);
    font-size: 14px;
    margin-bottom: 25px;
}

.total-package {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--red) 100%);
    border-radius: 20px;
}

.total-amount {
    font-size: 56px;
    font-weight: 900;
    color: var(--gold);
}

/* ===== CASINO GRID ===== */
.casino-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.casino-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.casino-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.casino-rank {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--bg-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.casino-logo {
    width: 100%;
    height: 100px;
    background: #2a2a2a;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.casino-rating {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 10px;
}

.casino-bonus {
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
    margin: 15px 0;
}

.casino-features {
    list-style: none;
    text-align: left;
    margin: 20px 0;
    font-size: 13px;
    color: var(--gray-text);
}

.casino-features li {
    padding: 5px 0;
}

.casino-features li::before {
    content: '✓ ';
    color: var(--gold);
    font-weight: 700;
}

/* ===== CALCULATOR ===== */
.calculator {
    max-width: 800px;
    margin: 60px auto;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 25px;
    padding: 50px;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.calc-input-group {
    margin-bottom: 30px;
}

.calc-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 16px;
}

.calc-input {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-dark);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    color: var(--white);
    font-size: 18px;
    font-family: var(--font-body);
}

.calc-input:focus {
    outline: none;
    border-color: var(--gold);
}

.multiplier-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.multiplier-btn {
    padding: 15px 30px;
    background: var(--bg-dark);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.multiplier-btn:hover,
.multiplier-btn.active {
    background: var(--gold);
    color: var(--bg-dark);
    border-color: var(--gold);
}

.calc-result {
    text-align: center;
    padding: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    margin-top: 40px;
}

.result-label {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 15px;
}

.result-amount {
    font-size: 64px;
    font-weight: 900;
    color: var(--gold);
    font-family: var(--font-heading);
}

/* ===== PAYMENT METHODS ===== */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.payment-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.payment-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.payment-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.payment-desc {
    font-size: 14px;
    color: var(--gray-text);
}

/* ===== TESTIMONIALS ===== */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 35px;
}

.testimonial-rating {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.author-info strong {
    display: block;
    margin-bottom: 5px;
}

.author-info small {
    color: var(--gray-text);
}

/* ===== FAQ ===== */
.faq-container {
    max-width: 900px;
    margin: 60px auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.1);
}

.faq-answer {
    padding: 0 30px 25px;
    color: var(--gray-text);
    line-height: 1.8;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ===== FOOTER ===== */
footer {
    background: #000000;
    padding: 80px 80px 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--gold);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--gold);
}

.footer-badges {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.badge {
    width: 80px;
    height: 60px;
    background: var(--bg-card);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--gray-text);
    font-size: 14px;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    padding: 30px 80px;
    background: var(--bg-card);
    margin-top: 130px;
}

.breadcrumbs a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 14px;
}

.breadcrumbs a:hover {
    color: var(--gold);
}

.breadcrumbs span {
    color: var(--gray-text);
    margin: 0 10px;
}

/* ===== WELCOME PACKAGE (for bonuslar.html) ===== */
.welcome-package {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.package-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 50px 40px;
    border: 2px solid transparent;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gold), var(--purple), var(--red), var(--gold));
    background-size: 400% 400%;
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.package-card:hover::before {
    opacity: 1;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.package-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--bg-dark);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.package-features {
    list-style: none;
    margin: 30px 0;
}

.package-features li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--gray-text);
}

.package-features li::before {
    content: '✓ ';
    color: var(--gold);
    font-weight: 700;
    margin-right: 10px;
}

.package-footer {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: var(--gray-text);
}

.total-banner {
    background: linear-gradient(135deg, var(--purple) 0%, var(--red) 100%);
    border-radius: 25px;
    padding: 60px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.total-banner::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.total-content {
    position: relative;
    z-index: 2;
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 60px;
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
}

.comparison-table thead {
    background: var(--bg-dark);
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.comparison-table tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

.check {
    color: #00C851;
    font-weight: 700;
}

.cross {
    color: #e31e24;
    font-weight: 700;
}

/* ===== TERMS BOX ===== */
.terms-box {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(227, 30, 36, 0.1) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
}

.terms-box h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--gold);
}

.terms-list {
    list-style: none;
}

.terms-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--gray-text);
    line-height: 1.8;
}

.terms-list li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
}

/* ===== HERO BADGE ===== */
.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--gold);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-subtitle {
    font-size: 24px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--gold);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 14px;
    color: var(--gray-text);
    margin-top: 5px;
}

.bonus-amount {
    font-size: 40px;
    font-weight: 900;
    color: var(--gold);
    margin: 20px 0;
}

.bonus-desc {
    color: var(--gray-text);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1400px) {
    .bonus-grid,
    .casino-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1200px) {
    .welcome-package,
    .bonus-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    header {
        padding: 0 40px;
    }
    
    .section {
        padding: 80px 40px;
    }

    .hero-title {
        font-size: 80px;
    }

    .bonus-grid,
    .casino-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .live-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 20px;
        height: 60px;
    }

    .nav-menu {
        display: none;
    }

    /* Убираем спейсер полностью */
    div[style*="height: 130px"] {
        height: 0 !important;
        display: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    #hero {
        margin-top: 0 !important;
        padding-top: 40px !important;
        padding: 40px 20px !important;
        min-height: auto !important;
        background-image: linear-gradient(
            135deg,
            rgba(45, 27, 78, 0.95) 0%,
            rgba(74, 26, 46, 0.95) 100%
        ), url("/hero-bg-overlay.jpg") !important;
    }

    #hero::after {
        opacity: 0.1 !important;
    }

    .hero-content {
        background: rgba(10, 10, 10, 0.85) !important;
        padding: 30px 20px !important;
        border-radius: 20px !important;
        backdrop-filter: blur(10px) !important;
        max-width: 100% !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
    }

    /* Универсальное правило для всех текстовых элементов (кроме кнопок) */
    .hero-content *:not(button):not(.btn-hero-outline):not(.btn-hero-gold):not(a) {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9) !important;
    }

    /* Исключения для элементов, которым нужны другие тени */
    .hero-title {
        text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9) !important;
    }

    /* Тени для ВСЕХ параграфов, включая с inline-стилями */
    .hero-content p,
    .hero-content p[style] {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9) !important;
        font-size: 18px !important;
        line-height: 1.6 !important;
        color: rgba(255, 255, 255, 0.95) !important;
    }

    /* Тени для всех strong, включая с inline-стилями */
    .hero-content strong,
    .hero-content strong[style] {
        color: #f4d03f !important;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9) !important;
    }

    .hero-content > div[style*="inline-block"] {
        background: rgba(212, 175, 55, 0.25) !important;
        border: 2px solid rgba(212, 175, 55, 0.6) !important;
        padding: 20px 25px !important;
    }

    .hero-content > div[style*="inline-block"] p {
        font-size: 15px !important;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9) !important;
    }

    .hero-content > div[style*="inline-block"] p[style] {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9) !important;
    }

    .hero-content > div[style*="background: rgba(212, 175, 55, 0.1)"] {
        background: rgba(212, 175, 55, 0.2) !important;
        border: 2px solid rgba(212, 175, 55, 0.5) !important;
        padding: 25px 20px !important;
        margin: 30px 0 !important;
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.25) !important;
    }

    .hero-content > div[style*="background: rgba(212, 175, 55, 0.1)"] p,
    .hero-content > div[style*="background: rgba(212, 175, 55, 0.1)"] p[style] {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9) !important;
    }

    .hero-wheel {
        display: none !important;
    }

    .hero-title {
        font-size: 48px !important;
        margin-bottom: 25px !important;
        text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.9) !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        gap: 15px !important;
        margin-top: 30px !important;
        align-items: center !important;
    }

    .btn-hero-outline,
    .btn-hero-gold {
        width: 100% !important;
        max-width: 300px !important;
        padding: 15px 30px !important;
        font-size: 16px !important;
        text-align: center !important;
    }

    .trust-badges {
        flex-wrap: wrap !important;
        gap: 10px !important;
        justify-content: center !important;
    }

    .trust-badge {
        font-size: 12px !important;
        padding: 8px 15px !important;
        background: rgba(212, 175, 55, 0.15) !important;
        border: 1px solid rgba(212, 175, 55, 0.4) !important;
        border-radius: 20px !important;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8) !important;
    }

    .hero-content > div[style*="grid-template-columns: repeat(4"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        margin-top: 20px !important;
    }

    .hero-content > div[style*="grid-template-columns: repeat(4"] > div {
        padding: 20px 25px !important;
    }

    .hero-content > div[style*="grid-template-columns: repeat(4"] [style*="font-size: 32px"] {
        font-size: 28px !important;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8) !important;
    }

    .hero-content > div[style*="grid-template-columns: repeat(4"] > div {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35) !important;
    }

    .hero-content > div[style*="grid-template-columns: repeat(4"] p {
        font-size: 15px !important;
        text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.75) !important;
    }

    /* Тени для всех h3, включая с inline-стилями */
    .hero-content h3,
    .hero-content h3[style] {
        font-size: 20px !important;
        margin-bottom: 15px !important;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9) !important;
        color: #f4d03f !important;
    }

    .hero-content a[href="#bonuslar"] {
        padding: 14px 35px !important;
        font-size: 15px !important;
        margin-top: 20px !important;
    }

    /* Тени для всех div с текстом внутри hero-content */
    .hero-content div[style*="max-width"],
    .hero-content div[style*="text-align: center"] {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9) !important;
    }

    /* Тени для процентов бонусов */
    .hero-content div[style*="font-size: 32px"],
    .hero-content div[style*="font-size: 32px"][style*="color"] {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9) !important;
    }

    /* Тени для подписей под процентами */
    .hero-content div[style*="font-size: 13px"],
    .hero-content div[style*="font-size: 13px"][style*="color"] {
        text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8) !important;
    }

    .section {
        padding: 80px 20px;
    }

    .bonus-grid,
    .casino-grid,
    .payment-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    #hero {
        padding: 30px 15px !important;
    }

    .hero-content {
        padding: 25px 15px !important;
    }

    .hero-title {
        font-size: 36px !important;
        margin-bottom: 20px !important;
    }

    .hero-content p {
        font-size: 16px !important;
    }

    .hero-content > div[style*="inline-block"] p {
        font-size: 14px !important;
    }

    .hero-content > div[style*="background: rgba(212, 175, 55, 0.1)"] {
        padding: 20px 15px !important;
    }

    .hero-content > div[style*="grid-template-columns: repeat(4"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .hero-content > div[style*="grid-template-columns: repeat(4"] > div {
        padding: 15px 10px !important;
    }

    .hero-content > div[style*="grid-template-columns: repeat(4"] [style*="font-size: 32px"] {
        font-size: 24px !important;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.75) !important;
    }

    .btn-hero-outline,
    .btn-hero-gold {
        padding: 14px 25px !important;
        font-size: 15px !important;
    }

    .trust-badge {
        font-size: 11px !important;
        padding: 7px 12px !important;
    }
}

@media (max-width: 375px) {
    .hero-title {
        font-size: 32px !important;
    }

    .hero-content {
        padding: 20px 12px !important;
    }

    .hero-content p {
        font-size: 15px !important;
    }

    .hero-content > div[style*="background: rgba(212, 175, 55, 0.1)"] {
        padding: 18px 12px !important;
    }

    .hero-content [style*="font-size: 32px"],
    .hero-content [style*="font-size: 28px"],
    .hero-content [style*="font-size: 24px"] {
        font-size: 22px !important;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.75) !important;
    }

    .btn-hero-outline,
    .btn-hero-gold {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }
}
