#cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #2d2d44 0%, #1a1a2e 100%);
    color: #fff;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    z-index: 9999;
    box-shadow: 0 -4px 24px rgba(0,0,0,.5);
    border-top: 3px solid #fba70b;
    font-family: 'Poppins', sans-serif;
    animation: cookie-slide-up .4s ease-out;
}

@keyframes cookie-slide-up {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

#cookie-consent .cookie-consent-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

#cookie-consent .cookie-icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}

#cookie-consent p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}

#cookie-consent a {
    color: #fba70b;
    text-decoration: underline;
    text-underline-offset: 2px;
}

#cookie-consent a:hover {
    color: #f1556a;
}

#cookie-consent button {
    background: #fba70b;
    color: #1a1a2e;
    border: none;
    padding: 12px 28px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    border-radius: 25px;
    flex-shrink: 0;
    transition: background .2s;
}

#cookie-consent button:hover {
    background: #f1556a;
    color: #fff;
}

#cookie-consent .cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

#cookie-consent button.cookie-consent-decline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.5);
}

#cookie-consent button.cookie-consent-decline:hover {
    background: rgba(255,255,255,.1);
    border-color: #fff;
    color: #fff;
}

@media (max-width: 768px) {
    #cookie-consent {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        gap: 14px;
    }

    #cookie-consent .cookie-consent-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    #cookie-consent .cookie-icon {
        font-size: 24px;
    }

    #cookie-consent p {
        font-size: 14px;
    }

    #cookie-consent .cookie-consent-buttons {
        flex-direction: row;
        justify-content: stretch;
        flex-wrap: wrap;
    }

    #cookie-consent .cookie-consent-buttons button {
        flex: 1;
        min-width: 120px;
        padding: 10px 16px;
        font-size: 14px;
    }

    #cookie-consent-btn {
        order: 2;
    }

    #cookie-decline-btn {
        order: 1;
    }
}
