.df-cookie-banner {
    position: fixed;
    right: 25px;
    bottom: 25px;
    max-width: 420px;
    background: #101722;
    color: #fff;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
    padding: 22px;
    z-index: 99999;
    display: none;
    animation: dfCookieFadeUp .4s ease;
}

.df-cookie-content {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.df-cookie-icon {
    font-size: 32px;
    line-height: 1;
}

.df-cookie-text h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.df-cookie-text p {
    margin: 0 0 10px;
    color: #cfd6e1;
    font-size: 14px;
    line-height: 1.6;
}

.df-cookie-text a {
    color: #2fb7ff;
    font-size: 14px;
    text-decoration: none;
}

.df-cookie-text a:hover {
    text-decoration: underline;
}

.df-cookie-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.df-cookie-btn {
    border: none;
    border-radius: 10px;
    padding: 11px 16px;
    cursor: pointer;
    font-weight: 700;
    transition: .25s;
}

.df-cookie-btn.accept {
    background: #2fb7ff;
    color: #06111d;
}

.df-cookie-btn.accept:hover {
    background: #62caff;
}

.df-cookie-btn.reject {
    background: rgba(255,255,255,.08);
    color: #fff;
}

.df-cookie-btn.reject:hover {
    background: rgba(255,255,255,.16);
}

@keyframes dfCookieFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .df-cookie-banner {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
        padding: 18px;
    }

    .df-cookie-content {
        display: block;
    }

    .df-cookie-icon {
        margin-bottom: 10px;
    }

    .df-cookie-actions {
        flex-direction: column;
    }

    .df-cookie-btn {
        width: 100%;
    }
}