:root {
    --wb-purple: #481173;
    --wb-magenta: #cb11ab;
    --wb-pink: #ff00bf;
    --wb-bg: #0f0a1a;
    --wb-surface: #1a1428;
    --wb-text: #ffffff;
    --wb-text-dim: #b3a9c9;
    --wb-gradient: linear-gradient(135deg, #481173 0%, #cb11ab 50%, #ff00bf 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    --accent-glow: 0 0 20px rgba(203, 17, 171, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Inter', sans-serif;
}

/* Skeleton Background */
.skeleton {
    background: linear-gradient(90deg, #1a1428 25%, #251d3a 50%, #1a1428 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Interactive Particles Layer */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

body {
    background-color: var(--wb-bg);
    color: var(--wb-text);
    overflow-x: hidden;
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(72, 17, 115, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(203, 17, 171, 0.3) 0%, transparent 40%);
    min-height: 100vh;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); filter: blur(10px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(203, 17, 171, 0.2); }
    50% { box-shadow: 0 0 20px rgba(203, 17, 171, 0.5); }
    100% { box-shadow: 0 0 5px rgba(203, 17, 171, 0.2); }
}

.animate-fadeIn {
    animation: fadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Layout */
.container {
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 25px;
    position: relative;
}

/* Header */
header {
    text-align: center;
    padding: 40px 0 20px;
}

.logo {
    font-size: 3rem;
    font-weight: 900;
    background: var(--wb-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.date-sync {
    font-size: 0.9rem;
    color: var(--wb-text-dim);
    font-weight: 500;
    background: var(--glass-bg);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid var(--glass-border);
}

/* Hero Section */
.hero {
    background: var(--wb-surface);
    border-radius: 32px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.promo-badge {
    display: inline-block;
    background: var(--wb-gradient);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 25px;
    box-shadow: var(--accent-glow);
    animation: glow 3s infinite;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 800;
}

.description {
    font-size: 1.05rem;
    color: var(--wb-text-dim);
    margin-bottom: 35px;
}

/* Buttons */
.btn {
    display: block;
    width: 100%;
    padding: 22px;
    border-radius: 20px;
    border: none;
    font-size: 1.15rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--wb-gradient);
    color: white;
    box-shadow: 0 10px 25px rgba(203, 17, 171, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(203, 17, 171, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--glass-border);
}

.btn-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--wb-magenta);
}

/* Instructions */
.instruction-card {
    background: var(--wb-surface);
    border-radius: 32px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
    border: 1px solid var(--glass-border);
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    transition: background 0.3s;
}

.step:hover {
    background: rgba(255,255,255,0.07);
}

.step-num {
    background: var(--wb-gradient);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.step-text h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: white;
}

.step-text p {
    font-size: 0.95rem;
    color: var(--wb-text-dim);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(150px);
    background: rgba(203, 17, 171, 0.9);
    color: white;
    padding: 16px 32px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    white-space: nowrap;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

/* Utilities */
.hidden {
    display: none;
}
/* Social Proof Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--wb-surface);
    border: 1px solid var(--glass-border);
    padding: 12px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(200%);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.notif-content {
    display: flex;
    flex-direction: column;
}

.notif-content span:first-child {
    font-weight: 800;
    font-size: 0.95rem;
    color: white;
}

.notif-content span:last-child {
    font-size: 0.8rem;
    color: var(--wb-text-dim);
}

.notification.active {
    transform: translateX(0);
}

.notif-avatar {
    width: 40px;
    height: 40px;
    background: var(--wb-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
}

/* Timer Block */
.timer-container {
    background: rgba(255, 0, 191, 0.1);
    border: 1px solid rgba(255, 0, 191, 0.2);
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 25px;
    text-align: center;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-family: monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--wb-pink);
}

/* FAQ Styles */
.faq-section {
    margin-top: 40px;
    text-align: left;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 18px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-answer {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    color: var(--wb-text-dim);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 18px;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--wb-magenta);
}

/* Skeleton State */
.skeleton-hero {
    height: 380px;
    border-radius: 32px;
    margin-bottom: 30px;
}

.loading-state #main-view {
    display: none;
}
