/* ============================================
   COPYRIGHT PAGE — Стили страницы авторских прав
   ============================================ */

.copyright-page {
    padding-top: 120px;
    min-height: 100vh;
}

.copyright-hero {
    text-align: center;
    margin-bottom: 50px;
}

.copyright-hero h1 {
    font-family: 'Press Start 2P', cursive;
    font-size: 2rem;
    color: var(--cyan);
    text-shadow: 0 0 30px rgba(0, 255, 224, 0.5);
    margin-bottom: 15px;
}

.copyright-hero p {
    color: #b0c0d8;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.copyright-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* Карточки */
.copyright-card {
    background: rgba(20, 35, 70, 0.85);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 35px 40px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.copyright-card:hover {
    border-color: rgba(0, 255, 224, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 224, 0.05);
}

.copyright-card.danger {
    border-color: rgba(255, 75, 75, 0.3);
    background: rgba(255, 75, 75, 0.03);
}

.copyright-card.danger:hover {
    border-color: rgba(255, 75, 75, 0.5);
    box-shadow: 0 10px 30px rgba(255, 75, 75, 0.1);
}

.copyright-card.allowed {
    border-color: rgba(85, 255, 85, 0.3);
    background: rgba(85, 255, 85, 0.03);
}

.copyright-card.allowed:hover {
    border-color: rgba(85, 255, 85, 0.5);
    box-shadow: 0 10px 30px rgba(85, 255, 85, 0.1);
}

.copyright-card.law {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.03);
}

.copyright-card.warning {
    border-color: rgba(255, 165, 0, 0.3);
    background: rgba(255, 165, 0, 0.03);
}

.copyright-card.contact {
    border-color: rgba(88, 101, 242, 0.3);
    background: rgba(88, 101, 242, 0.03);
}

/* Иконка */
.copyright-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    text-align: center;
}

.copyright-card h2 {
    color: var(--cyan);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.copyright-card.danger h2 {
    color: #ff6b6b;
}

.copyright-card.allowed h2 {
    color: #55ff55;
}

.copyright-card.law h2 {
    color: var(--gold);
}

.copyright-card.warning h2 {
    color: #ffa500;
}

.copyright-card.contact h2 {
    color: #5865F2;
}

.copyright-card p {
    color: #c8d6e5;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.copyright-card strong {
    color: var(--cyan);
}

/* Бейдж создателей */
.creators-badge {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.creator-item {
    background: rgba(0, 255, 224, 0.05);
    border: 1px solid rgba(0, 255, 224, 0.2);
    border-radius: 15px;
    padding: 15px 25px;
    text-align: center;
    min-width: 180px;
}

.creator-role {
    display: block;
    color: #8899bb;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.creator-item strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.creator-item a {
    color: var(--cyan);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.creator-item a:hover {
    color: #fff;
}

/* Списки */
.copyright-list {
    list-style: none;
    padding: 0;
}

.copyright-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #c8d6e5;
    font-size: 0.95rem;
    line-height: 1.6;
}

.copyright-list li:last-child {
    border-bottom: none;
}

.list-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Законодательство */
.law-list {
    list-style: none;
    padding: 0;
}

.law-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #c8d6e5;
    font-size: 0.95rem;
    line-height: 1.6;
}

.law-list li:last-child {
    border-bottom: none;
}

.law-list strong {
    color: var(--gold);
}

/* Нумерованный список */
.measures-list {
    padding-left: 25px;
    color: #c8d6e5;
}

.measures-list li {
    padding: 8px 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Контакты */
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.contact-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 20px;
    color: #c8d6e5;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.contact-link-item:hover {
    background: rgba(88, 101, 242, 0.1);
    border-color: #5865F2;
    color: #fff;
    transform: translateX(5px);
}

.link-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-note {
    color: #667799;
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 15px;
}

/* Дата обновления */
.copyright-update {
    text-align: center;
    color: #667799;
    font-size: 0.85rem;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 30px;
}

.copyright-update p {
    margin-bottom: 5px;
}

.copyright-update strong {
    color: #8899bb;
}

/* Кнопка "На главную" */
.back-to-home {
    display: inline-block;
    margin: 20px auto 0;
    padding: 12px 30px;
    background: rgba(0, 255, 224, 0.08);
    border: 2px solid var(--cyan);
    border-radius: 15px;
    color: var(--cyan);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.back-to-home:hover {
    background: var(--cyan);
    color: #000;
    box-shadow: 0 0 30px rgba(0, 255, 224, 0.4);
    transform: scale(1.05);
}

/* Адаптив */
@media (max-width: 768px) {
    .copyright-hero h1 {
        font-size: 1.5rem;
    }
    .copyright-card {
        padding: 25px 20px;
    }
    .copyright-card h2 {
        font-size: 1.2rem;
    }
    .creators-badge {
        flex-direction: column;
        gap: 10px;
    }
    .creator-item {
        min-width: auto;
    }
}