/* Development Notice Styles - Mobile Enhanced */
.development-notice {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #ff6b6b, #fd5a46);
    color: white;
    padding: 24px 18px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
    z-index: 1000;
    max-width: 98vw;
    width: 95vw;
    animation: slideInCenter 0.5s ease-out, fadeOutNotice 0.7s 2.8s forwards;
    opacity: 1;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    box-sizing: border-box;
    padding-bottom: 38px;
    /* Safe area for notches */
    padding-top: calc(24px + env(safe-area-inset-top));
    padding-bottom: calc(38px + env(safe-area-inset-bottom));
    padding-left: calc(18px + env(safe-area-inset-left));
    padding-right: calc(18px + env(safe-area-inset-right));
}
.notice-content {
    position: relative;
}
.development-notice h3 {
    margin: 0 0 12px 0;
    font-size: 1.25em;
    font-weight: bold;
    letter-spacing: 0.5px;
}
.development-notice p {
    margin: 0;
    font-size: 1em;
    line-height: 1.6;
    word-break: break-word;
}
.notice-close {
    position: absolute;
    top: -16px;
    right: -16px;
    background: rgba(255,255,255,0.25);
    border: none;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    transition: background 0.3s ease, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}
.notice-close:active, .notice-close:focus {
    background: rgba(255,255,255,0.4);
    outline: none;
}
.notice-close:hover {
    background: rgba(255,255,255,0.35);
}
@keyframes slideInCenter {
    from {
        transform: translate(-50%, -70%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}
@keyframes fadeOutNotice {
    to {
        opacity: 0;
        pointer-events: none;
    }
}
@media (max-width: 600px) {
    .development-notice {
        padding: 14px 4vw;
        max-width: 99vw;
        font-size: 1.05rem;
        border-radius: 12px;
    }
    .notice-close {
        width: 44px;
        height: 44px;
        font-size: 2.2rem;
        top: -22px;
        right: -22px;
    }
    .development-notice h3 {
        font-size: 1.1em;
    }
} 