.dmca-page-bg {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #000;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

.dmca-page-bg::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at bottom left, #222d5a 0%, #000000 60%);
}

/* HERO */
.dmca-hero {
    text-align: center;
    padding: 5rem 2rem 3rem;
}

.page-tag {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.dmca-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(to bottom, #fff, #666);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.dmca-hero p {
    color: #888;
    max-width: 560px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
}

/* CONTENT */
.dmca-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 2rem 2rem 6rem;
}

/* CONTACT CARD */
.contact-card {
    background: rgba(137, 168, 245, 0.08);
    border: 1px solid rgba(137, 168, 245, 0.2);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-card .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-card p {
    color: #aac0f8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-card a {
    color: #89a8f5;
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* SECTIONS */
.dmca-section {
    margin-bottom: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.dmca-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.section-num {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #555;
    text-transform: uppercase;
    min-width: 28px;
}

.dmca-section h2 {
    font-size: 1.15rem;
    font-weight: 700;
    background: linear-gradient(to right, #89a8f5, #e67d7d);
    -webkit-background-clip: text;
    color: transparent;
}

.dmca-section p {
    color: #bdbdbd;
    font-size: 0.97rem;
    line-height: 1.75;
}

.dmca-section p+p {
    margin-top: 0.9rem;
}

/* REQUIREMENTS LIST */
.req-list {
    list-style: none;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.req-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #bdbdbd;
    font-size: 0.97rem;
    line-height: 1.6;
}

.req-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(to right, #89a8f5, #e67d7d);
    margin-top: 0.55rem;
    flex-shrink: 0;
}

/* EMAIL HIGHLIGHT */
.email-highlight {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    background: rgba(137, 168, 245, 0.1);
    border: 1px solid rgba(137, 168, 245, 0.2);
    color: #89a8f5;
    font-size: 0.95rem;
    text-decoration: none;
}

.email-highlight:hover {
    background: rgba(137, 168, 245, 0.15);
}

body {
    overflow: auto !important;
}

@media (max-width: 768px) {
    .dmca-hero h1 {
        font-size: 2.5rem;
    }

    .dmca-section {
        padding: 1.5rem;
    }
}