/* DMCA Form — Matches your corporate theme perfectly */
.dmca-deter-container {
    max-width: var(--max-width);
    margin: 40px auto;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 82, 204, 0.08);
    overflow: hidden;
}

.deter-header {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 40px 24px;
    text-align: center;
}

.hidden {
    display: none !important;
}

.deter-header h1 {
    font-size: 2.4rem;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.intro-text {
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto;
    opacity: 0.95;
}

.legal-sections {
    padding: 40px 24px;
}

.legal-block {
    margin-bottom: 48px;
}

.legal-block h2 {
    font-size: 1.35rem;
    margin-bottom: 16px;
    color: var(--text-main);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 8px;
}

.quote-box {
    background: #fff;
    border-left: 5px solid var(--primary);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.quote-box blockquote {
    font-style: italic;
    margin: 0 0 12px 0;
    color: #1d1d1f;
    font-size: 1.05rem;
    line-height: 1.5;
}

.quote-box cite {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.consequence-list {
    background: var(--bg-alt);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.consequence-list li {
    margin-bottom: 12px;
    padding-left: 6px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.5;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.checkbox-label:hover {
    background: var(--bg-alt);
}

.checkbox-label input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-top: 3px;
    accent-color: var(--primary);
}

.proceed-section {
    padding: 32px 24px;
    background: var(--bg-alt);
    text-align: center;
    border-top: 1px solid var(--border);
}

#proceed-btn {
    font-size: 1.1rem;
    padding: 16px 40px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#proceed-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.proceed-warning {
    margin-top: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.final-contact {
    margin-top: 20px;
    animation: fadeIn 0.6s ease forwards;
}

.success-box {
    text-align: center;
}

.email-reveal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 1.5rem;
    background: white;
    padding: 20px;
    border-radius: var(--radius);
    margin: 24px 0;
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.1);
}

.copy-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
}

.copy-btn:hover {
    background: var(--primary-dark);
}

.pathos-note {
    font-style: italic;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .dmca-deter-container { margin: 20px 12px; }
    .deter-header h1 { font-size: 2rem; }
}