/* Development Notice Popup */
.dev-notice-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.dev-notice-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.dev-notice-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.dev-notice-close-btn:hover {
    color: #333;
}

.dev-notice-icon {
    margin-bottom: 1rem;
}

.dev-notice-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.dev-notice-text {
    text-align: left;
    margin-bottom: 2rem;
}

.dev-notice-text p {
    color: #636e72;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

.dev-notice-text strong {
    color: #2d3436;
    font-weight: 600;
}


.dev-notice-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.dev-notice-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    min-width: 120px;
}

.dev-notice-btn-primary {
    background: var(--accent-color);
    color: white;
}

.dev-notice-btn-primary:hover {
    background: #0984e3;
    transform: translateY(-1px);
}

.dev-notice-btn-secondary {
    background: #ddd;
    color: #636e72;
}

.dev-notice-btn-secondary:hover {
    background: #c0c0c0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mobile responsive */
@media (max-width: 480px) {
    .dev-notice-content {
        padding: 1.5rem;
        margin: 1rem;
        width: calc(100% - 2rem);
    }
    
    .dev-notice-content h3 {
        font-size: 1.3rem;
    }
    
    .dev-notice-buttons {
        flex-direction: column;
    }
    
    .dev-notice-btn {
        width: 100%;
    }
}