/* Cookie Notice Banner */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 25, 0.98);
    backdrop-filter: blur(20px);
    border-top: 2px solid rgba(0, 255, 136, 0.3);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    padding: 25px 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

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

.cookie-notice-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-notice-text {
    flex: 1;
    color: #e0e0e0;
}

.cookie-notice-text h3 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    color: #00ff88;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-notice-text p {
    margin: 0;
    line-height: 1.6;
    color: #b0b0b0;
}

.cookie-notice-text a {
    color: #00d4ff;
    text-decoration: underline;
}

.cookie-notice-text a:hover {
    color: #00ff88;
}

.cookie-notice-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept {
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    color: #000;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.4);
}

.cookie-essential {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.5);
}

.cookie-essential:hover {
    background: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

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

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #bbb;
    transform: translateY(-2px);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-notice {
        padding: 20px 15px;
    }

    .cookie-notice-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-notice-text h3 {
        font-size: 1.1rem;
    }

    .cookie-notice-text p {
        font-size: 0.9rem;
    }

    .cookie-notice-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .cookie-btn {
        width: 100%;
        padding: 14px;
    }
}

/* Animation */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}





