* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Верхняя панель */
.top-info-bar {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    padding: 15px 0;
    border-bottom: 2px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo-container {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 150px;
}

.logo-link {
    display: block;
}

.logo-image {
    height: 50px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.bonus-button-container {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
    padding: 0 10px;
}

.btn-bonus {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0a0a0a;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 100%;
    line-height: 1.3;
    white-space: normal;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-bonus:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.auth-buttons {
    display: flex;
    gap: 15px;
    flex: 1;
    justify-content: flex-end;
    min-width: 180px;
}

.btn-login, .btn-register {
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-login {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.btn-login:hover {
    background: #d4af37;
    color: #0a0a0a;
    transform: translateY(-2px);
}

.btn-register {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0a0a0a;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Hero секция бонусов */
.hero-bonus-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    padding: 60px 0;
    text-align: center;
    border-bottom: 2px solid #d4af37;
}

.page-title {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 300;
}

/* Приветственный бонус */
.bonus-section {
    padding: 60px 0;
}

.bonus-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    border-radius: 20px;
    padding: 50px;
    border: 3px solid #d4af37;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.bonus-icon {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.bonus-icon i {
    font-size: 5rem;
    color: #0a0a0a;
}

.bonus-content h2 {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 20px;
    font-weight: 700;
}

.bonus-amount {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.bonus-amount .amount {
    font-size: 3rem;
    color: #f4d03f;
    font-weight: 800;
}

.bonus-amount .plus {
    font-size: 2.5rem;
    color: #d4af37;
}

.bonus-amount .fs {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 700;
}

.bonus-content > p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 20px;
}

.bonus-details {
    list-style: none;
    margin: 25px 0;
}

.bonus-details li {
    padding: 12px 0;
    border-bottom: 1px solid #2d2d44;
    font-size: 1.1rem;
    color: #ffffff;
}

.bonus-details li:last-child {
    border-bottom: none;
}

.bonus-details strong {
    color: #d4af37;
}

.btn-claim {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0a0a0a;
    padding: 18px 45px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    margin-top: 20px;
}

.btn-claim:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

/* Сетка бонусов */
.bonuses-grid-section {
    padding: 60px 0;
    background: #0f0f1e;
}

.section-title {
    font-size: 2.5rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    text-transform: uppercase;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bonus-item {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    border-radius: 15px;
    padding: 35px;
    border: 2px solid #2d2d44;
    transition: all 0.3s ease;
    text-align: center;
}

.bonus-item:hover {
    border-color: #d4af37;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3);
}

.bonus-item-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.bonus-item-icon i {
    font-size: 2.5rem;
    color: #0a0a0a;
}

.bonus-item h3 {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 15px;
    font-weight: 700;
}

.bonus-value {
    font-size: 2rem;
    color: #f4d03f;
    font-weight: 800;
    margin-bottom: 15px;
}

.bonus-item > p {
    color: #cccccc;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.bonus-features {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}

.bonus-features li {
    padding: 8px 0;
    color: #ffffff;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bonus-features i {
    color: #d4af37;
    font-size: 0.9rem;
}

.btn-details {
    display: inline-block;
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-details:hover {
    background: #d4af37;
    color: #0a0a0a;
    transform: translateY(-2px);
}

/* Как получить */
.how-to-section {
    padding: 60px 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.step {
    text-align: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 40px;
    font-size: 2rem;
    color: #d4af37;
    font-weight: bold;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0a0a0a;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.step-content h3 {
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 10px;
    font-weight: 700;
}

.step-content p {
    color: #cccccc;
    font-size: 1rem;
}

.cta-container {
    text-align: center;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0a0a0a;
    padding: 20px 50px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

/* Условия */
.terms-section {
    padding: 60px 0;
    background: #0f0f1e;
}

.terms-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.term-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #2d2d44;
    text-align: center;
    transition: all 0.3s ease;
}

.term-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

.term-card i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.term-card h3 {
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 12px;
    font-weight: 700;
}

.term-card p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Финальный CTA */
.final-cta-section {
    padding: 80px 0;
}

.final-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    padding: 60px;
    border-radius: 20px;
    border: 3px solid #d4af37;
    text-align: center;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.final-cta h2 {
    font-size: 2.8rem;
    color: #d4af37;
    margin-bottom: 20px;
    font-weight: 800;
}

.final-cta > p {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0a0a0a;
    padding: 20px 45px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    padding: 20px 45px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: #d4af37;
    color: #0a0a0a;
    transform: translateY(-3px);
}

/* Футер */
.footer {
    background: #0f0f1e;
    padding: 40px 0 20px;
    border-top: 2px solid #d4af37;
}

.footer-nav {
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2d2d44;
}

.footer-bottom p {
    color: #888;
    margin: 5px 0;
}

.age-warning-footer {
    color: #d4af37 !important;
    font-weight: 600;
}

/* АДАПТАЦИЯ */
@media (max-width: 1200px) {
    .bonuses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .terms-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    /* Шапка */
    .top-bar-content {
        flex-direction: column;
        align-items: center;
    }
    
    .logo-container,
    .bonus-button-container,
    .auth-buttons {
        flex: 0 0 100%;
        justify-content: center;
    }
    
    .auth-buttons {
        gap: 10px;
    }
    
    .btn-login, .btn-register {
        width: 45%;
        padding: 10px 15px;
    }
    
    .btn-bonus {
        font-size: 0.9rem;
        padding: 12px 15px;
    }
    
    /* Бонусы */
    .bonus-card {
        flex-direction: column;
        text-align: center;
        padding: 35px;
    }
    
    .bonus-icon {
        width: 120px;
        height: 120px;
    }
    
    .bonus-icon i {
        font-size: 4rem;
    }
    
    .bonus-content h2 {
        font-size: 2rem;
    }
    
    .bonus-amount .amount {
        font-size: 2.5rem;
    }
    
    /* Шаги */
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .terms-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .final-cta {
        padding: 40px 25px;
    }
    
    .final-cta > p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .top-info-bar {
        padding: 10px 0;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .btn-login, .btn-register {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .btn-bonus {
        font-size: 0.8rem;
        padding: 10px 12px;
    }
    
    .page-title {
        font-size: 1.7rem;
    }
    
    .bonus-card {
        padding: 25px;
    }
    
    .bonus-content h2 {
        font-size: 1.6rem;
    }
    
    .bonus-amount .amount {
        font-size: 2rem;
    }
    
    .bonus-amount .plus,
    .bonus-amount .fs {
        font-size: 1.8rem;
    }
    
    .btn-claim {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .bonus-item {
        padding: 25px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .btn-cta {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
    
    .final-cta h2 {
        font-size: 1.7rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .btn-bonus {
        font-size: 0.75rem;
        padding: 9px 12px;
    }
    
    .btn-login, .btn-register {
        padding: 7px 10px;
        font-size: 0.8rem;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .bonus-icon {
        width: 100px;
        height: 100px;
    }
    
    .bonus-icon i {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .btn-register {
        white-space: normal;
        height: auto;
        padding: 8px 12px;
    }
}

@media (max-width: 420px) {
    .btn-register {
        white-space: normal;
        height: auto;
        padding: 7px 10px;
        font-size: 0.75rem;
    }
}

/* Исправление кнопки "Регистрация" на мобильных */
@media (max-width: 576px) {
    .btn-register {
        white-space: normal !important;
        height: auto !important;
        padding: 10px 12px !important;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1.2;
    }
}

@media (max-width: 420px) {
    .btn-register {
        padding: 9px 10px !important;
        font-size: 0.8rem !important;
    }
}