/* Legal Pages (Cookies, Privacy, Impressum) Styles */

/* Hero Section */
.cookies-hero,
.legal-hero {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cookies-hero .hero-overlay,
.legal-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 85, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(138, 43, 226, 0.15) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

.cookies-hero h1,
.legal-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 0, 85, 0.6);
    position: relative;
}

.cookies-hero h1 i,
.legal-hero h1 i {
    color: var(--accent-color);
    margin-right: 15px;
    animation: tvGlow 2s ease-in-out infinite;
}

@keyframes tvGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 0, 85, 0.8); }
    50% { text-shadow: 0 0 40px rgba(255, 0, 85, 1), 0 0 60px rgba(255, 0, 85, 0.6); }
}

.cookies-hero p,
.legal-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

/* Legal Content Section */
.legal-page {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: white;
    font-weight: 900;
}

.legal-content h1 i {
    color: var(--accent-color);
    margin-right: 15px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 50px 0 25px;
    color: var(--accent-color);
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 0, 85, 0.3);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 35px 0 20px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.legal-content p {
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
}

.legal-content strong {
    color: white;
    font-weight: 700;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 30px;
    color: rgba(255, 255, 255, 0.85);
}

.legal-content li {
    margin: 12px 0;
    line-height: 1.7;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.legal-content a:hover {
    text-decoration: underline;
    color: #ff3377;
}

/* Highlight Box */
.highlight-box {
    background: rgba(255, 0, 85, 0.1);
    border-left: 4px solid var(--accent-color);
    border-radius: 10px;
    padding: 25px 30px;
    margin: 30px 0;
    -webkit-backdrop-filter: blur;`n    backdrop-filter: blur(10px);
}

.highlight-box p {
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.9);
}

.highlight-box strong {
    color: var(--accent-color);
}

.highlight-box i {
    color: var(--accent-color);
    margin-right: 10px;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    text-align: left;
}

.cookie-table th {
    background: linear-gradient(135deg, var(--accent-color), #cc0044);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.cookie-table tr {
    transition: all 0.3s ease;
}

.cookie-table tbody tr:hover {
    background: rgba(255, 0, 85, 0.1);
}

.cookie-table td {
    color: rgba(255, 255, 255, 0.85);
}

/* Button Styles */
.btn-reset {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--accent-color), #cc0044);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 30px 0;
}

.btn-reset:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.4);
}

.btn-reset i {
    margin-right: 10px;
}

/* HR Separator */
.legal-content hr {
    margin: 50px 0;
    border: none;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

/* Footer Note */
.footer-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
}

.footer-note small {
    display: block;
    margin: 5px 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-hero h1 {
        font-size: 2.2rem;
    }
    
    .legal-hero p {
        font-size: 1rem;
    }
    
    .legal-page {
        padding: 60px 0;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
        margin: 40px 0 20px;
    }
    
    .legal-content h3 {
        font-size: 1.2rem;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 10px;
    }
    
    .highlight-box {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .legal-hero {
        padding: 60px 0 50px;
    }
    
    .legal-hero h1 {
        font-size: 1.8rem;
    }
    
    .legal-content {
        font-size: 0.95rem;
    }
    
    .cookie-table {
        font-size: 0.85rem;
    }
    
    .btn-reset {
        width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.legal-content hr {
    margin: 40px 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-content .text-center {
    color: rgba(255, 255, 255, 0.6);
}
