/* Premium Cookie Banner Styles - Dark Theme */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(150%);

    background: #1a1a2e;
    border-top: 1px solid rgba(255,255,255,0.1);

    padding: 16px 24px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;

    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 9999;

    transition: transform 0.4s ease-out;
}

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

.cookie-banner.hide {
    transform: translateY(150%);
    opacity: 0;
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.5;
    max-width: 700px;
}

.cookie-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.cookie-text {
    color: #e0e0e0;
}

.cookie-content a {
    color: #64b5f6;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-content a:hover {
    color: #90caf9;
}

/* Buttons - Dark Theme */
.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookie-reject {
    background: #2d2d44;
    border: 1px solid rgba(255,255,255,0.2);
    color: #e0e0e0;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-reject:hover {
    background: #3d3d5c;
    border-color: rgba(255,255,255,0.3);
}

.btn-cookie-accept {
    background: #1976d2;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept:hover {
    background: #1565c0;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        padding: 14px 16px;
    }

    .cookie-content {
        margin-bottom: 12px;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 380px) {
    .cookie-content {
        font-size: 13px;
    }

    .cookie-buttons {
        gap: 10px;
    }

    .btn-cookie-reject,
    .btn-cookie-accept {
        padding: 8px 16px;
        font-size: 13px;
    }
}