.pp-consent {
    position: fixed;
    inset: auto 16px 16px 16px;
    z-index: 12000;
    max-width: 520px;
    margin: 0 auto;
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(31, 90, 148, 0.18);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(10px);
    animation: pp-consent-in 0.35s ease;
}

body.dark .pp-consent {
    background: rgba(15, 23, 42, 0.96);
    border-color: rgba(147, 197, 253, 0.2);
    color: #e2e8f0;
}

.pp-consent.hidden { display: none; }

.pp-consent-title {
    font-family: var(--font-display, 'Bebas Neue', sans-serif);
    font-size: 1.35rem;
    color: var(--blue, #1f5a94);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

body.dark .pp-consent-title { color: #93c5fd; }

.pp-consent-text {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-2, #64748b);
    margin-bottom: 14px;
}

body.dark .pp-consent-text { color: #94a3b8; }

.pp-consent-text a {
    color: var(--blue, #1f5a94);
    text-decoration: underline;
}

body.dark .pp-consent-text a { color: #93c5fd; }

.pp-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pp-consent-actions .btn {
    flex: 1 1 140px;
    min-width: 120px;
}

@keyframes pp-consent-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 520px) {
    .pp-consent {
        inset: auto 10px 10px 10px;
        padding: 16px;
    }
}