:root {
    --primary-green: #004d3d;
    --secondary-gold: #b89146;
    --gold-gradient: linear-gradient(135deg, #d4af37, #b89146);
    --dark-bg: #0a0f0d;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(184, 145, 70, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 77, 61, 0.4) 0%, transparent 40%),
        linear-gradient(135deg, #0a0f0d 0%, #004d3d 100%);
    z-index: -1;
}

.background-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.05;
    pointer-events: none;
}

/* Container & Animation */
.container {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Box - Glassmorphism */
.content-box {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
}

/* Logo */
.logo-container {
    margin-bottom: 40px;
}

.logo {
    max-width: 240px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Text Stylings */
.title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: var(--secondary-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.divider {
    width: 60px;
    height: 1px;
    background: var(--secondary-gold);
    margin: 0 auto 30px;
    opacity: 0.5;
}

.message {
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

/* Progress Indicator */
.status-indicator {
    max-width: 400px;
    margin: 0 auto 40px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 85%;
    background: var(--gold-gradient);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(184, 145, 70, 0.5);
    animation: slideProgress 2s ease-out;
}

@keyframes slideProgress {
    from {
        width: 0;
    }

    to {
        width: 85%;
    }
}

.status-text {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Form Styles */
.notify-form {
    display: flex;
    gap: 12px;
    max-width: 450px;
    margin: 0 auto 50px;
}

input[type="email"] {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 16px 20px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

input[type="email"]:focus {
    border-color: var(--secondary-gold);
}

button {
    background: var(--gold-gradient);
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 0 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(184, 145, 70, 0.2);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    border: 1px solid var(--glass-border);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-links a:hover {
    color: var(--secondary-gold);
    border-color: var(--secondary-gold);
}

/* Footer Note */
.footer-note {
    position: fixed;
    bottom: 30px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Responsive adjustment */
@media (max-width: 600px) {
    .content-box {
        padding: 40px 20px;
    }

    .notify-form {
        flex-direction: column;
    }

    button {
        padding: 16px;
    }
}