/* Cookie Consent Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: -100%;
    /* Hidden by default */
    left: 0;
    width: 100%;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 242, 255, 0.2);
    padding: 20px;
    z-index: 10000;
    transition: bottom 0.5s ease;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

#cookie-consent-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 800px;
    display: flex;
    align-items: center;
    gap: 30px;
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-icon {
    font-size: 2rem;
    color: var(--primary, #00f2ff);
    flex-shrink: 0;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--primary, #00f2ff);
    color: #000;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
}

.cookie-btn.accept:hover {
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
}

.cookie-btn.decline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #aaa;
}

.cookie-btn.decline:hover {
    border-color: #ff4d4d;
    color: #ff4d4d;
}

/* Floating Icon */
#cookie-floating-icon {
    position: fixed;
    bottom: 20px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(10, 10, 20, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 242, 255, 0.3);
    color: var(--primary, #00f2ff);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: scale(0.5);
    pointer-events: none;
}

#cookie-floating-icon.show {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

#cookie-floating-icon:hover {
    background: var(--primary, #00f2ff);
    color: #000;
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-icon {
        display: none;
    }

    #cookie-floating-icon {
        width: 40px;
        height: 40px;
        bottom: 20px;
        left: 20px;
        font-size: 1.2rem;
    }
}