.cookie-consent-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 400px;
    background: rgba(26, 27, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 99999;
    color: #fff;
    font-family: 'Fustat', sans-serif;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

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

.cookie-consent-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1FA12E; /* Brand Green */
}

.cookie-consent-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: #d1d1d1;
    margin-bottom: 20px;
}

.cookie-consent-text a {
    color: #1FA12E;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cookie-consent-text a:hover {
    color: #2ebc3e;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    flex: 1;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: all 0.2s ease;
}

.cookie-btn-accept {
    background: #1FA12E;
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #1a8726;
    transform: translateY(-1px);
}

.cookie-btn-reject {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 576px) {
    .cookie-consent-banner {
        bottom: 16px;
        left: 16px;
        right: 16px;
        max-width: none;
        padding: 20px;
    }
}
