/* ── Reset ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ── Body ── */
body {
    font-family: "Noto Sans", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: rgb(131, 112, 105);
    margin: 0;
    position: relative;
    overflow-x: hidden;
}

/* ── Blurred background image ── */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url(assets/itsdarly1.jpg);
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    z-index: -1;
    opacity: 0.35;
}

/* ── Main container ── */
.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    background-color: rgb(53, 38, 33);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-bottom: 20px;
}

/* ── Profile image ── */
.profile-image {
    width: 100%;
    display: block;
}

/* ── Name & social section ── */
.info-box {
    margin-top: 20px;
    text-align: center;
}

.model-name {
    font-size: 40px;
    font-weight: bold;
    color: rgb(237, 231, 227);
    margin-bottom: 30px;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.social-media a {
    text-decoration: none;
}

.icon {
    width: 24px;
    height: 24px;
    color: white;
    transition: color 0.3s ease;
}

.social-media a:hover .icon {
    color: rgb(223, 214, 209);
}

/* ── Link buttons ── */
.links {
    margin-top: 20px;
}

.link-button {
    display: block;
    width: 100%;
    padding: 30px;
    text-decoration: none;
    background-color: rgb(237, 231, 227);
    color: rgb(53, 38, 33);
    font-size: 32px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.link-button:hover {
    background-color: rgb(223, 214, 209);
}

/* ── Responsive ── */
@media (min-width: 768px) {
    .container {
        width: 600px;
        margin: auto;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }
}


/* ════════════════════════════════════
   AGE VERIFICATION MODAL
════════════════════════════════════ */

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 12, 10, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: rgb(53, 38, 33);
    border: 1px solid rgba(237, 231, 227, 0.15);
    max-width: 440px;
    width: 100%;
    padding: 48px 36px 40px;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.modal-icon {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1;
}

.modal-title {
    font-family: "Noto Sans", sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: rgb(237, 231, 227);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.modal-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(237, 231, 227, 0.65);
    margin-bottom: 28px;
    line-height: 1.6;
}

.modal-question {
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgb(237, 231, 227);
    margin-bottom: 20px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.modal-btn {
    width: 100%;
    padding: 18px 24px;
    font-family: "Noto Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: none;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.15s ease;
    text-transform: uppercase;
}

.modal-btn:active {
    transform: scale(0.98);
}

.modal-btn--confirm {
    background-color: rgb(237, 231, 227);
    color: rgb(53, 38, 33);
}

.modal-btn--confirm:hover {
    background-color: rgb(255, 252, 250);
}

.modal-btn--deny {
    background-color: transparent;
    color: rgba(237, 231, 227, 0.55);
    border: 1px solid rgba(237, 231, 227, 0.2);
}

.modal-btn--deny:hover {
    background-color: rgba(237, 231, 227, 0.06);
    color: rgba(237, 231, 227, 0.8);
}

.modal-legal {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: rgba(237, 231, 227, 0.35);
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto;
}


/* ════════════════════════════════════
   BLOCKED SCREEN
════════════════════════════════════ */

.blocked-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgb(20, 12, 10);
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
}

.blocked-overlay.active {
    display: flex;
}

.blocked-box {
    text-align: center;
    max-width: 360px;
}

.blocked-icon {
    font-size: 64px;
    margin-bottom: 24px;
    line-height: 1;
}

.blocked-title {
    font-family: "Noto Sans", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: rgb(237, 231, 227);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.blocked-text {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(237, 231, 227, 0.55);
    line-height: 1.7;
}
