:root {
    --primary-color: #D4AF37; /* Metallic Gold */
    --hover-color: #F8E396;
    --text-color: #F4F4F5;
    --bg-color: #0F172A;
    --glass-bg: rgba(15, 23, 42, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body, html {
    width: 100%;
    height: 100%;
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow: hidden;
}

/* Background Image Layer with Parallax Setup */
.bg-layer {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-image: url('assets/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: transform 0.1s ease-out;
}

/* Overlay for Readability */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.75) 0%, rgba(2, 6, 23, 0.9) 100%);
    z-index: 2;
}

/* Main Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
}

/* Glassmorphic Card */
.glass-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 60px 50px;
    max-width: 680px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Badge */
.badge {
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Logo / Title */
.logo {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 24px;
    color: #FFFFFF;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Description */
.description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #CBD5E1;
    font-weight: 300;
    margin-bottom: 30px;
}

.description strong {
    color: var(--primary-color);
    font-weight: 500;
}

/* Divider */
.divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto 30px;
}

/* Newsletter Area */
.newsletter-wrapper {
    width: 100%;
}

.newsletter-text {
    font-size: 0.95rem;
    color: #94A3B8;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    width: 100%;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.newsletter-form input::placeholder {
    color: #64748B;
}

.newsletter-form input:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    background: var(--primary-color);
    color: #0F172A;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    outline: none;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
}

.newsletter-form button:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.success-message {
    margin-top: 14px;
    color: #4ADE80;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Social Icons */
.social-footer {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.social-icon {
    color: #94A3B8;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    color: #0F172A;
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

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

/* Responsive */
@media (max-width: 600px) {
    .logo {
        font-size: 2.5rem;
    }
    
    .glass-container {
        padding: 40px 24px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    body, html {
        overflow: auto; /* Allow scrolling on small mobile if content doesn't fit */
    }
}
