/* body {
    font-family: 'Arial', sans-serif; 
    line-height: 1.6; 
    margin: 0; 
    padding: 0; 
    background-color: #f4f4f4; 
    color: #333; 
} 

header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

header h1 {
    margin-bottom: 0.5rem;
}

main {
    padding: 1rem;
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

section {
    margin-bottom: 20px;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

section:last-child {
    border-bottom: none;
}

footer {
    text-align: center;
    padding: 1rem 0;
    background: #333;
    color: #fff;
    position: relative;
    bottom: 0;
    width: 100%;
}  */

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Darker overlay for more focus */
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    background-color: #fff;
    padding: 30px 40px; /* More padding */
    border-radius: 15px; /* More rounded corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* Stronger shadow */
    text-align: center;
    width: 90%;
    max-width: 550px; /* Slightly wider for better content fit */
    position: relative;
    animation: slideIn 0.5s ease-out; /* Entry animation */
    border-top: 10px solid #ff6b6b; /* Accent color */
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-content h2 {
    color: #333;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 2em; /* Larger heading */
    font-weight: bold;
}

.popup-content p {
    color: #555;
    margin-bottom: 25px;
    font-size: 1.1em;
}

.popup-options {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.popup-options li {
    margin-bottom: 15px;
}

.popup-options a {
    display: block;
    background-color: #ff6b6b; /* Bright, attractive button color */
    color: white;
    padding: 15px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.popup-options a:hover {
    background-color: #e05252; /* Darker on hover */
    transform: translateY(-2px); /* Slight lift on hover */
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.popup-motivation {
    font-size: 0.9em;
    color: #777;
    font-style: italic;
}

.close-button {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5em; /* Larger close button */
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-button:hover {
    color: #777;
}