/* Если высота шапки 80px */
.legal-page,
.page-header,
.legal-content,
main .container {
    padding-top: 80px;
}

/* Article and News Page Styles */
.news-article {
    padding: 120px 0 60px;
    min-height: 100vh;
}

.article-header {
    margin-bottom: 40px;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    color: #ffffff;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #ffb700;
}

.breadcrumb span {
    margin: 0 8px;
}

.article-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #ececec;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-content {
    margin-bottom: 60px;
}

.article-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
}

.article-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1f2937;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 16px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.article-text .lead {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1f2937;
    border-left: 4px solid #8c27b8;
    padding-left: 20px;
}

.article-text p {
    margin-bottom: 20px;
}

.article-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #8c27b8;
}

.article-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.article-text li {
    margin-bottom: 10px;
}

.article-text blockquote {
    background: rgba(140, 39, 184, 0.1);
    border-left: 4px solid #8c27b8;
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
    font-style: italic;
    font-size: 1.1rem;
    color: #374151;
}

.article-text cite {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: #d76cff;
    font-style: normal;
}

.article-tags {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tag {
    display: inline-block;
    background: rgba(197, 50, 255, 0.2);
    color: #d76cff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin: 0 8px 8px 0;
}

.article-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.social-share h3,
.related-articles h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.share-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #059669, #10b981, #34d399);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    margin-right: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.share-btn:hover {
    background:linear-gradient(135deg, #047857, #065f46);
    transform: translateY(-2px);
}

.related-articles a {
    display: block;
    color: #E5E7EB;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.2s;
}

.related-articles a:hover {
    color: rgb(251, 191, 36);
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 60px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #8c27b8, #c532ff, #d76cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #D1D5DB;
}

.contact-section {
    padding: 0 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s ease;
    color: #1f2937;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card h2 {
    color: #8c27b8;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.platform-links,
.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.platform-link,
.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(140, 39, 184, 0.08);
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.2s;
    border: 1px solid rgba(140, 39, 184, 0.2);
}

.platform-link:hover,
.social-link:hover {
    background: rgba(140, 39, 184, 0.15);
    transform: translateX(5px);
    border-color: rgba(140, 39, 184, 0.4);
}

.platform-icon,
.social-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(140, 39, 184, 0.15);
    border-radius: 10px;
    color: #8c27b8;
}

.platform-info h3,
.social-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1f2937;
}

.platform-info p,
.social-info p {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 4px;
}

.platform-desc {
    font-size: 0.8rem;
    color: #6B7280;
}

.business-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(168, 85, 247, 0.2);
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 0.9rem;
    color: #E5E7EB;
    margin-bottom: 4px;
}

.contact-desc {
    font-size: 0.8rem;
    color: #9CA3AF;
}

.schedule-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.schedule-item h3 {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.schedule-item p {
    margin-bottom: 5px;
    color: #E5E7EB;
}

.schedule-note {
    padding: 15px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 8px;
    border-left: 4px solid #fbbf24;
}

.schedule-note p {
    margin: 0;
    font-size: 0.9rem;
    color: #D1D5DB;
}

.contact-faq {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 40px;
    color: #1f2937;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-faq h2 {
    color: #8c27b8;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.contact-faq .faq-item {
    background: rgba(140, 39, 184, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(140, 39, 184, 0.1);
}

.contact-faq .faq-item h3 {
    color: #8c27b8;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-faq .faq-item p {
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-footer {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-faq {
        padding: 30px 20px;
    }
}


/* Legal Pages Styles */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(168, 85, 247, 0.3);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #dde0e1;
    margin-bottom: 10px;
    font-weight: 500;
}

.last-updated {
    font-size: 0.9rem;
    color: #e6bff4;
    font-style: italic;
}

.legal-content {
    line-height: 1.8;
    color: #ffffff;
}

.legal-content section {
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FBBF24;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(251, 191, 36, 0.3);
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #FBBF24;
    margin: 25px 0 15px 0;
}

.legal-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.legal-content ul, .legal-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 8px;
    color: #ffffff;
}

.legal-content strong {
    color: #FBBF24;
    font-weight: 600;
}

.legal-content a {
    color: #FBBF24 !important;  /* bright yellow, как заголовки секций */
    text-decoration: underline;
    font-weight: 600;
}


.contact-info {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.contact-info p {
    margin: 0;
    color: #ffffff;
}

.contact-info a {
    color: #FBBF24;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #FDE047;
}

/* Warning Section für Verantwortliches Spielen */
.warning-section {
    margin-bottom: 40px;
}

.warning-box {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2));
    border: 2px solid #EF4444;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    animation: pulse-warning 3s infinite;
}

@keyframes pulse-warning {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }
}

.warning-box h2 {
    color: #FCA5A5;
    font-size: 1.5rem;
    margin-bottom: 15px;
    border: none;
    padding: 0;
}

.warning-box p {
    color: #FECACA;
    font-weight: 500;
    margin-bottom: 10px;
}

.warning-box strong {
    color: #FFFFFF;
}

/* Self-help tools */
.self-help-tools {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.self-help-tools p strong {
    color: #22C55E;
}





.help-contacts {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.help-contacts p {
    color: #93C5FD;
    font-size: 1.1rem;
    margin: 0;
}

.self-test {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
}

.self-test ul {
    margin: 15px 0;
}

.self-test li {
    color: #C4B5FD;
    font-weight: 500;
}

.self-test strong {
    color: #FBBF24;
    display: block;
    margin-top: 15px;
    font-size: 1.1rem;
}

/* Cookie controls */
.cookie-controls {
    text-align: center;
    margin: 30px 0;
}

.cookie-button {
    background: linear-gradient(135deg, #8c27b8, #d76cff);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

@media (max-width: 768px) {
    .legal-page {
        padding: 20px 15px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-content h3 {
        font-size: 1.2rem;
    }

    .warning-box {
        padding: 20px;
    }

    .contact-info, .self-help-tools, .help-contacts, .self-test {
        padding: 15px;
    }
}

@media (prefers-color-scheme: dark) {
    .legal-content {
        color: #F3F4F6;
    }

    .legal-content li {
        color: #E5E7EB;
    }
}