/* === COOKIE CONSENT === */
#cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(26, 28, 34, 0.98), rgba(15, 17, 21, 0.98));
    color: white;
    padding: 1.5rem 2rem;
    z-index: 9998;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.5s ease;
    backdrop-filter: blur(15px);
}

/* Тонкая градиентная полоска сверху */
#cookie-consent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        to right,
        #d6940d,
        #faa608
    );
}

#cookie-consent.show {
    transform: translateY(0);
}

.cookie-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #c1c9d2;
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.cookie-btn-reject {
    background: transparent;
    border: 2px solid rgba(214, 148, 13, 0.3);
    color: #c1c9d2;
}

.cookie-btn-reject:hover {
    border-color: #d6940d;
    color: #d6940d;
    transform: translateY(-2px);
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #d6940d, #faa608);
    color: #fff;
    box-shadow: 0 4px 15px rgba(214, 148, 13, 0.4);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #faa608, #d6940d);
    box-shadow: 0 6px 20px rgba(214, 148, 13, 0.6);
}

/* === Адаптивность === */
@media (max-width: 768px) {
    #cookie-consent {
        padding: 1rem 1.5rem;
    }
    
    .cookie-container {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .cookie-text {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    #cookie-consent {
        padding: 1rem;
    }
    
    .cookie-text {
        font-size: 0.8rem;
    }
    
    .cookie-btn {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
    }
}

