/* cookies.css - Упрощенная версия */
/* Стили для Cookie-уведомления и страницы политики */

/* Cookie Banner (Уведомление внизу экрана) */
.cookie-banner {
    position: fixed;
    bottom: -20px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    color: var(--text-color);
    padding: 20px;
    z-index: 9999;
    border-top: 3px solid var(--secondary-color);
    box-shadow: 0 -5px 20px rgba(192, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(-100px)!important;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    color: var(--secondary-color);
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(192, 0, 0, 0.5);
}

.cookie-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--light-color);
    margin-bottom: 0;
}

.cookie-text a {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cookie-text a:hover {
    color: #ff3333;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.5);
}

.cookie-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 15px 40px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 600;
}

.cookie-btn.accept {
    background: linear-gradient(45deg, var(--secondary-color), #ff3333);
    color: var(--light-color);
    min-width: 180px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(192, 0, 0, 0.4);
}

.cookie-btn.accept:hover {
    background: linear-gradient(45deg, #ff3333, var(--secondary-color));
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(192, 0, 0, 0.6);
}

.cookie-btn.reject {
    background: rgba(40, 40, 40, 0.8);
    color: var(--light-color);
    border: 2px solid #555;
    min-width: 180px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.cookie-btn.reject:hover {
    background: rgba(60, 60, 60, 0.9);
    border-color: #777;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Страница политики куки (упрощенная) */
.cookie-policy-page {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.9));
    min-height: 100vh;
}

.cookie-policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.8);
    padding: 50px;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 10px 40px rgba(192, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.cookie-policy-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--secondary-color);
}

.cookie-policy-header h1 {
    color: var(--light-color);
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.cookie-policy-header .last-updated {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.cookie-policy-content {
    color: var(--text-color);
    line-height: 1.8;
}

.cookie-policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-policy-section h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-left: 4px solid var(--secondary-color);
    padding-left: 15px;
}

.cookie-policy-section h3 {
    color: var(--light-color);
    font-size: 1.4rem;
    margin: 30px 0 20px;
}

.cookie-policy-section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.cookie-policy-section ul {
    padding-left: 25px;
    margin-bottom: 25px;
}

.cookie-policy-section li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 10px;
    font-size: 1.05rem;
}

.cookie-policy-section li:before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: -15px;
    font-size: 1.5rem;
}

.important-notice {
    background: rgba(192, 0, 0, 0.1);
    border: 2px solid var(--secondary-color);
    padding: 25px;
    margin: 30px 0;
    border-radius: 5px;
}

.important-notice h4 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.important-notice h4 i {
    font-size: 1.5rem;
}

.cookie-policy-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--secondary-color);
    text-align: center;
}

.cookie-policy-footer p {
    color: #b0b0b0;
    font-size: 1rem;
    margin-bottom: 20px;
}

.back-to-home {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--light-color);
    padding: 15px 40px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(192, 0, 0, 0.4);
}

.back-to-home:hover {
    background: #ff3333;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(192, 0, 0, 0.6);
}

/* Анимации */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(50px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-btn {
        width: 100%;
        min-width: auto;
    }
    
    .cookie-policy-container {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .cookie-policy-header h1 {
        font-size: 2.2rem;
    }
    
    .cookie-policy-section h2 {
        font-size: 1.6rem;
    }
    
    .cookie-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-text h3 {
        font-size: 1.3rem;
    }
    
    .cookie-text p {
        font-size: 0.95rem;
    }
    
    .cookie-policy-header h1 {
        font-size: 1.8rem;
    }
    
    .cookie-policy-section h2 {
        font-size: 1.4rem;
    }
    
    .cookie-policy-section p,
    .cookie-policy-section li {
        font-size: 1rem;
    }
    
    .back-to-home {
        padding: 12px 30px;
        font-size: 1rem;
    }
}