/* Reset & Core Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    background: #121212;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

/* Dynamic Dark & Safety Red Background Overlay */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(229, 57, 53, 0.25), transparent 60%),
                radial-gradient(circle at bottom left, rgba(255, 112, 67, 0.15), transparent 50%),
                #121212;
    z-index: -1;
}

/* Layout Container */
.container {
    width: 90%;
    max-width: 650px;
    padding: 40px 20px;
    text-align: center;
}

/* Logo Styling */
.logo-container {
    margin-bottom: 30px;
}

.logo-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.logo-container h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e53935; /* Safety Red */
}

.logo-container h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: #e0e0e0;
}

/* Content Box Frame */
.content-box {
    background: rgba(30, 30, 30, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.status-badge {
    display: inline-block;
    background: rgba(229, 57, 53, 0.15);
    color: #ff5252;
    border: 1px solid #e53935;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.content-box h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.content-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b0bec5;
    margin-bottom: 25px;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 30px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #b0bec5;
    margin-bottom: 8px;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background-color: #333333;
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    width: 75%; /* Adjust percentage here */
    height: 100%;
    background: linear-gradient(90deg, #e53935, #ff7043);
    border-radius: 5px;
}

/* Notification Form */
.notify-form {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.notify-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #424242;
    background-color: #1e1e1e;
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}

.notify-form input[type="email"]:focus {
    border-color: #e53935;
}

.notify-form button {
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    background-color: #e53935;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.notify-form button:hover {
    background-color: #c62828;
}

/* Footer Contact Section */
.contact-info {
    margin-top: 35px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-size: 0.9rem;
    color: #b0bec5;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Mobile Responsiveness */
@media (max-width: 500px) {
    .notify-form {
        flex-direction: column;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
}