/* Основные стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Анимированный фон */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.coin, .chip {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.coin-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.coin-2 {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

.coin-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.chip-1 {
    top: 60%;
    right: 10%;
    animation-delay: 1s;
}

.chip-2 {
    bottom: 40%;
    right: 30%;
    animation-delay: 3s;
}

.chip-3 {
    top: 80%;
    left: 60%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Главный экран */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 170, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.promo-badge {
    background: linear-gradient(135deg, #00ffaa 0%, #00d4ff 100%);
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 30px;
    box-shadow: 0 0 30px rgba(0, 255, 170, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.promo-text {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0a0e27;
    margin-bottom: 5px;
}

.promo-code {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: #0a0e27;
    letter-spacing: 2px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(0, 255, 170, 0.5);
}

.highlight {
    background: linear-gradient(135deg, #00ffaa, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 10px rgba(0, 255, 170, 0.5)); }
    to { filter: drop-shadow(0 0 20px rgba(0, 255, 170, 0.8)); }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #b0b8c5;
    margin-bottom: 40px;
}

.cta-section {
    position: relative;
}

.cta-button {
    background: linear-gradient(135deg, #00ffaa 0%, #00d4ff 100%);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    color: #0a0e27;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 255, 170, 0.5);
    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.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 50px rgba(0, 255, 170, 0.8);
}

.btn-text {
    margin-right: 10px;
}

.btn-icon {
    font-size: 20px;
}

.promo-copied {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #00ffaa;
    color: #0a0e27;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.promo-copied.show {
    opacity: 1;
}

/* Анимация выигрышей */
.wins-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1000;
}

.win-item {
    position: absolute;
    color: #00ffaa;
    font-weight: 900;
    font-size: 1.3rem;
    text-shadow: 0 0 18px rgba(0, 255, 170, 0.9);
    animation: winFloat 4s ease-out forwards;
    opacity: 0;
    pointer-events: none;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@keyframes winFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    20% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1.2);
    }
}

.win-item-inline {
    display: inline-block;
    color: #00ffaa;
    font-weight: 900;
    font-size: 1.3em;
    margin-left: 10px;
    margin-right: 2px;
    vertical-align: middle;
    text-shadow: 0 0 12px #00ffaa99;
    animation: winFloat 4s ease-out infinite;
    opacity: 1;
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    pointer-events: none;
}

/* Секции */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #00ffaa, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Как это работает */
.how-it-works {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 170, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 170, 0.5);
    box-shadow: 0 20px 40px rgba(0, 255, 170, 0.2);
}

.step-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.step-number {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #00ffaa, #00d4ff);
    color: #0a0e27;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
}

.step-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #00ffaa;
}

.step-card p {
    color: #b0b8c5;
    font-size: 16px;
}

/* Преимущества */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 170, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 170, 0.3);
    box-shadow: 0 15px 30px rgba(0, 255, 170, 0.1);
}

.advantage-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #00ffaa;
}

.advantage-card p {
    color: #b0b8c5;
    font-size: 14px;
    line-height: 1.6;
}

/* Отзывы */
.reviews {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 170, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 170, 0.4);
    box-shadow: 0 15px 30px rgba(0, 255, 170, 0.15);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.user-avatar {
    font-size: 32px;
    margin-right: 15px;
}

.user-name {
    font-weight: 600;
    color: #00ffaa;
    margin-bottom: 5px;
}

.win-amount {
    font-weight: 700;
    color: #00d4ff;
    font-size: 18px;
}

.review-text {
    color: #b0b8c5;
    font-style: italic;
    line-height: 1.6;
}

/* Финальный призыв */
.final-cta {
    background: linear-gradient(135deg, rgba(0, 255, 170, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    text-align: center;
}

.final-cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: #00ffaa;
}

.final-cta-content p {
    font-size: 18px;
    color: #b0b8c5;
    margin-bottom: 40px;
}

.final-cta-button {
    background: linear-gradient(135deg, #00ffaa 0%, #00d4ff 100%);
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    color: #0a0e27;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 40px rgba(0, 255, 170, 0.6);
    position: relative;
    overflow: hidden;
}

.final-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.final-cta-button:hover::before {
    left: 100%;
}

.final-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 60px rgba(0, 255, 170, 0.8);
}

.btn-sparkle {
    margin-left: 10px;
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

/* Футер */
.footer {
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 30px 0;
    color: #b0b8c5;
    font-size: 14px;
}

/* Мобильная адаптация */
@media (max-width: 900px) {
    .container {
        padding: 0 10px;
    }
    section {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 8px;
    }
    section {
        padding: 32px 0;
    }
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .promo-badge {
        padding: 8px 14px;
        font-size: 0.95rem;
        margin-bottom: 18px;
    }
    .promo-code {
        font-size: 1.1rem;
    }
    .cta-button, .final-cta-button {
        padding: 12px 18px;
        font-size: 1rem;
    }
    .logo-1win-img {
        max-width: 80px;
        margin-bottom: 10px;
    }
    .steps-grid, .advantages-grid, .reviews-grid, .big-wins-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    .step-card, .advantage-card, .review-card, .bank-screenshot {
        padding: 16px 10px;
    }
    .section-title {
        font-size: 1.2rem;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.1rem;
    }
    .logo-1win-img {
        max-width: 60px;
    }
    .promo-badge {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
    .cta-button, .final-cta-button {
        padding: 10px 10px;
        font-size: 0.95rem;
    }
    .section-title {
        font-size: 1rem;
    }
}

.logo-1win {
    display: block;
    margin: 0 auto 24px auto;
    max-width: 180px;
    width: 100%;
    height: auto;
}

@media (max-width: 600px) {
    .logo-1win {
        max-width: 120px;
        margin-bottom: 16px;
    }
}

.logo-1win-text {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #0a3cff 60%, #00cfff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-align: center;
    margin: 0 auto 24px auto;
    text-shadow: 0 2px 24px #00cfff88, 0 1px 2px #0a1433;
}

@media (max-width: 600px) {
    .logo-1win-text {
        font-size: 2.1rem;
        margin-bottom: 16px;
    }
}

.logo-1win-img {
    display: block;
    margin: 0 auto 24px auto;
    max-width: 160px;
    width: 100%;
    height: auto;
}
@media (max-width: 600px) {
    .logo-1win-img {
        max-width: 100px;
        margin-bottom: 16px;
    }
}

.big-wins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.bank-screenshot {
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 18px 8px 10px 8px;
    text-align: center;
    box-shadow: 0 2px 8px #00cfff22;
}
.bank-screenshot img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 8px;
}
.screenshot-caption {
    display: block;
    color: #00ffaa;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 2px;
}

@media (max-width: 600px) {
    .win-item {
        font-size: 1rem;
    }
}

.logo-1win-inline {
    height: 1.2em;
    width: auto;
    vertical-align: middle;
    margin-left: 4px;
    margin-bottom: 2px;
    display: inline-block;
} 