.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e5e7eb;
    border-top-color: #3B82F6;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.animate-fade-in-up {
    animation: fadeInUp 0.45s ease-out forwards;
    opacity: 0;
    transform: translateY(12px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-info-banner {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    border-left: 4px solid #3b82f6;
    border-radius: 10px;
    padding: 12px 14px;
    width: 100%;
    text-align: left;
}

.privacy-info-banner__icon {
    width: 18px;
    height: 18px;
    color: #3b82f6;
    flex-shrink: 0;
    margin-top: 1px;
}

.privacy-info-banner__text {
    font-size: 12px;
    line-height: 1.5;
    color: #1e40af;
}

.privacy-info-banner__link {
    margin-left: 4px;
    color: #2563eb;
    text-decoration: underline;
    font-weight: 600;
    white-space: nowrap;
}

.ad-slot {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f3f4f6;
    border: 1px dashed #d1d5db;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 24px;
    margin-bottom: 24px;
}

.ad-slot--top {
    min-height: 90px;
}

.ad-slot--bottom {
    min-height: 250px;
}

.ad-slot--anchor {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: 60px;
    max-height: 60px;
    z-index: 30;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    background-color: #ffffff;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
    margin: 0;
}

.ad-slot--in-feed {
    min-height: 100px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.ad-slot__label {
    position: absolute;
    top: 4px;
    left: 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #9ca3af;
    pointer-events: none;
    z-index: 1;
}

.ad-slot::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.018) 10px,
        rgba(0, 0, 0, 0.018) 20px
    );
    pointer-events: none;
}

.ad-slot ins.adsbygoogle {
    width: 100%;
}

.consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.consent-banner--visible {
    transform: translateY(0);
}

.consent-banner__inner {
    background: #1f2937;
    color: #f9fafb;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
}

.consent-banner__text {
    font-size: 13px;
    line-height: 1.5;
    color: #d1d5db;
}

.consent-banner__link {
    color: #60a5fa;
    text-decoration: underline;
}

.consent-banner__actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.consent-banner__btn {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.15s;
}

.consent-banner__btn:hover {
    opacity: 0.85;
}

.consent-banner__btn--deny {
    background: transparent;
    border: 1px solid #4b5563;
    color: #9ca3af;
}

.consent-banner__btn--accept {
    background: #3B82F6;
    border: 1px solid #3B82F6;
    color: #ffffff;
}
