:root {
    --primary-green: #063a2a;
    --dark-green: #031f17;
    --gold: #c5a059;
    --gold-glow: rgba(197, 160, 89, 0.4);
    --text-white: #f5f5f5;
    --text-muted: rgba(245, 245, 245, 0.6);
    --circuit-color: rgba(197, 160, 89, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-green);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Background Effects */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(6, 58, 42, 0.8) 0%, rgba(3, 31, 23, 0.95) 100%),
        url('assets/bg.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(18, 16, 16, 0) 50%,
        rgba(0, 0, 0, 0.1) 50%
    );
    background-size: 100% 4px;
    z-index: -1;
    pointer-events: none;
    opacity: 0.3;
}

/* Content Container */
.content {
    max-width: 800px;
    width: 90%;
    text-align: center;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    animation: fadeIn 1.5s ease-out;
}

/* Logo Styles */
.logo-container {
    margin-bottom: 1rem;
}

.main-logo {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 0 15px var(--gold-glow));
    animation: pulse 4s infinite ease-in-out;
}

/* Hero Section */
.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
    position: relative;
}

.tagline {
    font-size: 1.1rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 300;
}

.divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 2rem auto;
    box-shadow: 0 0 10px var(--gold);
}

.status-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    font-weight: 300;
}



/* Form Styles */
.notify-form {
    display: flex;
    gap: 0;
    width: 100%;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 4px;
    padding: 4px;
    backdrop-filter: blur(10px);
}

.notify-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem;
    color: white;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.notify-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.notify-form button {
    background: var(--gold);
    color: var(--dark-green);
    border: none;
    padding: 0 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.notify-form button:hover {
    background: #d4b47a;
    box-shadow: 0 0 15px var(--gold-glow);
}

/* Footer */
footer {
    margin-top: 3rem;
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.1rem;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px var(--gold-glow)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 25px var(--gold-glow)); }
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .hero h1 { font-size: 2.5rem; }
    .notify-form { flex-direction: column; border-radius: 8px; gap: 8px; background: transparent; border: none; }
    .notify-form input { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(197, 160, 89, 0.2); border-radius: 4px; }
    .notify-form button { padding: 1rem; border-radius: 4px; }
}
