* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #0a1420, #0f1a2a);
    color: #fff;
    line-height: 1.6;
}

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

/* Шапка */
.header {
    background: rgba(10, 20, 32, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #ffd700;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

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

.logo-img {
    height: 50px;
    border-radius: 10px;
}

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

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #ffd700;
}

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

.btn-login {
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-login:hover {
    background: rgba(255, 215, 0, 0.1);
}

.btn-register {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    border: none;
    color: #0d1b28;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Hero секция */
.hero {
    padding: 60px 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.1), transparent 50%);
}

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

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: #b0c4d9;
    margin-bottom: 30px;
}

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

.btn-primary {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    border: none;
    color: #0d1b28;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 0 #b47d00;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 0 #b47d00;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
}

.hero-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid #ffd700;
}

/* Главный бонусный баннер */
.main-bonus-section {
    padding: 40px 0;
}

.main-bonus-card {
    background: linear-gradient(145deg, #1e2f3a, #0c1a26);
    border-radius: 50px;
    border: 3px solid #ffd700;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.3);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.main-bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent 70%);
    animation: rotate 20s linear infinite;
}

.bonus-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.bonus-left {
    flex: 1;
}

.bonus-title {
    font-size: 24px;
    color: #b0c4d9;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bonus-amount-large {
    font-size: 72px;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    line-height: 1;
}

.bonus-plus-large {
    font-size: 48px;
    font-weight: 900;
    color: #ffd700;
    margin: 5px 0;
}

.bonus-freespins-large {
    font-size: 48px;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 10px;
}

.bonus-desc {
    font-size: 16px;
    color: #b0c4d9;
}

.bonus-right {
    text-align: center;
}

.bonus-img {
    max-width: 300px;
    border-radius: 30px;
    margin-bottom: 20px;
    border: 3px solid #ffd700;
}

.btn-bonus-claim {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    border: none;
    color: #0d1b28;
    padding: 15px 60px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 0 #b47d00;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-bonus-claim:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 0 #b47d00;
}

/* Секция бонусов */
.bonuses-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #b0c4d9;
    text-align: center;
    margin-bottom: 40px;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bonus-card {
    background: linear-gradient(145deg, #1a2a36, #0f1e28);
    border-radius: 30px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    padding: 30px 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.bonus-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.bonus-card.popular {
    border: 3px solid #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffd700;
    color: #0d1b28;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 14px;
}

.bonus-card-header {
    text-align: center;
    margin-bottom: 20px;
}

.bonus-card-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #ffd700;
    margin-bottom: 15px;
}

.bonus-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.bonus-card-body {
    text-align: center;
    margin-bottom: 25px;
}

.bonus-amount-card {
    font-size: 36px;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.bonus-freespins-card {
    font-size: 24px;
    font-weight: 700;
    color: #b0c4d9;
    margin-bottom: 15px;
}

.bonus-features {
    list-style: none;
    text-align: left;
    padding: 0 10px;
}

.bonus-features li {
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bonus-card-footer {
    text-align: center;
}

.btn-card {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    border: none;
    color: #0d1b28;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 0 #b47d00;
}

.btn-card.popular-btn {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    font-weight: 800;
}

/* Секция игры */
.game-section {
    padding: 80px 0;
}

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

.game-title-section {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.game-description {
    font-size: 18px;
    color: #b0c4d9;
    margin-bottom: 30px;
    line-height: 1.8;
}

.game-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 28px;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #b0c4d9;
}

.btn-game {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    border: none;
    color: #0d1b28;
    padding: 15px 50px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 0 #b47d00;
}

.btn-game:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 0 #b47d00;
}

.game-img {
    width: 100%;
    border-radius: 30px;
    border: 3px solid #ffd700;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Секция преимуществ */
.features-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffd700;
}

.feature-text {
    font-size: 14px;
    color: #b0c4d9;
}

/* Секция отзывов */
.testimonials-section {
    padding: 60px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: linear-gradient(145deg, #1a2a36, #0f1e28);
    border-radius: 30px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #ffd700;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-rating {
    color: #ffd700;
}

.testimonial-text {
    font-size: 14px;
    color: #b0c4d9;
    line-height: 1.8;
    font-style: italic;
}

/* Секция партнеров */
.partners-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.2);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
    align-items: center;
}

.partner-logo {
    width: 100%;
    max-width: 150px;
    margin: 0 auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Футер */
.footer {
    background: #0a1420;
    padding: 60px 0 20px;
    border-top: 2px solid #ffd700;
}

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

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffd700