:root {
    --primary-color: #A04E3C; /* Rust/Terracotta */
    --secondary-color: #8d4434; /* Darker Rust */
    --accent-color: #d47a66; /* Lighter Rust */
    --bg-dark: #FEF2E2; /* Warm Off-white */
    --text-primary: #3B2F2F; /* Dark Brown */
    --text-secondary: #6B5B5B; /* Medium Brown */
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(160, 78, 60, 0.15);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    padding: 3rem 0;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

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

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(100px, 50px) rotate(45deg); }
}

/* Container & Glass Card */
.container {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 800px;
    padding: 2rem;
    margin: auto;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Logo */
.logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.logo-image {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

/* Typography */
.title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
    font-weight: 300;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(160, 78, 60, 0.05);
    border: 1px solid rgba(160, 78, 60, 0.15);
    border-radius: 9999px;
    margin-bottom: 3.5rem;
}

.pulse-indicator {
    width: 10px;
    height: 10px;
    background-color: #10b981; /* Emerald green */
    border-radius: 50%;
    position: relative;
}

.pulse-indicator::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 18px;
    height: 18px;
    background-color: #10b981;
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse 2s infinite;
}

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

.status-text {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
}

/* Notify Section */
.notify-section {
    border-top: 1px solid var(--glass-border);
    padding-top: 2.5rem;
}

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

.notify-form {
    display: flex;
    gap: 0.5rem;
    max-width: 450px;
    margin: 0 auto;
    position: relative;
}

.email-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.email-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(160, 78, 60, 0.2);
}

.email-input::placeholder {
    color: var(--text-secondary);
}

.notify-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0 2rem;
    font-family: inherit;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px var(--primary-color);
}

.notify-btn:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 1rem 0;
    }

    .container {
        width: 95%;
        padding: 0.5rem;
    }

    .glass-card {
        padding: 2.5rem 1.25rem;
    }
    
    .title {
        font-size: 2rem; /* Smaller font to prevent cutoff */
        word-break: break-word; /* Ensure long words like extraordinary break safely if needed */
        hyphens: auto;
    }

    .subtitle {
        font-size: 1rem;
    }
    
    .status-badge {
        margin-bottom: 2.5rem;
    }
    
    .notify-form {
        flex-direction: column;
    }
    
    .notify-btn {
        padding: 1rem;
    }
}
