:root {
    --bg-base: #1c2214; /* Deep dark olive green */
    --accent-primary: #5c6e26; /* Bright olive */
    --accent-secondary: #d1b86e; /* Warm gold/mustard */
    --accent-tertiary: #313d21; /* Mid olive */
    
    --text-primary: #fcfcf9;
    --text-secondary: #d4d9c4;
    --text-muted: #959d7b;
    
    --glass-bg: rgba(52, 64, 34, 0.25);
    --glass-border: rgba(184, 198, 144, 0.15);
    --glass-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-base);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Background Gradients & Animation */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at center, #111511 0%, var(--bg-base) 100%);
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out alternate;
}

.sphere-1 {
    width: 40vw;
    height: 40vw;
    background: var(--accent-primary);
    top: -10vw;
    left: -10vw;
    animation-delay: 0s;
}

.sphere-2 {
    width: 35vw;
    height: 35vw;
    background: var(--accent-tertiary);
    bottom: -5vw;
    right: -5vw;
    animation-delay: -5s;
    animation-duration: 25s;
}

.sphere-3 {
    width: 25vw;
    height: 25vw;
    background: var(--accent-secondary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    animation-duration: 30s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 40px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Main Content Layout */
.content-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    z-index: 1;
}

/* Glassmorphism Container */
.glass-container {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 4rem;
    width: 100%;
    max-width: 600px;
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.glass-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90px, transparent, rgba(255,255,255,0.2), transparent);
}

/* Brand Section */
.brand-section {
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out forwards;
}

.brand-logo-img {
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem;
}

.brand-tagline {
    font-size: 1.1rem;
    color: var(--accent-secondary);
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Status Section */
.status-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.icon-pulsing-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
}

.status-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    background-color: white;
    border: 3px solid var(--accent-secondary);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.icon-pulsing-wrapper::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 2px solid var(--accent-secondary);
    animation: pulse 2.5s infinite ease-out;
    z-index: 1;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.status-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.status-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 450px;
    margin: 0 auto;
}

/* Newsletter Section */
.newsletter-section {
    width: 100%;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

.newsletter-section p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.notify-form {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}

.notify-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.notify-form input:focus {
    border-color: var(--accent-primary);
    background: rgba(0, 0, 0, 0.6);
}

.notify-form input::placeholder {
    color: var(--text-muted);
}

.notify-form button {
    padding: 0 2rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--accent-primary), #a04000);
    border: none;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.3);
}

.notify-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 84, 0, 0.5);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out 0.9s forwards;
    opacity: 0;
}

.social-links a {
    color: var(--text-muted);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
}

.social-links a:hover {
    color: var(--accent-secondary);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Footer / General */
.footer-note {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    z-index: 1;
}

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

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

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .glass-container {
        padding: 3rem 1.5rem;
        border-radius: 20px;
    }
    
    .brand-name {
        font-size: 3rem;
    }
    
    .status-title {
        font-size: 1.5rem;
    }
    
    .notify-form {
        flex-direction: column;
    }
    
    .notify-form button {
        padding: 1rem;
    }
}
