:root {
    --primary: #FFB800;
    --primary-dark: #cc9300;
    --bg: #0a0a0a;
    --text: #ffffff;
    --text-muted: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg);
    color: var(--text);
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Image & Effects */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.background-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.4) contrast(1.1);
    transform: scale(1.1);
    animation: pan 60s infinite alternate linear;
}

@keyframes pan {
    from { transform: scale(1.1) translate(0, 0); }
    to { transform: scale(1.1) translate(-2%, -2%); }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

/* Main Content Layout */
main {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.content {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Logo Styles */
header {
    margin-bottom: 3rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.lightning {
    font-size: 2.5rem;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(255, 184, 0, 0.6);
    animation: flicker 3s infinite;
}

@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% { opacity: 1; }
    20%, 24%, 55% { opacity: 0.4; }
}

.logo h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
}

.logo h1 span {
    color: var(--primary);
}

/* Hero Text & Glitch Effect */
.hero-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    position: relative;
}

.hero-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Timer Styles */
.timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.timer-item {
    display: flex;
    flex-direction: column;
}

.timer-item span {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    font-variant-numeric: tabular-nums;
}

.timer-item label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* Newsletter Form */
.newsletter {
    margin-bottom: 3rem;
}

.newsletter p {
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: var(--text-muted);
}

#notify-form {
    display: flex;
    max-width: 450px;
    margin: 0 auto;
    gap: 0.5rem;
}

#notify-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

#notify-form input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

#notify-form button {
    background: var(--primary);
    color: black;
    border: none;
    border-radius: 12px;
    padding: 0 2rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s;
}

#notify-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(255, 184, 0, 0.4);
}

/* Social & Footer */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: color 0.3s;
}

.social-icon:hover {
    color: var(--primary);
}

footer p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 600px) {
    .logo h1 { font-size: 2.5rem; }
    .hero-text h2 { font-size: 1.8rem; }
    .timer { gap: 1rem; }
    .timer-item span { font-size: 2rem; }
    #notify-form { flex-direction: column; }
    #notify-form button { padding: 1rem; }
    .content { padding: 3rem 1.5rem; }
}
