/* Основные стили и сброс */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0f172a;
    color: #e2e8f0;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Баннер с промокодом */
.promo-banner {
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    padding: 12px 0;
    text-align: center;
    color: white;
    font-weight: 600;
    position: relative;
    z-index: 1001;
}

.promo-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

#promo-code {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.copy-btn {
    background: white;
    color: #6366f1;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Главный хедер */
.main-header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #334155;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

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

.logo i {
    font-size: 2.5rem;
    color: #8b5cf6;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.logo h1 {
    font-size: 1.8rem;
    background: linear-gradient(90deg, #8b5cf6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #8b5cf6;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #6366f1);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.btn-login, .btn-register {
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-login {
    background: transparent;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
}

.btn-login:hover {
    background: rgba(139, 92, 246, 0.1);
}

.btn-register {
    background: linear-gradient(90deg, #8b5cf6, #6366f1);
    color: white;
    border: none;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

/* Герой секция */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #8b5cf6;
    margin-bottom: 30px;
    font-weight: 600;
}

.bonus-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.bonus-item {
    background: rgba(30, 41, 59, 0.7);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 200px;
    border: 1px solid #334155;
    transition: transform 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
}

.bonus-item i {
    font-size: 2rem;
    color: #8b5cf6;
}

.bonus-item span {
    font-size: 1.3rem;
    font-weight: 700;
}

.bonus-plus {
    font-size: 2rem;
    font-weight: 800;
    color: #8b5cf6;
}

.hero-description {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(90deg, #8b5cf6, #6366f1);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-3px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #475569;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-placeholder i {
    font-size: 6rem;
    color: #8b5cf6;
    margin-bottom: 20px;
}

.image-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
    color: #cbd5e1;
}

/* Основной контент */
.main-content {
    padding: 80px 0;
}

.content-section {
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.content-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #f1f5f9;
    position: relative;
    padding-bottom: 15px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #6366f1);
    border-radius: 2px;
}

.content-section p {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Сетка фич */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background: rgba(30, 41, 59, 0.7);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #334155;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    border-color: #8b5cf6;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature i {
    font-size: 3rem;
    color: #8b5cf6;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #f1f5f9;
}

/* Таблицы */
.table-container {
    overflow-x: auto;
    margin-top: 30px;
    border-radius: 12px;
    border: 1px solid #334155;
}

.info-table, .comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.info-table th, .comparison-table th {
    background: linear-gradient(90deg, #1e293b, #334155);
    padding: 20px;
    text-align: left;
    color: #f1f5f9;
    font-weight: 700;
    border-bottom: 2px solid #475569;
}

.info-table td, .comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #334155;
    color: #cbd5e1;
}

.info-table tr:hover, .comparison-table tr:hover {
    background: rgba(30, 41, 59, 0.5);
}

/* Регистрация */
.registration-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.method {
    background: rgba(30, 41, 59, 0.7);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #334155;
    transition: all 0.3s ease;
}

.method:hover {
    border-color: #8b5cf6;
    transform: translateY(-5px);
}

.method-icon {
    width: 70px;
    height: 70px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.method-icon i {
    font-size: 2rem;
    color: #8b5cf6;
}

.method h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #f1f5f9;
}

.note {
    background: rgba(30, 41, 59, 0.7);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #8b5cf6;
    margin: 30px 0;
}

.center-button {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Бонусы */
.bonuses-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.bonus-card {
    background: rgba(30, 41, 59, 0.7);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #334155;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    border-color: #8b5cf6;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.bonus-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.bonus-card-header i {
    font-size: 2.5rem;
    color: #8b5cf6;
}

.bonus-card-header h3 {
    font-size: 1.4rem;
    color: #f1f5f9;
}

/* Слоты */
.slots-features, .app-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.slot-feature, .benefit {
    background: rgba(30, 41, 59, 0.7);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #334155;
    transition: all 0.3s ease;
}

.slot-feature:hover, .benefit:hover {
    border-color: #8b5cf6;
}

.slot-feature h3, .benefit h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #f1f5f9;
}

.slot-feature i, .benefit i {
    color: #8b5cf6;
}

/* Live Casino */
.live-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.live-item {
    background: rgba(30, 41, 59, 0.7);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #334155;
    transition: all 0.3s ease;
}

.live-item:hover {
    border-color: #8b5cf6;
    transform: translateY(-5px);
}

.live-item i {
    font-size: 2.5rem;
    color: #8b5cf6;
    margin-bottom: 15px;
}

.live-item h4 {
    font-size: 1.1rem;
    color: #f1f5f9;
}

/* Платежные методы */
.payment-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(30, 41, 59, 0.7);
    border-radius: 12px;
    border: 1px solid #334155;
    min-width: 120px;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: #8b5cf6;
    transform: translateY(-5px);
}

.payment-method i {
    font-size: 2.5rem;
    color: #8b5cf6;
}

/* Преимущества */
.advantages-list {
    list-style: none;
    margin-top: 30px;
}

.advantages-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    padding: 15px;
    background: rgba(30, 41, 59, 0.7);
    border-radius: 10px;
    border-left: 4px solid #8b5cf6;
    transition: all 0.3s ease;
}

.advantages-list li:hover {
    transform: translateX(10px);
}

.advantages-list i {
    color: #10b981;
    font-size: 1.3rem;
}

/* CTA секция */
.cta-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 80px 0;
    border-radius: 20px;
    margin-top: 60px;
    border: 1px solid #334155;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #f1f5f9;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #94a3b8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 20px 40px !important;
    font-size: 1.2rem !important;
}

/* Футер */
.main-footer {
    background: #0a0f1c;
    padding: 60px 0 30px;
    border-top: 1px solid #334155;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo i {
    font-size: 3rem;
    color: #8b5cf6;
}

.footer-logo h3 {
    font-size: 1.8rem;
    color: #f1f5f9;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #f1f5f9;
}

.footer-column a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #8b5cf6;
}

.footer-promo {
    background: rgba(30, 41, 59, 0.7);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #334155;
    text-align: center;
}

.footer-promo h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #f1f5f9;
}

.promo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

#footer-promo {
    background: rgba(139, 92, 246, 0.2);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.copy-btn-small {
    background: #8b5cf6;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.copy-btn-small:hover {
    background: #7c3aed;
    transform: scale(1.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #334155;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(30, 41, 59, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #8b5cf6;
    color: white;
    transform: translateY(-3px);
}

/* Адаптивность */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .bonus-highlight {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero-text h2 {
        font-size: 2.2rem;
    }
    
    .bonus-item {
        min-width: 100%;
    }
    
    .bonus-plus {
        display: none;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .header-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid, .bonuses-list {
        grid-template-columns: 1fr;
    }
}