/* client/css/ProfileDeleteScene.css */

#profile-delete-root {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;

    background:
        radial-gradient(circle at top,
            rgba(255,255,255,0.06),
            transparent 30%),
        linear-gradient(
            180deg,
            #09103f 0%,
            #08122f 100%
        );

    color: white;

    font-family: "Inter", sans-serif;

    overflow-y: auto;

background-color: #09103f;
    background-image: url("/client/assets/images/bg/profile_bg_portrait.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (orientation: landscape) {
    #profile-delete-root {
        background-image: url("/client/assets/images/bg/profile_bg_landscape.jpg");
    }
}
/* TOPBAR */

.profile-delete-topbar {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 18px 16px;

    backdrop-filter: blur(14px);

    background: rgba(255,255,255,0.04);

    border-bottom:
        1px solid rgba(255,255,255,0.08);
}

.profile-delete-back-btn {
    border: none;

    background: rgba(255,255,255,0.08);

    color: white;

    border-radius: 12px;

    padding: 10px 14px;

    font-size: 15px;

    cursor: pointer;

    transition: 0.2s ease;
}

.profile-delete-back-btn:hover {
    transform: translateY(-1px);

    background: rgba(255,255,255,0.14);
}

.profile-delete-title {
    font-size: 20px;
    font-weight: 700;
}

/* CONTENT */

.profile-delete-content {
    padding: 20px;

    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* WARNING CARD */

.profile-delete-warning-card {
    background:
        linear-gradient(
            135deg,
            rgba(255, 59, 48, 0.18),
            rgba(255, 69, 58, 0.08)
        );

    border:
        1px solid rgba(255,255,255,0.08);

    border-radius: 24px;

    padding: 22px;

    text-align: center;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.35);
}

.profile-delete-warning-icon {
    font-size: 42px;
    margin-bottom: 10px;
}

.profile-delete-warning-title {
    font-size: 20px;
    font-weight: 700;

    margin-bottom: 8px;
}

.profile-delete-warning-text {
    color: rgba(255,255,255,0.8);

    line-height: 1.5;
}

/* SECTION */

.profile-delete-section {
    background: rgba(255,255,255,0.05);

    border:
        1px solid rgba(255,255,255,0.06);

    border-radius: 22px;

    padding: 18px;

    backdrop-filter: blur(12px);
}

.profile-delete-section-title {
    font-size: 17px;
    font-weight: 700;

    margin-bottom: 16px;
}

/* OPTIONS */

.profile-delete-option {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px 0;

    cursor: pointer;

    color: rgba(255,255,255,0.9);

    border-bottom:
        1px solid rgba(255,255,255,0.05);
}

.profile-delete-option:last-child {
    border-bottom: none;
}

.profile-delete-option input {
    width: 18px;
    height: 18px;
}

/* TEXTAREA */

.profile-delete-textarea {
    width: 100%;

    margin-top: 16px;

    min-height: 110px;

    resize: none;

    border: none;
    outline: none;

    border-radius: 16px;

    padding: 14px;

    font-size: 15px;

    background: rgba(0,0,0,0.25);

    color: white;

    transition: 0.25s ease;
}

.profile-delete-textarea::placeholder {
    color: rgba(255,255,255,0.45);
}

.profile-delete-textarea:focus {
    background: rgba(0,0,0,0.35);
}

/* HIDDEN */

.hidden {
    display: none;
}

/* DELETE BUTTON */

.profile-delete-btn {
    border: none;

    border-radius: 18px;

    padding: 16px;

    font-size: 17px;
    font-weight: 700;

    color: white;

    cursor: pointer;

    background:
        linear-gradient(
            135deg,
            #ff3b30,
            #c1121f
        );

    box-shadow:
        0 12px 24px rgba(255, 59, 48, 0.35);

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.profile-delete-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

/* FOOTNOTE */

.profile-delete-footnote {
    background: rgba(255,255,255,0.04);

    border-radius: 18px;

    padding: 18px;

    font-size: 14px;

    line-height: 1.8;

    color: rgba(255,255,255,0.72);

    border:
        1px solid rgba(255,255,255,0.05);
}