:root {
    --bg-color: #831818;
    /* Deep Red from image */
    --card-bg: #2b1313;
    /* Dark Maroon/Brown from image */
    --accent-red: #9e2a2a;
    /* Button red */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --border-color: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background: radial-gradient(circle at center, #9b1c1c 0%, #831818 100%);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    padding: 20px;
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
}

.card {
    background-color: var(--card-bg);
    width: 100%;
    padding: 3.5rem 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Logo Styling */
.logo-container {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
}

.main-logo {
    width: 100px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.main-logo:hover {
    transform: scale(1.1) rotate(2deg);
}

/* Status Badge */
.status-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

/* Text Styling */
.title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 480px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

/* Progress Bar */
.progress-wrapper {
    width: 100%;
    max-width: 420px;
    margin: 0 auto 3.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-bar-container {
    flex-grow: 1;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #ffffff, #f0f0f0);
    border-radius: 4px;
    transition: width 2s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.progress-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    min-width: 45px;
}

/* Newsletter Section */
.newsletter-section {
    margin-bottom: 3rem;
}

.cta-text {
    font-size: 0.85rem;
    letter-spacing: 4px;
    margin-bottom: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.subscribe-form {
    display: flex;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 4px;
    padding: 4px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.subscribe-form input {
    flex-grow: 1;
    background-color: transparent;
    border: none;
    padding: 12px 20px;
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
    color: #333;
}

.subscribe-form button {
    background-color: var(--accent-red);
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    border-radius: 3px;
    text-transform: uppercase;
}

.subscribe-form button:hover {
    background-color: #b71c1c;
    box-shadow: 0 5px 15px rgba(183, 28, 28, 0.4);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 1rem;
}

.social-links a {
    color: #ffffff;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.social-links a:hover {
    transform: translateY(-5px);
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 600px) {
    .card {
        padding: 2.5rem 1.5rem;
        margin: 10px;
    }

    .title {
        font-size: 1.6rem;
    }

    .subscribe-form {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        padding: 0;
        gap: 12px;
    }

    .subscribe-form input {
        background: #fff;
        border-radius: 4px;
    }

    .subscribe-form button {
        border-radius: 4px;
        padding: 15px;
    }
}