:root {
    --primary-blue: #4D7CFF;
    --bright-blue: #60A5FA;
    --dark-navy: #0A1128;
    --card-bg: #111B33;
    --text-glow: rgba(77, 124, 255, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-navy);
    padding: 1rem;
}

.container {
    width: 100%;
    max-width: 380px;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 24px;
    border: 1px solid rgba(77, 124, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 80px rgba(77, 124, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-blue),
        transparent
    );
    opacity: 0.3;
}

.premium-badge {
    background: linear-gradient(135deg, var(--bright-blue), var(--primary-blue));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(77, 124, 255, 0.2);
}

.premium-badge::before {
    content: "⚡";
    font-size: 1.1em;
}

h1 {
    font-size: 2.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 0 20px var(--text-glow);
}

.tagline {
    color: #94A3B8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--bright-blue);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--bright-blue);
    border-radius: 50%;
    position: relative;
}

.status-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: var(--bright-blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.5;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1); opacity: 0.5; }
}

.timer {
    background: rgba(77, 124, 255, 0.1);
    border: 1px solid rgba(77, 124, 255, 0.2);
    color: var(--bright-blue);
    padding: 1rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-button {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--bright-blue), var(--primary-blue));
    border: none;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(77, 124, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 124, 255, 0.4);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: rotate(45deg) translateX(-200%); }
    100% { transform: rotate(45deg) translateX(200%); }
}

.speed-meter {
    background: rgba(77, 124, 255, 0.1);
    border-radius: 8px;
    height: 4px;
    width: 100%;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.speed-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--bright-blue);
    animation: speed 2s infinite;
    transform-origin: left;
}

@keyframes speed {
    0% { transform: scaleX(0); }
    50% { transform: scaleX(0.7); }
    100% { transform: scaleX(0); }
}