/* =========================
   COOKIE CONSENT BANNER
   ========================= */

#cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.98), rgba(5, 5, 10, 0.98));
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 46, 99, 0.3);
    padding: 25px 5%;
    z-index: 9999;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.8);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cookie-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: 280px;
}

.cookie-text h3 {
    color: #ff2e63;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.cookie-text p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: #ff2e63;
    text-decoration: underline;
    transition: color 0.3s;
}

.cookie-text a:hover {
    color: #ff477e;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #ff2e63, #d91d52);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 46, 99, 0.4);
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #ff477e, #ff2e63);
    box-shadow: 0 6px 20px rgba(255, 46, 99, 0.6);
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background: rgba(255, 255, 255, 0.05);
    color: #999;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.cookie-btn-settings {
    background: transparent;
    color: #999;
    border: 1px solid rgba(255, 46, 99, 0.3);
}

.cookie-btn-settings:hover {
    background: rgba(255, 46, 99, 0.1);
    color: #ff2e63;
    border-color: #ff2e63;
}

/* Mobile responsive */
@media (max-width: 768px) {
    #cookie-consent {
        padding: 20px 5%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}