:root {
    --bg-color: #030303;
    --text-main: #FFFFFF;
    --text-muted: #888888;
    --orange-primary: #FF5E00;
    --orange-glow: rgba(255, 94, 0, 0.4);
    --orange-dark: #cc4b00;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #111111 0%, #030303 100%);
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    perspective: 1000px;
    transform: rotateX(60deg) scale(2);
    transform-origin: top;
    opacity: 0.3;
}

.glow-orb {
    position: absolute;
    width: 60vw;
    height: 60vw;
    max-width: 800px;
    max-height: 800px;
    background: radial-gradient(circle, var(--orange-glow) 0%, rgba(0,0,0,0) 70%);
    filter: blur(80px);
    opacity: 0.3;
    border-radius: 50%;
    animation: float 20s infinite ease-in-out alternate;
}

.orange-orb-1 {
    top: -20%;
    right: -20%;
}

.orange-orb-2 {
    bottom: -30%;
    left: -20%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-100px, 100px) scale(1.2); }
}

nav {
    padding: 2rem 4rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.logo {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.logo .dot {
    color: var(--orange-primary);
    text-shadow: 0 0 20px var(--orange-primary);
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.hero {
    max-width: 800px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 94, 0, 0.05);
    border: 1px solid rgba(255, 94, 0, 0.4);
    color: var(--orange-primary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--orange-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--orange-primary);
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.glitch {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    line-height: 1.1;
    color: white;
    letter-spacing: -1px;
    text-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* Simple Glitch Effect on Hover for performance */
.glitch:hover {
    animation: simpleGlitch 0.2s 3;
}

@keyframes simpleGlitch {
    0% { transform: translate(0) }
    20% { transform: translate(-2px, 2px) }
    40% { transform: translate(-2px, -2px) }
    60% { transform: translate(2px, 2px) }
    80% { transform: translate(2px, -2px) }
    100% { transform: translate(0) }
}

.subtitle {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 400;
    color: #cccccc;
    margin-top: -0.5rem;
}

.highlight {
    color: var(--orange-primary);
    font-weight: 700;
    font-style: italic;
    text-shadow: 0 0 25px rgba(255, 94, 0, 0.5);
}

.description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.scarcity-card {
    width: 100%;
    max-width: 600px;
    margin: 1.5rem 0;
    padding: 1.5rem 2rem;
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: #e0e0e0;
}

.spots-text {
    color: var(--orange-primary);
}

.progress-container {
    width: 100%;
    height: 6px;
    background: #222;
    border-radius: 3px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.progress-bar {
    width: 91%;
    height: 100%;
    background: linear-gradient(90deg, #ff3300, var(--orange-primary));
    border-radius: 3px;
    box-shadow: 0 0 15px var(--orange-primary);
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.timer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1rem;
}

.timer-container p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.timer {
    color: var(--text-main) !important;
    font-size: 1.4rem !important;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    letter-spacing: 2px;
}

.cta-container {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.huge-btn {
    padding: 1.2rem 2.5rem !important;
    font-size: 1.2rem !important;
    text-decoration: none;
    display: flex;
    justify-content: center;
    border-radius: 100px;
}

.guarantees {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    background: rgba(255, 94, 0, 0.05);
    border: 1px dashed rgba(255, 94, 0, 0.3);
    padding: 1.2rem;
    border-radius: 12px;
    text-align: left;
}

.offer-text {
    font-size: 0.95rem;
    color: #cccccc;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    line-height: 1.4;
}

.offer-icon {
    font-size: 1.2rem;
}

.offer-text strong {
    color: white;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B00 0%, #E64A00 100%);
    border: none;
    padding: 0 2.5rem;
    border-radius: 100px;
    color: white;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 5px 15px rgba(255, 94, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 10px 25px rgba(255, 94, 0, 0.5);
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 5px 10px rgba(255, 94, 0, 0.3);
}


.trust-indicators {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeUp 1s 0.5s ease forwards;
}

.avatars {
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-color);
    margin-left: -12px;
    object-fit: cover;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar.more {
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
}

.trust-indicators span {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Success State Styles */
.success-message {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.success-message h3 {
    color: #10B981;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.success-message p {
    color: #a0aec0;
    line-height: 1.5;
}

@keyframes successPop {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
    nav { padding: 1.5rem; }
    .hero { gap: 1.2rem; }
    .scarcity-card { padding: 1.2rem; }
    .huge-btn {
        border-radius: 16px !important;
    }
    .btn-primary { 
        border-radius: 12px; 
        width: 100%; 
        padding: 1.2rem;
    }
    .guarantees {
        padding: 1rem;
    }
    .offer-text {
        font-size: 0.85rem;
    }
}
