/* DLNP - Frontend Styles (Fallback - Main styles are inline) */
/* This file serves as a fallback if inline styles are stripped */
.dlnp-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
}

.dlnp-overlay.dlnp-show {
    display: flex !important;
}

.dlnp-modal-container {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 20px;
    max-height: 90vh;
    overflow-y: auto;
}

.dlnp-notice {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.dlnp-notice.dlnp-hidden {
    display: none !important;
}

.dlnp-site-logo {
    text-align: center;
    margin-bottom: 20px;
}

.dlnp-site-logo img {
    max-height: 70px;
    width: auto;
}

.dlnp-modal-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a2332;
    margin: 0 0 5px 0;
    text-align: center;
}

.dlnp-modal-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #e74c3c;
    margin: 0 0 15px 0;
    text-align: center;
}

.dlnp-modal-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0 0 15px 0;
}

.dlnp-modal-content p:last-of-type {
    margin-bottom: 25px;
}

.dlnp-modal-content a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.dlnp-modal-content a:hover {
    text-decoration: underline;
}

.dlnp-button-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.dlnp-btn {
    flex: 1;
    min-width: 120px;
    padding: 14px 25px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    color: #ffffff;
}

.dlnp-btn-enter {
    background: #2ecc71;
}

.dlnp-btn-enter:hover {
    background: #27ae60;
}

.dlnp-btn-leave {
    background: #e74c3c;
}

.dlnp-btn-leave:hover {
    background: #c0392b;
}

.dlnp-btn-accept {
    background: #3498db;
}

.dlnp-btn-accept:hover {
    background: #2980b9;
}

.dlnp-btn-reject {
    background: #95a5a6;
}

.dlnp-btn-reject:hover {
    background: #7f8c8d;
}

body.dlnp-no-scroll {
    overflow: hidden !important;
}

@media (max-width: 640px) {
    .dlnp-notice {
        padding: 30px 20px;
        border-radius: 16px;
    }
    .dlnp-modal-content h2 {
        font-size: 20px;
    }
    .dlnp-modal-content h3 {
        font-size: 16px;
    }
    .dlnp-modal-content p {
        font-size: 14px;
    }
    .dlnp-btn {
        flex: 1 1 100%;
        min-width: unset;
        padding: 12px 20px;
        font-size: 15px;
    }
    .dlnp-site-logo img {
        max-height: 50px;
    }
}

@media (prefers-color-scheme: dark) {
    .dlnp-notice {
        background: #1a2332;
    }
    .dlnp-modal-content h2 {
        color: #f7fafc;
    }
    .dlnp-modal-content p {
        color: #a0aec0;
    }
    .dlnp-modal-content a {
        color: #63b3ed;
    }
}