:root {
    --dark-primary: #0a0e1a;
    --dark-secondary: #141824;
    --dark-tertiary: #1a1f2e;
    --gold-primary: #d4af37;
    --gold-secondary: #f4d03f;
    --gold-dark: #b8941d;
    --text-primary: #ffffff;
    --text-secondary: #b8bcc8;
    --text-muted: #6c7380;
    --accent-red: #ff4655;
    --accent-green: #00d9a3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: var(--dark-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
header {
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-primary) 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.lang-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.lang-link:hover {
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
}

.lang-link.active {
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.15);
}

.lang-divider {
    color: rgba(212, 175, 55, 0.3);
    font-size: 14px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.logo-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    animation: pulse-glow 3s ease-in-out infinite;
}

.header-btn {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--dark-primary);
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: none;
    cursor: pointer;
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-primary) 0%, var(--dark-secondary) 50%, var(--dark-tertiary) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.hero-feature-icon {
    font-size: 24px;
}

.hero-feature span {
    font-size: 14px;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--dark-primary);
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-primary);
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid var(--gold-primary);
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
}

.hero-visual {
    position: relative;
    height: 500px;
}

.casino-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.card {
    position: absolute;
    width: 180px;
    height: 250px;
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-tertiary) 100%);
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.card svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.5));
    transition: all 0.3s ease;
}

.card:nth-child(1) {
    top: 20%;
    left: 10%;
    transform: rotate(-15deg);
    animation: float 3s ease-in-out infinite;
}

.card:nth-child(2) {
    top: 50%;
    left: 35%;
    transform: rotate(5deg);
    animation: float 3s ease-in-out infinite 0.5s;
}

.card:nth-child(3) {
    top: 15%;
    right: 15%;
    transform: rotate(10deg);
    animation: float 3s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(var(--rotate)); }
    50% { transform: translateY(-20px) rotate(var(--rotate)); }
}

.card:hover {
    transform: scale(1.1) rotate(0deg) !important;
    border-color: var(--gold-primary);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.4);
}

.card:hover svg {
    transform: scale(1.2);
    filter: drop-shadow(0 8px 25px rgba(212, 175, 55, 0.8));
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-primary) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, var(--dark-tertiary) 0%, var(--dark-secondary) 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.stat-svg-icon {
    display: block;
    margin: 0 auto 15px;
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 100px 0;
    background: var(--dark-primary);
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-tertiary) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
}

.feature-svg-icon {
    display: block;
    margin: 0 auto;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--gold-primary);
}

.feature-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== GAMES SHOWCASE ===== */
.games-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-primary) 100%);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.game-card {
    background: var(--dark-tertiary);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.game-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-tertiary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    position: relative;
    overflow: hidden;
}

.game-image svg {
    transition: transform 0.3s ease;
}

.game-card:hover .game-image svg {
    transform: scale(1.1);
}

.game-image::after {
    content: 'ИГРАТЬ';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 175, 55, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--dark-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.game-card:hover .game-image::after {
    opacity: 1;
}

.game-info {
    padding: 20px;
}

.game-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.game-provider {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== BONUSES TIMELINE ===== */
.bonuses-section {
    padding: 100px 0;
    background: var(--dark-primary);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-tertiary) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    z-index: 1;
}

.bonus-badge {
    display: inline-block;
    background: var(--gold-primary);
    color: var(--dark-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--gold-primary);
}

.timeline-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-primary) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--dark-tertiary);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '❝';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: rgba(212, 175, 55, 0.2);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-primary);
}

.testimonial-author h4 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.testimonial-rating {
    color: var(--gold-primary);
    font-size: 14px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ===== CTA SECTION (OLD - keep for other pages) ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-primary) 0%, var(--dark-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 40%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-highlight {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    padding: 25px 60px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.cta-highlight-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--dark-primary);
    display: block;
    line-height: 1;
}

.cta-highlight-text {
    font-size: 18px;
    color: var(--dark-primary);
    font-weight: 600;
}

/* ===== NEW CTA SECTION ===== */
.cta-section-new {
    padding: 100px 0;
    background: var(--dark-primary);
    position: relative;
    overflow: hidden;
}

.cta-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-main {
    padding-right: 20px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.cta-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 35px;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.cta-benefit-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(10px);
}

.cta-benefit-item div {
    display: flex;
    flex-direction: column;
}

.cta-benefit-item strong {
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 700;
}

.cta-benefit-item span {
    font-size: 14px;
    color: var(--text-muted);
}

.cta-buttons-group {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.cta-btn-primary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--dark-primary);
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-btn-primary:hover::before {
    left: 100%;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.cta-btn-secondary {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--gold-primary);
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid var(--gold-primary);
}

.cta-btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.cta-trust-badges {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.cta-bonus-card {
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-tertiary) 100%);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.cta-bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary) 0%, var(--gold-secondary) 50%, var(--gold-primary) 100%);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.bonus-card-header {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
    padding: 20px;
    text-align: center;
}

.bonus-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-card-body {
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.bonus-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bonus-number {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.bonus-text {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 5px;
}

.bonus-desc {
    font-size: 13px;
    color: var(--text-muted);
}

.bonus-divider {
    font-size: 32px;
    color: var(--gold-primary);
    font-weight: 300;
    opacity: 0.5;
}

.bonus-card-footer {
    background: rgba(212, 175, 55, 0.05);
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.bonus-card-footer p {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
}

.bonus-card-footer p:first-child {
    color: var(--gold-primary);
    font-size: 18px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    font-size: 24px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-about p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--gold-primary);
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--text-muted);
    font-size: 14px;
}

/* ===== MIRROR SECTION ===== */
.mirror-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.mirror-info {
    background: linear-gradient(135deg, var(--dark-tertiary) 0%, var(--dark-secondary) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.mirror-info h3 {
    font-size: 28px;
    color: var(--gold-primary);
    margin-bottom: 20px;
    text-align: center;
}

.mirror-info > p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
}

.mirror-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mirror-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.mirror-feature-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(5px);
}

.mirror-feature-item span {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 500;
}

.mirror-cta {
    background: linear-gradient(135deg, var(--dark-tertiary) 0%, var(--dark-secondary) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    flex-direction: column;
}

.mirror-highlight {
    text-align: center;
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 30px;
}

.mirror-highlight h4 {
    font-size: 24px;
    color: var(--gold-primary);
    margin: 20px 0 15px;
}

.mirror-highlight p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.mirror-steps {
    background: rgba(10, 14, 26, 0.5);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.mirror-step {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 16px;
    color: var(--text-secondary);
}

.mirror-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--dark-primary);
    border-radius: 50%;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

/* ===== WINS TABLE ===== */
.wins-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 40px;
    background: var(--dark-tertiary);
    border-radius: 15px;
    overflow: hidden;
}

.wins-table thead {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
}

.wins-table th {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
    color: var(--dark-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wins-table tbody tr {
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.wins-table tbody tr:last-child {
    border-bottom: none;
}

.wins-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: scale(1.01);
}

.wins-table td {
    padding: 20px;
    font-size: 16px;
}

.player-name {
    color: var(--text-primary);
    font-weight: 600;
}

.game-name {
    color: var(--text-secondary);
    font-weight: 500;
}

.win-amount-big {
    color: var(--gold-primary);
    font-weight: 800;
    font-size: 18px;
}

.win-date {
    color: var(--text-muted);
    font-size: 14px;
}

/* ===== FAQ ACCORDION ===== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-tertiary) 100%);
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    user-select: none;
    position: relative;
}

.faq-question:hover {
    color: var(--gold-primary);
}

.faq-icon {
    font-size: 24px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.faq-toggle {
    margin-left: auto;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.faq-answer ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-answer ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: 700;
}

.faq-answer strong {
    color: var(--gold-primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    /* New CTA responsive */
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-main {
        padding-right: 0;
    }
    
    .cta-title {
        font-size: 38px;
    }
    
    .bonus-card-body {
        flex-direction: column;
        gap: 25px;
    }
    
    .bonus-divider {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .stats-grid,
    .features-grid,
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
    }
    
    .timeline-content {
        width: 100%;
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
    
    .timeline-icon {
        left: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    /* Wins Table Mobile */
    .wins-table {
        font-size: 14px;
    }
    
    .wins-table th,
    .wins-table td {
        padding: 12px 10px;
    }
    
    .wins-table th {
        font-size: 12px;
    }
    
    .win-amount-big {
        font-size: 16px;
    }
    
    /* Hide less important columns on mobile */
    .wins-table th:nth-child(4),
    .wins-table td:nth-child(4) {
        display: none;
    }
    
    /* FAQ Mobile */
    .faq-question {
        padding: 20px 15px;
        font-size: 16px;
    }
    
    .faq-icon {
        font-size: 20px;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 20px 15px;
    }
    
    .faq-answer p,
    .faq-answer ul li {
        font-size: 14px;
    }
    
    /* SVG Icons Mobile */
    .card svg {
        width: 60px;
        height: 60px;
    }
    
    .feature-svg-icon {
        width: 48px;
        height: 48px;
    }
    
    .stat-svg-icon {
        width: 40px;
        height: 40px;
    }
    
    .game-svg-icon {
        width: 60px;
        height: 60px;
    }
    
    /* New CTA Mobile */
    .cta-title {
        font-size: 32px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
    .cta-buttons-group {
        flex-direction: column;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        font-size: 16px;
        padding: 16px 30px;
    }
    
    .cta-trust-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .bonus-item {
        width: 100%;
    }
    
    .bonus-number {
        font-size: 36px;
    }
    
    .bonus-card-body {
        padding: 30px 20px;
    }
    
    /* Header Mobile */
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .header-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .language-switcher {
        order: -1;
    }
    
    /* Mirror Section Mobile */
    .mirror-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mirror-info,
    .mirror-cta {
        padding: 25px;
    }
    
    .mirror-highlight {
        padding: 20px;
    }
    
    .mirror-highlight h4 {
        font-size: 20px;
    }
    
    .mirror-feature-item,
    .mirror-step {
        font-size: 14px;
    }
}

