/* Legal Disclaimers - Ghostwriting Service Notice */

/* Landing Page Disclaimer */
.legal-disclaimer {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.legal-disclaimer h4 {
    color: #92400e;
    font-size: 1.25rem;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-disclaimer p {
    color: #78350f;
    margin: 0.75rem 0;
    line-height: 1.6;
}

.legal-disclaimer p strong {
    color: #92400e;
    font-weight: 700;
}

/* Before Generation Reminder */
.disclaimer-reminder {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-left: 4px solid #3b82f6;
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
}

.disclaimer-reminder p {
    color: #1e40af;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.disclaimer-reminder strong {
    font-weight: 700;
}

/* After Generation Disclaimer */
.appeal-disclaimer {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 2px solid #ef4444;
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.appeal-disclaimer h4 {
    color: #991b1b;
    font-size: 1.25rem;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.appeal-disclaimer p {
    color: #7f1d1d;
    margin: 0.75rem 0;
    line-height: 1.6;
}

.appeal-disclaimer strong {
    color: #991b1b;
    font-weight: 700;
}

.appeal-disclaimer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.appeal-disclaimer li {
    color: #7f1d1d;
    margin: 0.5rem 0;
    line-height: 1.5;
}

/* Footer Disclaimer */
.legal-footer {
    background: #1f2937;
    color: #9ca3af;
    padding: 1.5rem 0;
    text-align: center;
    margin-top: 4rem;
}

.legal-footer p {
    margin: 0;
    font-size: 0.875rem;
}

.legal-footer a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-footer a:hover {
    color: #93c5fd;
    text-decoration: underline;
}

/* Terms of Service Page Styles */
.terms-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.terms-header {
    color: #1f2937;
    border-bottom: 3px solid #10b981;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.terms-section {
    margin: 2rem 0;
}

.terms-section h2 {
    color: #374151;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem 0;
}

.terms-section h3 {
    color: #4b5563;
    font-size: 1.25rem;
    margin: 1rem 0 0.5rem 0;
}

.terms-section p {
    color: #6b7280;
    line-height: 1.8;
    margin: 0.75rem 0;
}

.terms-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.terms-section li {
    color: #6b7280;
    margin: 0.5rem 0;
    line-height: 1.6;
}

.terms-highlight {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0.5rem;
}

.terms-highlight p {
    color: #92400e;
    margin: 0;
}

.terms-warning {
    background: #fee2e2;
    border-left: 4px solid #ef4444;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0.5rem;
}

.terms-warning p {
    color: #991b1b;
    margin: 0;
}

.emoji-list {
    list-style: none;
    padding-left: 0;
}

.emoji-list li::before {
    content: attr(data-emoji);
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-disclaimer,
    .appeal-disclaimer {
        padding: 1rem;
        margin: 1rem 0;
    }

    .legal-disclaimer h4,
    .appeal-disclaimer h4 {
        font-size: 1.1rem;
    }

    .terms-container {
        margin: 1rem;
        padding: 1rem;
    }

    .terms-section h2 {
        font-size: 1.25rem;
    }

    .terms-section h3 {
        font-size: 1.1rem;
    }
}

/* Accessibility */
.legal-disclaimer:focus-within,
.appeal-disclaimer:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .legal-disclaimer,
    .appeal-disclaimer,
    .legal-footer {
        border: 1px solid #000;
        background: white !important;
        color: black !important;
    }
}
