/* DMCA Policy Page Styles - Professional Legal Design */

/* Color Variables */
:root {
    --primary-legal: #1a365d;
    --secondary-legal: #2d3748;
    --accent-gold: #d4af37;
    --accent-silver: #c0c0c0;
    --dark-bg: #0a0e14;
    --document-bg: #f8f9fa;
    --text-dark: #2d3748;
    --text-light: #e2e8f0;
    --border-legal: #4a5568;
    --highlight-blue: #3182ce;
    --highlight-red: #c53030;
    --highlight-green: #38a169;
}

.dmca-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* Header Styles */
.dmca-header {
    background: linear-gradient(135deg, var(--primary-legal) 0%, #1e3a8a 100%);
    padding: 40px 20px;
    position: relative;
    border-bottom: 5px solid var(--accent-gold);
}

.header-seal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: center;
}

.seal-icon {
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid var(--accent-gold);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.seal-icon i {
    font-size: 3.5rem;
    color: var(--accent-gold);
}

.seal-text h1 {
    font-family: 'Merriweather', serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.seal-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin: 10px 0 0;
    font-style: italic;
    letter-spacing: 1px;
}

.header-buttons {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
}

.print-button, .back-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.print-button:hover, .back-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Document Meta */
.document-meta {
    background: rgba(26, 54, 93, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.meta-item i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

/* Introduction */
.dmca-intro {
    padding: 40px;
    background: var(--secondary-legal);
}

.opening-statement {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: justify;
    color: var(--text-light);
    border-left: 4px solid var(--accent-gold);
    padding-left: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* Section Styles */
.dmca-section {
    background: rgba(45, 55, 72, 0.7);
    margin: 40px;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.dmca-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--accent-gold);
}

.section-icon {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-icon i {
    font-size: 1.8rem;
    color: var(--accent-gold);
}

.section-header h2 {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    color: white;
    margin: 0;
}

.section-content {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Process Flow */
.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.flow-step {
    background: rgba(49, 130, 206, 0.1);
    border: 1px solid var(--highlight-blue);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    min-width: 180px;
    flex: 1;
    transition: transform 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(49, 130, 206, 0.2);
}

.step-number {
    background: var(--highlight-blue);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.flow-step h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.flow-step p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.flow-arrow {
    color: var(--accent-gold);
    font-size: 1.5rem;
}

/* Requirements List */
.requirements-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.requirement-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.requirement-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--accent-gold);
}

.req-icon {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.req-icon i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.req-content h3 {
    color: white;
    margin: 0 0 10px;
    font-size: 1.1rem;
}

.req-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Timeline */
.timeline {
    position: relative;
    margin: 40px 0;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--accent-gold), var(--accent-silver));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -13px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--accent-gold);
    border-radius: 50%;
    border: 3px solid var(--dark-bg);
}

.timeline-date {
    background: var(--highlight-blue);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: bold;
}

.timeline-content h3 {
    color: white;
    margin: 0 0 10px;
}

.timeline-content p {
    color: var(--text-light);
    margin: 0;
}

/* Education Points */
.education-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.point-card {
    background: rgba(56, 161, 105, 0.1);
    border: 1px solid var(--highlight-green);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(56, 161, 105, 0.2);
}

.point-card i {
    font-size: 2.5rem;
    color: var(--highlight-green);
    margin-bottom: 15px;
}

.point-card h3 {
    color: white;
    margin-bottom: 10px;
}

.point-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Warning Box */
.warning-box {
    background: rgba(197, 48, 48, 0.1);
    border: 2px solid var(--highlight-red);
    border-radius: 10px;
    padding: 25px;
    margin-top: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.warning-icon {
    background: var(--highlight-red);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.warning-content h3 {
    color: white;
    margin: 0 0 15px;
}

.warning-content ul {
    color: var(--text-light);
    padding-left: 20px;
    margin: 0;
}

.warning-content li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Creator Support */
.creator-support {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.creator-text {
    flex: 2;
}

.support-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.method {
    background: rgba(49, 130, 206, 0.1);
    border: 1px solid var(--highlight-blue);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.method:hover {
    background: rgba(49, 130, 206, 0.2);
    transform: translateX(5px);
}

.method i {
    color: var(--highlight-blue);
}

.method span {
    color: var(--text-light);
}

.creator-image {
    flex: 1;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--accent-gold);
    border-radius: 10px;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.creator-image i {
    font-size: 5rem;
    color: var(--accent-gold);
}

/* Platform Features */
.platform-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--accent-gold);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.feature i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.feature h3 {
    color: white;
    margin-bottom: 10px;
}

.feature p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Vision Card */
.mission-vision {
    background: linear-gradient(135deg, var(--primary-legal), #2d3748);
    border: none;
}

.vision-card {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.vision-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.vision-card h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 20px;
}

.vision-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Info */
.contact-info {
    background: rgba(26, 54, 93, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 30px;
    margin-top: 30px;
}

.contact-info h3 {
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.contact-details p {
    color: var(--text-light);
    margin: 5px 0;
}

/* Footer */
.dmca-footer {
    background: var(--primary-legal);
    padding: 30px 20px;
    border-top: 3px solid var(--accent-gold);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.legal-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.legal-notice i {
    color: var(--accent-gold);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

/* Responsive Design */
@media (max-width: 992px) {
    .process-flow {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }
    
    .creator-support {
        flex-direction: column;
    }
    
    .creator-image {
        width: 150px;
        height: 150px;
    }
    
    .creator-image i {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .dmca-header {
        padding: 20px;
    }
    
    .header-seal {
        flex-direction: column;
        gap: 20px;
    }
    
    .seal-text h1 {
        font-size: 2rem;
    }
    
    .header-buttons {
        position: relative;
        top: 0;
        right: 0;
        justify-content: center;
        margin-top: 20px;
    }
    
    .dmca-section {
        margin: 20px;
        padding: 25px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .document-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .seal-icon {
        width: 80px;
        height: 80px;
    }
    
    .seal-icon i {
        font-size: 2rem;
    }
    
    .seal-text h1 {
        font-size: 1.5rem;
    }
    
    .opening-statement {
        font-size: 1rem;
        padding-left: 15px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .requirements-list {
        grid-template-columns: 1fr;
    }
    
    .education-points, .platform-features {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .dmca-container {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .dmca-header {
        background: white !important;
        color: black !important;
        border-bottom: 3px solid black !important;
    }
    
    .seal-icon {
        border-color: black !important;
        box-shadow: none !important;
    }
    
    .seal-icon i, .seal-text h1 {
        color: black !important;
    }
    
    .header-buttons, .print-button, .back-button {
        display: none !important;
    }
    
    .dmca-section {
        background: white !important;
        color: black !important;
        border: 1px solid #ddd !important;
        page-break-inside: avoid;
    }
    
    .section-header h2, .section-content, .req-content h3, .req-content p {
        color: black !important;
    }
    
    a {
        color: black !important;
        text-decoration: none !important;
    }
}