/* Account Deletion — dark theme */
body {
    background-color: #0d0d0d;
    color: #d4d4d4;
    line-height: 1.7;
}

.deletion-container {
    width: 90%;
    max-width: 860px;
    margin: 0 auto;
    padding: 3rem 0 4rem;
}

.deletion-header {
    margin-bottom: 2.5rem;
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.deletion-header h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    margin: 0;
    color: #ffffff;
    letter-spacing: -0.03em;
}

.deletion-content {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.intro-text {
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #bbbbbb;
    line-height: 1.7;
}

.intro-text a {
    color: #00ff88;
    text-decoration: none;
}

.intro-text a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.steps-header {
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.steps {
    list-style-type: decimal;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    color: #bbbbbb;
}

.steps li {
    margin-bottom: 0.75rem;
    font-size: 0.97rem;
    line-height: 1.65;
}

.steps a {
    color: #00ff88;
    text-decoration: none;
}

.steps a:hover {
    text-decoration: underline;
}

b {
    font-weight: 600;
    color: #e0e0e0;
}

.footer-notes {
    text-align: center;
    padding: 1rem 0;
    font-size: 0.95rem;
    color: #666;
}

.footer-notes p {
    margin: 0.5rem 0;
}

/* Responsive */
@media (max-width: 680px) {
    .deletion-container {
        padding: 2rem 0 3rem;
    }

    .deletion-content {
        padding: 1.5rem;
    }

    .deletion-header h1 {
        font-size: 1.5rem;
    }

    .steps {
        padding-left: 1.3rem;
    }
}
