/* Импорт шрифтов */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;700&display=swap');

/* Базовые стили */
body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(to bottom, #0a1f3d, #0d2b5e) fixed;
    color: #e0f7fa;
    margin: 0;
    padding: 0;
    line-height: 1.8;
    text-align: center;
    min-height: 100vh;
    font-weight: 300;
    overflow-x: hidden;
}

h1, h2 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

h1 {
    font-size: 48px;
    color: #ffffff;
    text-shadow: 0 0 10px #9370DB, 0 0 20px #6A0DAD;
}

h2 {
    font-size: 32px;
    color: #bbdefb;
    margin-bottom: 30px;
    text-shadow: 0 0 10px #9370DB;
}

p {
    font-size: 18px;
    margin: 20px 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    word-break: keep-all;
    hyphens: auto;
}

.intro {
    font-size: 22px;
}

.bonus {
    font-size: 26px;
    font-weight: 700;
    color: #ffeb3b;
    text-shadow: 0 2px 8px rgba(255, 235, 59, 0.4);
}

ul, ol {
    padding: 0;
    max-width: 700px;
    margin: 30px auto;
    text-align: left;
}

li {
    font-size: 18px;
    margin: 20px 0;
    padding-left: 50px;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    word-break: keep-all;
    hyphens: auto;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    list-style: none;
}

.features li:hover {
    transform: translateX(10px);
    text-shadow: 0 0 15px #9370DB;
}

.features li::before {
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 32px;
    line-height: 1.2;
}

.features li:nth-child(1)::before { content: '🎰'; }
.features li:nth-child(2)::before { content: '💎'; }
.features li:nth-child(3)::before { content: '⚡'; }
.features li:nth-child(4)::before { content: '🧨'; }
.features li:nth-child(5)::before { content: '📈'; }

ol {
    counter-reset: item;
}

ol li {
    counter-increment: item;
    padding-left: 60px;
}

ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(to bottom, #6A0DAD, #9370DB);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(106, 13, 173, 0.4);
}

ol li .step-text {
    display: block;
    margin-left: 10px;
}

header, section {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.media-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    flex-wrap: wrap;
    gap: 40px;
}

.logo {
    width: 180px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.video {
    width: 60%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.register-image {
    max-width: 65%;
    margin: 30px auto 20px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    display: block;
    transition: transform 0.3s ease;
}

.register-image:hover {
    transform: scale(1.03);
}

.cta-button {
    background: linear-gradient(to right, #5e35b1, #7e57c2);
    color: #ffffff;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(94, 53, 177, 0.4);
    transition: all 0.4s ease;
    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 80%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(to right, #7e57c2, #9575cd);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 30px rgba(126, 87, 194, 0.6), 0 0 30px #9370DB;
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 20px rgba(126, 87, 194, 0.5);
}

.btn-icon {
    font-size: 28px;
    margin-right: 15px;
}

.big {
    font-size: 26px;
    padding: 22px 50px;
}

.final-cta {
    background: rgba(126, 87, 194, 0.15);
    border: 1px solid rgba(149, 117, 205, 0.2);
    text-align: center;
}

footer {
    margin-top: 80px;
    font-size: 14px;
    color: #81d4fa;
    padding: 30px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Countdown бар */
.countdown-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    z-index: 100;
    text-align: center;
    animation: pulse 2s infinite alternate;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-family: 'Exo 2', sans-serif;
    font-weight: 400;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.countdown-bar p {
    margin: 0;
    font-size: 18px;
    color: #ffffff;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.countdown-bar .bonus-claim {
    display: block;
    font-size: 16px;
    margin-top: 4px;
    color: #bbdefb;
    font-weight: 300;
}

#timer {
    font-weight: 700;
    color: #ffeb3b;
    font-size: 20px;
    text-shadow: 0 0 10px #ffff00;
}

@keyframes pulse {
    from { opacity: 0.9; transform: translateY(0); }
    to { opacity: 1; transform: translateY(2px); }
}

.top-spacer {
    height: 80px;
    pointer-events: none;
}

/* Reviews carousel */
.reviews {
    background: rgba(126, 87, 194, 0.2);
    padding: 40px;
    overflow: hidden;
}

.reviews h2 {
    margin-bottom: 20px;
    text-align: center;
}

.reviews-swiper {
    width: 100%;
    padding: 20px 0;
}

.review-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    height: auto;
    min-height: 120px;
}

.review-name {
    font-size: 18px;
    font-weight: 700;
    color: #bbdefb;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #9370DB;
}

.review-text {
    font-size: 20px;
    font-weight: 700;
    color: #ffeb3b;
    text-shadow: 0 0 10px #ffff00;
    word-break: keep-all;
    hyphens: auto;
}

.swiper-pagination {
    position: relative;
    bottom: 0;
}

/* FAQ */
.faq li::before {
    content: '❓';
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 32px;
}

/* Мобильные фиксы */
@media (max-width: 768px) {
    body {
        padding: 20px 10px;
    }
    header, section {
        margin: 30px auto;
        padding: 20px;
        border-radius: 16px;
    }
    h1 {
        font-size: 28px;
    }
    h2 {
        font-size: 22px;
    }
    p, li {
        font-size: 16px;
        line-height: 1.6;
    }
    .intro {
        font-size: 18px;
    }
    .bonus {
        font-size: 20px;
    }
    .media-container {
        gap: 20px;
    }
    .logo {
        width: 120px;
    }
    .video {
        width: 100%;
    }
    ol li {
        padding-left: 50px;
        margin: 15px 0;
    }
    ol li::before {
        width: 32px;
        height: 32px;
        line-height: 32px;
        font-size: 16px;
    }
    ol li .step-text {
        margin-left: 0;
    }
    .cta-button {
        font-size: 18px;
        padding: 14px 30px;
        max-width: 90%;
    }
    .big {
        font-size: 20px;
        padding: 18px 40px;
    }
    .register-image {
        max-width: 90%;
    }
    .features li::before, .faq li::before {
        font-size: 28px;
    }
    .top-spacer {
        height: 70px;
    }
    .countdown-bar {
        height: 55px;
        padding: 8px;
    }
    .countdown-bar p {
        font-size: 16px;
    }
    .countdown-bar .bonus-claim {
        font-size: 14px;
    }
    #timer {
        font-size: 18px;
    }
    .review-slide {
        min-height: 100px;
        padding: 15px;
    }
    .review-name {
        font-size: 16px;
    }
    .review-text {
        font-size: 18px;
    }
}

/* Стили для универсального уведомления 1Win */
.bonus-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    background: linear-gradient(135deg, #6A0DAD 0%, #9370DB 100%);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(106, 13, 173, 0.4);
    padding: 20px;
    z-index: 10000;
    font-family: 'Exo 2', Arial, sans-serif;
    color: white;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    cursor: pointer;
}

.bonus-notification.active {
    transform: translateY(0);
    opacity: 1;
}

.bonus-notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.bonus-notification:hover::before {
    transform: translateX(100%);
}

.bonus-notification:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(106, 13, 173, 0.6);
}

.bonus-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.bonus-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 20px;
}

.bonus-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.bonus-text {
    font-size: 16px;
    margin: 0 0 15px 0;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.bonus-cta {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.bonus-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.close-notification {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.close-notification:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Анимация пульсации */
@keyframes pulse {
    0% { box-shadow: 0 10px 30px rgba(106, 13, 173, 0.4); }
    50% { box-shadow: 0 10px 30px rgba(106, 13, 173, 0.8), 0 0 20px rgba(255, 255, 255, 0.5); }
    100% { box-shadow: 0 10px 30px rgba(106, 13, 173, 0.4); }
}

.bonus-notification.pulse {
    animation: pulse 2s infinite;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .bonus-notification {
        width: auto;
        max-width: 280px;
        right: 10px;
        left: auto;
        bottom: 80px;
        padding: 15px;
        transform: translateX(100px);
    }
    
    .bonus-notification.active {
        transform: translateX(0);
    }
    
    .bonus-header {
        margin-bottom: 8px;
    }
    
    .bonus-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
        margin-right: 10px;
    }
    
    .bonus-title {
        font-size: 15px;
    }
    
    .bonus-text {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .bonus-cta {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .close-notification {
        width: 20px;
        height: 20px;
        font-size: 12px;
        top: 8px;
        right: 8px;
    }
    
    .bonus-notification:hover {
        transform: none;
    }
}

@media (max-width: 360px) {
    .bonus-notification {
        max-width: 250px;
        padding: 12px;
        bottom: 70px;
    }
    
    .bonus-title {
        font-size: 14px;
    }
    
    .bonus-text {
        font-size: 12px;
    }
}

.seo-info {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    margin-top: 40px;
    border-radius: 15px;
}

.seo-info h2 {
    font-size: 24px;
    color: #bbdefb;
    margin-bottom: 25px;
}

.seo-info h3 {
    font-size: 20px;
    color: #90caf9;
    margin: 25px 0 15px 0;
}

.seo-info h4 {
    font-size: 18px;
    color: #ffeb3b;
    margin: 15px 0 8px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.faq-item {
    background: rgba(255,255,255,0.08);
    padding: 15px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-info {
        padding: 20px 15px;
    }
}