body {
    background: linear-gradient(135deg, #1a0a1e, #2d1133, #1e0a2e);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Floating glow blobs */
.glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff6b9d, transparent);
    top: -100px;
    right: -100px;
    animation: float1 8s ease-in-out infinite;
}

.glow-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #c44dff, transparent);
    bottom: -80px;
    left: -80px;
    animation: float2 10s ease-in-out infinite;
}

.glow-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ff8ec7, transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float3 12s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-60px, 40px) scale(1.1); }
    66% { transform: translate(30px, -20px) scale(0.9); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -50px) scale(1.15); }
}

@keyframes float3 {
    0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.2; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
}

/* Main container */
.container {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
    transition: transform 0.15s ease-out;
    will-change: transform;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 157, 0.12);
    border: 1px solid rgba(255, 107, 157, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    color: #ff8ec7;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
    animation: fadeInDown 0.8s ease-out;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #ff6b9d;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px #ff6b9d;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px #ff6b9d; }
    50% { opacity: 0.4; box-shadow: 0 0 16px #ff6b9d; }
}

/* Title */
.title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.title .line {
    display: block;
}

.line-1 {
    color: #f0d0e0;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.line-2 {
    background: linear-gradient(90deg, #ff6b9d, #ff8ec7, #c44dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease-out 0.4s both, shimmer 3s ease-in-out infinite;
    background-size: 200% auto;
}

.line-3 {
    color: #d0b0d8;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.line-3 em {
    font-style: normal;
    background: linear-gradient(90deg, #ff6b9d, #ff4081);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

/* Typing text */
.description {
    font-size: 1.1rem;
    color: #b89ac0;
    margin-bottom: 2.5rem;
    min-height: 1.5em;
    animation: fadeIn 1s ease-out 0.8s both;
}

.typing::after {
    content: '|';
    animation: blink 0.8s step-end infinite;
    color: #ff6b9d;
    margin-left: 2px;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s ease-out 1s both;
}

.time-block {
    background: rgba(255, 107, 157, 0.08);
    border: 1px solid rgba(255, 107, 157, 0.2);
    border-radius: 16px;
    padding: 1rem 1.2rem;
    min-width: 75px;
    backdrop-filter: blur(10px);
    transition: transform 0.2s, border-color 0.2s;
}

.time-block:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 157, 0.5);
    box-shadow: 0 8px 24px rgba(255, 107, 157, 0.15);
}

.time-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(180deg, #fff, #ff8ec7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.time-label {
    font-size: 0.7rem;
    color: #a07098;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.time-separator {
    font-size: 1.8rem;
    color: #ff6b9d;
    font-weight: 300;
    animation: pulse 2s infinite;
}

/* Buttons */
.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s ease-out 1.2s both;
    flex-wrap: wrap;
}

.btn {
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b9d, #c44dff);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.5);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-outline {
    background: transparent;
    color: #ff8ec7;
    border: 1px solid rgba(255, 142, 199, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 107, 157, 0.1);
    border-color: #ff8ec7;
    transform: translateY(-2px);
}

/* Tech pills */
.tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 1.4s both;
}

.pill {
    background: rgba(255, 107, 157, 0.08);
    border: 1px solid rgba(255, 107, 157, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #c89ab0;
    cursor: default;
    transition: all 0.3s ease;
    animation: popIn 0.4s ease-out calc(var(--delay) * 0.1s + 1.6s) both;
}

.pill:hover {
    background: rgba(255, 107, 157, 0.2);
    border-color: rgba(255, 107, 157, 0.5);
    color: #ffb8d4;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.15);
}

/* Server time */
.server-time {
    font-size: 0.75rem;
    color: #5a4060;
    animation: fadeIn 1s ease-out 2s both;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, #ff6b9d, #c44dff);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 0.9rem;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 100;
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.4);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

/* Mobile */
@media (max-width: 600px) {
    .container { padding: 1.5rem 1rem; }
    .title { font-size: 2.5rem; }
    .time-block { min-width: 60px; padding: 0.7rem 0.8rem; }
    .time-number { font-size: 1.5rem; }
    .countdown { gap: 0.3rem; }
    .glow { display: none; }
}