/* Now page specific styles */
.now-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background-color: var(--color-bg);
}

.now-container {
    position: relative;
    width: 100%;
    max-width: 800px;
}

.now-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-text);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.now-close-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.now-updated {
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.now-container h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--color-primary);
}

.now-container p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.now-container a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.now-container a:hover {
    border-bottom: 1px solid var(--color-primary);
}

/* Animation for the modal */
.now-container {
    animation: fadeIn 0.5s ease-in-out;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .now-container {
        padding: 2rem 1.5rem;
    }
    
    .now-close-btn {
        top: 0.75rem;
        right: 0.75rem;
    }
}
