* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a14 50%, #2d0a1f 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 0, 80, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 0, 80, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

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

.container {
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.content {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(30, 10, 20, 0.95) 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(255, 0, 80, 0.3), 0 0 100px rgba(255, 0, 80, 0.1);
    border: 2px solid rgba(255, 0, 80, 0.5);
    position: relative;
    overflow: hidden;
}

.content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 0, 80, 0.1) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.age-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff0050 0%, #ff3366 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 3px;
    box-shadow: 0 0 20px rgba(255, 0, 80, 0.6);
    animation: glow 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 80, 0.6); }
    50% { box-shadow: 0 0 30px rgba(255, 0, 80, 0.9), 0 0 40px rgba(255, 0, 80, 0.5); }
}

h1 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #ffffff 0%, #ff0050 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 900;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 30px rgba(255, 0, 80, 0.3);
}

.subtitle {
    font-size: 1.3rem;
    color: #ff3366;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.feature {
    background: rgba(255, 0, 80, 0.1);
    border: 1px solid rgba(255, 0, 80, 0.3);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
}

.description {
    font-size: 1.125rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.description strong {
    color: #ff3366;
    font-weight: 700;
}

.urgency {
    background: linear-gradient(135deg, #ff0050 0%, #d40042 100%);
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 35px;
    font-size: 1.125rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    animation: pulse-urgency 1.5s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes pulse-urgency {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.telegram-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff0050 0%, #ff3366 50%, #ff0050 100%);
    background-size: 200% 100%;
    color: white;
    text-decoration: none;
    padding: 20px 45px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 900;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 0, 80, 0.6), 0 0 40px rgba(255, 0, 80, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    animation: button-glow 2s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes button-glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(255, 0, 80, 0.6), 0 0 40px rgba(255, 0, 80, 0.3);
    }
    50% {
        box-shadow: 0 8px 35px rgba(255, 0, 80, 0.8), 0 0 60px rgba(255, 0, 80, 0.5);
    }
}

.telegram-button:hover {
    background-position: 100% 0;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 0, 80, 0.8), 0 0 80px rgba(255, 0, 80, 0.6);
}

.telegram-button:active {
    transform: translateY(-1px) scale(1.02);
}

.telegram-icon {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .content {
        padding: 40px 30px;
    }

    .age-badge {
        font-size: 1.25rem;
        padding: 8px 18px;
    }

    h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .features {
        gap: 10px;
    }

    .feature {
        font-size: 0.9375rem;
        padding: 10px 16px;
    }

    .description {
        font-size: 1rem;
    }

    .urgency {
        font-size: 1rem;
        padding: 12px;
    }

    .telegram-button {
        padding: 18px 36px;
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 15px;
    }

    .content {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .age-badge {
        font-size: 1.125rem;
        padding: 8px 16px;
        margin-bottom: 15px;
        letter-spacing: 2px;
    }

    h1 {
        font-size: 1.9rem;
        margin-bottom: 12px;
    }

    .subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        letter-spacing: 1px;
    }

    .features {
        gap: 8px;
        margin-bottom: 20px;
    }

    .feature {
        font-size: 0.875rem;
        padding: 10px 14px;
    }

    .description {
        font-size: 0.9375rem;
        margin-bottom: 20px;
    }

    .urgency {
        font-size: 0.9375rem;
        padding: 12px;
        margin-bottom: 25px;
        letter-spacing: 1px;
    }

    .telegram-button {
        padding: 16px 32px;
        font-size: 0.95rem;
        gap: 10px;
        letter-spacing: 1px;
    }

    .telegram-icon {
        width: 20px;
        height: 20px;
    }
}
