:root {
    --c-bg: #060a14;
    --c-bg-2: #0c1226;
    --c-bg-3: #141c38;
    --c-surface: rgba(18, 26, 58, 0.82);
    --c-surface-hover: rgba(24, 36, 78, 0.92);
    --c-surface-raised: rgba(22, 32, 72, 0.9);
    --c-border: rgba(70, 120, 220, 0.18);
    --c-border-hover: rgba(70, 120, 220, 0.4);

    --c-primary: #3866cc;
    --c-primary-light: #6b9cff;
    --c-primary-dark: #0f31ab;
    --c-accent: #351e9d;
    --c-accent-light: #7c5ef0;

    --c-text: #edf1f8;
    --c-text-2: #9eaabf;
    --c-text-3: #7b879e;

    --c-red: #f04848;
    --c-orange: #f09030;
    --c-yellow: #f0c030;
    --c-green: #30c878;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    --ease: cubic-bezier(.4, 0, .2, 1);
    --ease-spring: cubic-bezier(.22, 1.36, .36, 1);
    --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--c-bg);
    color: var(--c-text);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden;
}

::selection { background: rgba(56, 102, 204, 0.35); color: #fff; }

.ambient-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    will-change: transform;
}

.ambient-glow--1 {
    width: 800px; height: 800px;
    top: -25%; right: -15%;
    background: radial-gradient(circle, rgba(15, 49, 171, 0.18), transparent 70%);
    animation: ambientFloat 25s ease-in-out infinite;
}

.ambient-glow--2 {
    width: 600px; height: 600px;
    bottom: -20%; left: -10%;
    background: radial-gradient(circle, rgba(53, 30, 157, 0.14), transparent 70%);
    animation: ambientFloat 30s ease-in-out infinite reverse;
}

.ambient-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(56, 102, 204, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 102, 204, 0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 30%, black 0%, transparent 100%);
}

@keyframes ambientFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.05); }
    66% { transform: translate(-30px, 20px) scale(0.95); }
}

.nav {
    position: fixed;
    top: 0;
    left: 0; right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all .35s var(--ease);
}

.nav--scrolled {
    background: rgba(6, 10, 20, 0.92);
    backdrop-filter: blur(24px) saturate(1.3);
    border-bottom: 1px solid var(--c-border);
    padding: 10px 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav__logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(56, 102, 204, 0.4));
    transition: transform .3s var(--ease);
}

.nav__brand:hover .nav__logo { transform: scale(1.08) rotate(-4deg); }

.nav__wordmark {
    font-size: 18px;
    font-weight: 800;
    color: var(--c-text);
    letter-spacing: -0.03em;
}

.nav__wordmark-dot { color: var(--c-primary); }

.nav__links {
    display: flex;
    gap: 6px;
}

.nav__link {
    color: var(--c-text-2);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all .2s var(--ease);
}

.nav__link:hover {
    color: var(--c-text);
    background: rgba(56, 102, 204, 0.08);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--c-primary-dark), var(--c-primary));
    border: 1px solid rgba(107, 156, 255, 0.25);
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s var(--ease);
    position: relative;
    overflow: hidden;
}

.nav__cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.12));
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.nav__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(15, 49, 171, 0.5);
    border-color: rgba(107, 156, 255, 0.4);
}

.nav__cta:hover::after { opacity: 1; }

.nav__cta:active { transform: translateY(0); }

.hero {
    position: relative;
    z-index: 2;
    padding: 180px 32px 48px;
    text-align: center;
}

.hero__container {
    max-width: 800px;
    margin: 0 auto;
}

.hero__title {
    font-size: clamp(36px, 5.5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    animation: fadeDown .6s var(--ease) .1s both;
}

.hero__title-accent {
    background: linear-gradient(135deg, var(--c-primary), var(--c-accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 17px;
    color: var(--c-text-2);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeDown .6s var(--ease) .2s both;
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-16px); }
    to { opacity: 1; transform: translateY(0); }
}

.search-hero {
    animation: fadeDown .6s var(--ease) .3s both;
}

.search-hero__bar {
    display: flex;
    align-items: center;
    background: var(--c-surface-raised);
    border: 1px solid var(--c-border);
    border-radius: 16px;
    padding: 6px;
    transition: all .3s var(--ease);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(56, 102, 204, 0);
}

.search-hero__bar:focus-within {
    border-color: var(--c-primary);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(56, 102, 204, 0.15);
}

.search-hero__icon {
    display: flex;
    align-items: center;
    padding: 0 12px 0 16px;
    color: var(--c-text-3);
    flex-shrink: 0;
}

.search-hero__input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--c-text);
    font-family: var(--font);
    font-size: 15px;
    padding: 14px 8px;
    min-width: 0;
}

.search-hero__input::placeholder { color: var(--c-text-3); }

.search-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--c-primary-dark), var(--c-primary));
    border: none;
    border-radius: 12px;
    color: #fff;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s var(--ease);
    flex-shrink: 0;
}

.search-hero__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(15, 49, 171, 0.4);
}

.search-hero__btn:active { transform: translateY(0); }

.search-hero__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    justify-content: center;
    align-items: center;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: rgba(18, 26, 58, 0.5);
    border: 1px solid var(--c-border);
    border-radius: 100px;
    color: var(--c-text-2);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s var(--ease);
}

.filter-chip:hover {
    border-color: var(--c-border-hover);
    color: var(--c-text);
    background: rgba(56, 102, 204, 0.06);
}

.filter-chip--active {
    background: rgba(56, 102, 204, 0.12);
    border-color: rgba(56, 102, 204, 0.35);
    color: var(--c-primary-light);
}

.results {
    position: relative;
    z-index: 2;
    padding: 0 32px 80px;
}

.results__container {
    max-width: 1200px;
    margin: 0 auto;
}

.results__status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--c-border);
}

.results__count {
    font-size: 14px;
    color: var(--c-text-2);
    font-weight: 500;
}

.results__count span {
    color: var(--c-text);
    font-weight: 700;
}

.results__meta {
    font-size: 13px;
    color: var(--c-text-3);
}

.results__loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    gap: 20px;
}

.results__loading p {
    color: var(--c-text-2);
    font-size: 14px;
}

.loader {
    position: relative;
    width: 40px;
    height: 40px;
}

.loader__ring {
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-top-color: var(--c-primary);
    border-radius: 50%;
    animation: loaderSpin 1.2s ease-in-out infinite;
}

.loader__ring:nth-child(2) {
    inset: 4px;
    border-top-color: var(--c-accent-light);
    animation-delay: 0.15s;
    animation-direction: reverse;
}

.loader__ring:nth-child(3) {
    inset: 8px;
    border-top-color: var(--c-primary-light);
    animation-delay: 0.3s;
}

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

.results__none {
    display: flex;
    justify-content: center;
    padding: 60px 0;
}

.empty-state {
    text-align: center;
    max-width: 400px;
}

.empty-state__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(56, 102, 204, 0.08);
    color: var(--c-primary-light);
    margin-bottom: 20px;
}

.empty-state__icon--success {
    background: rgba(48, 200, 120, 0.08);
    color: var(--c-green);
}

.empty-state h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 15px;
    color: var(--c-text-2);
    line-height: 1.6;
    margin-bottom: 24px;
}

.results__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 16px;
}

.report-card {
    background: var(--c-surface-raised);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 22px 24px 20px;
    cursor: pointer;
    transition: all .25s var(--ease);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.report-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-primary-dark), var(--c-primary-light));
    opacity: 0;
    transition: opacity .25s var(--ease);
}

.report-card:hover {
    border-color: var(--c-border-hover);
    background: var(--c-surface-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(56, 102, 204, 0.08);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.report-card:hover::before { opacity: 1; }

.report-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    gap: 10px;
}

.report-card__id {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    color: var(--c-text-2);
    background: rgba(56, 102, 204, 0.1);
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    transition: all .2s var(--ease);
}

.report-card:hover .report-card__id {
    color: var(--c-primary-light);
    background: rgba(56, 102, 204, 0.16);
}

.report-card__type-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(56, 102, 204, 0.08);
    color: var(--c-primary-light);
    border: 1px solid rgba(56, 102, 204, 0.15);
}

.report-card__type-badge--scamming {
    background: rgba(240, 72, 72, 0.08);
    color: #f07070;
    border-color: rgba(240, 72, 72, 0.15);
}

.report-card__type-badge--harassment {
    background: rgba(240, 144, 48, 0.08);
    color: #f0a050;
    border-color: rgba(240, 144, 48, 0.15);
}

.report-card__type-badge--griefing {
    background: rgba(240, 192, 48, 0.08);
    color: #e0c050;
    border-color: rgba(240, 192, 48, 0.15);
}

.report-card__type-badge--hacking {
    background: rgba(110, 82, 212, 0.08);
    color: #9080e0;
    border-color: rgba(110, 82, 212, 0.15);
}

.report-card__type-badge--other {
    background: rgba(138, 148, 168, 0.08);
    color: var(--c-text-2);
    border-color: rgba(138, 148, 168, 0.15);
}

.report-card__type-badge svg {
    flex-shrink: 0;
}

.report-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 8px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.report-card__desc {
    font-size: 13px;
    color: var(--c-text-2);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.report-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--c-border);
    gap: 12px;
}

.report-card__user {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--c-text);
    min-width: 0;
    overflow: hidden;
}

.report-card__user svg { color: var(--c-text-3); flex-shrink: 0; }
.report-card__user span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.report-card__date {
    font-size: 12px;
    color: var(--c-text-3);
    white-space: nowrap;
    flex-shrink: 0;
}

.results__more {
    display: flex;
    justify-content: center;
    padding: 32px 0 0;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    color: var(--c-text-2);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s var(--ease);
}

.load-more-btn:hover {
    background: var(--c-surface-hover);
    border-color: var(--c-border-hover);
    color: var(--c-text);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(6, 8, 22, 0.88);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 24px 40px;
    overflow-y: auto;
    animation: fadeIn .2s var(--ease);
}

.modal {
    width: 100%;
    max-width: 760px;
    background: var(--c-bg-3);
    border: 1px solid var(--c-border);
    border-radius: 8px;
    overflow: hidden;
    animation: modalSlide .3s var(--ease);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(70, 120, 220, 0.1);
    position: relative;
}

.modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-primary-dark), var(--c-primary), var(--c-accent-light));
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlide {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 16px 20px 0;
}

.modal__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--c-text-2);
    cursor: pointer;
    transition: all .2s var(--ease);
    flex-shrink: 0;
}

.modal__close:hover {
    background: rgba(240, 72, 72, 0.12);
    color: var(--c-red);
}

.modal__body {
    padding: 8px 28px 32px;
}

.modal__loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    gap: 16px;
}

.modal__loading p {
    color: var(--c-text-2);
    font-size: 14px;
}

.modal__error-state {
    text-align: center;
    padding: 48px 24px;
    color: var(--c-text-2);
}

.modal__error-state svg {
    color: var(--c-red);
    margin-bottom: 16px;
    opacity: 0.6;
}

.modal__error-state h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 8px;
}

.modal__error-state p {
    font-size: 14px;
    line-height: 1.6;
}


.modal__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 28px 20px;
    flex-wrap: wrap;
}

.modal__action-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    color: var(--c-text-2);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all .25s var(--ease);
    position: relative;
    overflow: hidden;
}

.modal__action-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(56, 102, 204, 0.08), transparent);
    opacity: 0;
    transition: opacity .25s var(--ease);
}

.modal__action-btn:hover {
    border-color: var(--c-border-hover);
    color: var(--c-text);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.modal__action-btn:hover::before { opacity: 1; }
.modal__action-btn:active { transform: translateY(0); }

.modal__action-btn svg { flex-shrink: 0; position: relative; z-index: 1; }
.modal__action-btn span { position: relative; z-index: 1; }

.modal__action-btn--primary {
    background: linear-gradient(135deg, var(--c-primary-dark), var(--c-primary));
    border-color: transparent;
    color: #fff;
}

.modal__action-btn--primary:hover {
    box-shadow: 0 6px 20px rgba(15, 49, 171, 0.4);
    color: #fff;
}

.modal__action-btn--copied {
    border-color: rgba(48, 200, 120, 0.4) !important;
    color: var(--c-green) !important;
}

.modal__action-btn--copied::before {
    background: rgba(48, 200, 120, 0.06) !important;
    opacity: 1 !important;
}

.modal__share-wrap {
    position: relative;
}

.modal__share-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: var(--c-bg-2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 6px;
    min-width: 180px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(-6px) scale(0.96);
    pointer-events: none;
    transition: all .2s var(--ease);
    z-index: 210;
}

.modal__share-dropdown--open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.modal__share-option {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 9px 12px;
    background: none;
    border: none;
    border-radius: 6px;
    color: var(--c-text-2);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .15s var(--ease);
    text-decoration: none;
}

.modal__share-option:hover {
    background: rgba(56, 102, 204, 0.08);
    color: var(--c-text);
}

.modal__share-option svg { flex-shrink: 0; width: 15px; height: 15px; }

.landing-toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(16px);
    background: var(--c-bg-3);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 12px 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    color: var(--c-text);
    z-index: 600;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
}

.landing-toast--show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.landing-toast svg { color: var(--c-green); flex-shrink: 0; }

.rpt__head {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--c-border);
}

.rpt__meta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.rpt__id {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--c-primary-light);
    background: rgba(56, 102, 204, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.02em;
}

.rpt__type-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(56, 102, 204, 0.08);
    color: var(--c-primary-light);
    border: 1px solid rgba(56, 102, 204, 0.15);
}

.rpt__type-badge--scamming { background: rgba(240, 72, 72, 0.08); color: #f07070; border-color: rgba(240, 72, 72, 0.15); }
.rpt__type-badge--harassment { background: rgba(240, 144, 48, 0.08); color: #f0a050; border-color: rgba(240, 144, 48, 0.15); }
.rpt__type-badge--griefing { background: rgba(240, 192, 48, 0.08); color: #e0c050; border-color: rgba(240, 192, 48, 0.15); }
.rpt__type-badge--hacking { background: rgba(110, 82, 212, 0.08); color: #9080e0; border-color: rgba(110, 82, 212, 0.15); }
.rpt__type-badge--other { background: rgba(138, 148, 168, 0.08); color: var(--c-text-2); border-color: rgba(138, 148, 168, 0.15); }
.rpt__type-badge svg { flex-shrink: 0; }

.rpt__date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--c-text-3);
}

.rpt__date svg { flex-shrink: 0; opacity: 0.6; }

.rpt__title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--c-text);
    word-break: break-word;
}

.rpt__section {
    margin-bottom: 24px;
}

.rpt__section:last-child {
    margin-bottom: 0;
}

.rpt__section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-text-3);
    margin-bottom: 14px;
}

.rpt__section-label svg {
    color: var(--c-primary-light);
    opacity: 0.7;
    flex-shrink: 0;
}

.rpt__info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
}

.rpt__info-card {
    background: rgba(56, 102, 204, 0.04);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 12px 14px;
    transition: all .25s var(--ease);
    position: relative;
    overflow: hidden;
}

.rpt__info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--c-primary), var(--c-accent-light));
    opacity: 0;
    transition: opacity .3s var(--ease);
}

.rpt__info-card:hover {
    border-color: var(--c-border-hover);
    background: rgba(56, 102, 204, 0.06);
}

.rpt__info-card:hover::before { opacity: 1; }

.rpt__info-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-text-3);
    margin-bottom: 6px;
}

.rpt__info-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--c-text);
    word-break: break-all;
    line-height: 1.4;
}

.rpt__info-value--mono {
    font-family: var(--font-mono);
    font-size: 13px;
}

.rpt__description {
    font-size: 14px;
    color: var(--c-text-2);
    line-height: 1.75;
    white-space: pre-wrap;
    word-break: break-word;
    background: rgba(56, 102, 204, 0.03);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    padding: 16px 18px;
    max-height: 350px;
    overflow-y: auto;
}

.rpt__description::-webkit-scrollbar {
    width: 6px;
}

.rpt__description::-webkit-scrollbar-track {
    background: transparent;
}

.rpt__description::-webkit-scrollbar-thumb {
    background: rgba(56, 102, 204, 0.2);
    border-radius: 3px;
}

.rpt__evidence-count {
    font-weight: 500;
    color: var(--c-text-2);
    text-transform: none;
    letter-spacing: normal;
    font-size: 12px;
    margin-left: 4px;
}

.rpt__evidence-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 10px;
}

.evidence-item {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 6px;
    overflow: hidden;
    transition: all .25s var(--ease);
    display: flex;
    flex-direction: column;
}

.evidence-item:hover {
    border-color: var(--c-border-hover);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.evidence-item--image .evidence-item__preview {
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.evidence-item--image .evidence-item__preview img {
    width: 100%;
    height: 130px;
    object-fit: contain;
    display: block;
    transition: transform .3s var(--ease);
    background: rgba(0, 0, 0, 0.2);
}

.evidence-item--image:hover .evidence-item__preview img {
    transform: scale(1.03);
}

.evidence-item__zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 8, 22, 0.5);
    opacity: 0;
    transition: opacity .25s var(--ease);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
}

.evidence-item--image:hover .evidence-item__zoom {
    opacity: 1;
}

.evidence-item--video .evidence-item__video-wrap {
    background: #000;
    position: relative;
}

.evidence-item--video .evidence-item__video-wrap video {
    width: 100%;
    max-height: 200px;
    display: block;
}

.evidence-item--file {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
}

.evidence-item__file-icon {
    flex-shrink: 0;
    color: var(--c-primary-light);
    opacity: 0.6;
}

.evidence-item__file-icon svg {
    width: 22px;
    height: 22px;
}

.evidence-item__info {
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-width: 0;
    overflow: hidden;
    border-top: 1px solid var(--c-border);
}

.evidence-item--file .evidence-item__info {
    padding: 0;
    flex: 1;
    border-top: none;
}

.evidence-item__name {
    font-size: 11px;
    font-weight: 500;
    color: var(--c-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    display: block;
}

.evidence-item__size {
    font-size: 10px;
    color: var(--c-text-3);
}

.evidence-item__download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--c-primary-light);
    text-decoration: none;
    border-top: 1px solid var(--c-border);
    transition: all .2s var(--ease);
    background: rgba(56, 102, 204, 0.03);
}

.evidence-item--file .evidence-item__download {
    border-top: none;
    border-left: 1px solid var(--c-border);
    padding: 10px 14px;
    margin-left: auto;
    flex-shrink: 0;
}

.evidence-item__download:hover {
    color: #fff;
    background: rgba(56, 102, 204, 0.12);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    animation: fadeIn .2s var(--ease);
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: all .2s var(--ease);
    z-index: 1;
}

.lightbox__close:hover {
    background: rgba(240, 72, 72, 0.3);
    border-color: rgba(240, 72, 72, 0.5);
}

.lightbox__content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
    object-fit: contain;
}

.how-it-works {
    position: relative;
    z-index: 2;
    padding: 100px 32px;
}

.how-it-works__container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--c-primary-light);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.text-accent {
    background: linear-gradient(135deg, var(--c-primary), var(--c-accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 16px;
    color: var(--c-text-2);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
}

.process-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.process-flow__card {
    position: relative;
    padding: 36px 24px 28px;
    background: var(--c-surface-raised);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
    opacity: 0;
    transform: translateY(32px);
}

.process-flow__card--visible {
    opacity: 1;
    transform: translateY(0);
}

.process-flow__card--visible:hover {
    transform: translateY(-6px);
}

.process-flow__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.process-flow__card:hover::before { opacity: 1; }

.process-flow__card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top center, rgba(56, 102, 204, 0.06), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.process-flow__card:hover::after { opacity: 1; }

.process-flow__card:hover {
    border-color: var(--c-border-hover);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(56, 102, 204, 0.06);
}

.process-flow__card--1::before { background: linear-gradient(90deg, #0f31ab, #3866cc); }
.process-flow__card--2::before { background: linear-gradient(90deg, #1e40af, #5a8af2); }
.process-flow__card--3::before { background: linear-gradient(90deg, #351e9d, #7c5ef0); }
.process-flow__card--4::before { background: linear-gradient(90deg, #059669, #30c878); }

.process-flow__num {
    position: absolute;
    top: -14px;
    right: 6px;
    font-size: 100px;
    font-weight: 900;
    line-height: 1;
    opacity: 0.035;
    color: var(--c-text);
    pointer-events: none;
    letter-spacing: -0.06em;
    transition: opacity 0.5s var(--ease);
    z-index: 0;
}

.process-flow__card:hover .process-flow__num {
    opacity: 0.07;
}

.process-flow__icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.4s var(--ease-spring);
}

.process-flow__card--1 .process-flow__icon-wrap { background: rgba(56, 102, 204, 0.12); color: var(--c-primary-light); }
.process-flow__card--2 .process-flow__icon-wrap { background: rgba(90, 138, 242, 0.12); color: #6b9cff; }
.process-flow__card--3 .process-flow__icon-wrap { background: rgba(124, 94, 240, 0.12); color: #7c5ef0; }
.process-flow__card--4 .process-flow__icon-wrap { background: rgba(48, 200, 120, 0.12); color: var(--c-green); }

.process-flow__card:hover .process-flow__icon-wrap {
    transform: scale(1.12) translateY(-2px);
}

.process-flow__title {
    font-size: 17px;
    margin-top: 20px!important;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: var(--c-text);
    position: relative;
    z-index: 1;
}

.process-flow__desc {
    font-size: 13px;
    color: var(--c-text-2);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.process-flow__connector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 6px;
    align-self: center;
}

.process-flow__connector span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--c-primary-light);
}

.process-flow__connector span:nth-child(1) {
    opacity: 0.15;
    animation: connectorPulse 2.4s ease-in-out infinite;
}

.process-flow__connector span:nth-child(2) {
    opacity: 0.35;
    animation: connectorPulse 2.4s ease-in-out 0.4s infinite;
}

.process-flow__connector span:nth-child(3) {
    opacity: 0.6;
    animation: connectorPulse 2.4s ease-in-out 0.8s infinite;
}

@keyframes connectorPulse {
    0%, 100% { opacity: 0.12; transform: scale(0.7); }
    50% { opacity: 0.7; transform: scale(1.3); }
}

.trust-section {
    position: relative;
    z-index: 2;
    padding: 80px 32px 100px;
    overflow: hidden;
}

.trust-section__container {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-section__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.trust-section__text .section-label,
.trust-section__text .section-title,
.trust-section__text .section-subtitle {
    text-align: left;
    margin-left: 0;
}

.trust-section__text .section-subtitle {
    max-width: 100%;
    margin-bottom: 24px;
}

.trust-section__points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.trust-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    transition: all 0.3s var(--ease);
}

.trust-point:hover {
    border-color: var(--c-border-hover);
    background: var(--c-surface-hover);
    transform: translateX(4px);
}

.trust-point__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    flex-shrink: 0;
    color: var(--c-green);
    background: rgba(48, 200, 120, 0.1);
}

.trust-point__text {
    font-size: 14px;
    color: var(--c-text-2);
    line-height: 1.6;
}

.trust-point__text strong {
    color: var(--c-text);
    font-weight: 600;
}

.trust-section__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-orb {
    position: relative;
    width: 360px;
    height: 360px;
}

.trust-orb__rings {
    position: absolute;
    inset: 0;
}

.trust-orb__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
}

.trust-orb__ring--1 {
    inset: 0;
    border-color: rgba(56, 102, 204, 0.12);
    animation: orbSpin 30s linear infinite;
}

.trust-orb__ring--2 {
    inset: 30px;
    border-color: rgba(124, 94, 240, 0.1);
    animation: orbSpin 24s linear infinite reverse;
}

.trust-orb__ring--3 {
    inset: 60px;
    border-color: rgba(48, 200, 120, 0.1);
    animation: orbSpin 18s linear infinite;
}

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

.trust-orb__ring--1::after,
.trust-orb__ring--2::after,
.trust-orb__ring--3::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.trust-orb__ring--1::after { background: var(--c-primary-light); box-shadow: 0 0 12px var(--c-primary-light); }
.trust-orb__ring--2::after { background: #7c5ef0; box-shadow: 0 0 12px #7c5ef0; }
.trust-orb__ring--3::after { background: var(--c-green); box-shadow: 0 0 12px var(--c-green); }

.trust-orb__center {
    position: absolute;
    inset: 90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 102, 204, 0.15), rgba(15, 49, 171, 0.08));
    border: 1px solid rgba(56, 102, 204, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    backdrop-filter: blur(8px);
}

.trust-orb__center img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(56, 102, 204, 0.5));
}

.trust-orb__center span {
    font-size: 12px;
    font-weight: 700;
    color: var(--c-text-2);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.api-section {
    position: relative;
    z-index: 2;
    padding: 60px 32px 100px;
}

.api-section__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.api-section__content .section-label,
.api-section__content .section-title,
.api-section__content .section-subtitle {
    text-align: left;
    margin-left: 0;
}

.api-section__content .section-subtitle {
    max-width: 100%;
    margin-bottom: 28px;
}

.api-section__endpoints {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.endpoint {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: var(--c-surface-raised);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    transition: border-color 0.2s var(--ease);
}

.endpoint:hover {
    border-color: var(--c-border-hover);
}

.endpoint__method {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(48, 200, 120, 0.12);
    color: var(--c-green);
    flex-shrink: 0;
}

.endpoint__path {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--c-text-2);
}

.endpoint__param {
    color: var(--c-primary-light);
    font-style: italic;
}

.api-section__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--c-primary-light);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s var(--ease);
}

.api-section__link:hover {
    color: #fff;
    gap: 12px;
}

.code-window {
    background: var(--c-bg-3);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.code-window__dots {
    display: flex;
    gap: 6px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--c-border);
}

.code-window__dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.code-window__dots span:nth-child(1) { background: #f04848; }
.code-window__dots span:nth-child(2) { background: #f0c030; }
.code-window__dots span:nth-child(3) { background: #30c878; }

.code-window__body {
    padding: 20px;
    font-family: var(--font-mono);
    font-size: 13px;
    line-height: 1.8;
    overflow-x: auto;
    color: var(--c-text-2);
}

.code-comment { color: var(--c-text-3); }
.code-keyword { color: var(--c-accent-light); }
.code-fn { color: var(--c-primary-light); }
.code-string { color: var(--c-green); }

.footer {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--c-border);
    padding: 40px 32px;
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.footer__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--c-text-2);
}

.footer__links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--c-text-3);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s var(--ease);
}

.footer__link:hover { color: var(--c-text); }

.footer__oa-logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
    border-radius: 3px;
}

.footer__copy {
    font-size: 13px;
    color: var(--c-text-3);
}

@media (max-width: 1024px) {
    .api-section__container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .process-flow {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        max-width: 640px;
        margin: 0 auto;
    }

    .process-flow__connector { display: none; }

    .trust-section__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-section__text .section-label,
    .trust-section__text .section-title,
    .trust-section__text .section-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .trust-orb {
        width: 280px;
        height: 280px;
    }

    .trust-orb__ring--2 { inset: 24px; }
    .trust-orb__ring--3 { inset: 48px; }
    .trust-orb__center { inset: 70px; }
    .trust-orb__center img { width: 44px; height: 44px; }
}

@media (max-width: 768px) {
    .hero { padding: 150px 20px 32px; }
    .results { padding: 0 20px 60px; }
    .how-it-works { padding: 60px 20px; }
    .api-section { padding: 40px 20px 60px; }
    .trust-section { padding: 60px 20px 80px; }
    .footer { padding: 32px 20px; }

    .nav__inner { padding: 0 20px; }
    .nav__links { display: none; }

    .search-hero__bar {
        flex-wrap: wrap;
    }

    .search-hero__input {
        min-width: 0;
        flex: 1 1 200px;
    }

    .search-hero__btn {
        flex: 0 0 auto;
    }

    .results__grid {
        grid-template-columns: 1fr;
    }

    .process-flow {
        grid-template-columns: 1fr;
        max-width: 440px;
    }

    .process-flow__card {
        padding: 28px 20px 24px;
    }

    .process-flow__num {
        font-size: 72px;
        top: -10px;
        right: 4px;
    }

    .trust-section__top {
        gap: 32px;
    }

    .trust-orb {
        width: 240px;
        height: 240px;
    }

    .trust-orb__ring--2 { inset: 20px; }
    .trust-orb__ring--3 { inset: 40px; }
    .trust-orb__center { inset: 60px; }
    .trust-orb__center img { width: 36px; height: 36px; }
    .trust-orb__center span { font-size: 10px; }

    .footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .modal-overlay {
        padding: 20px 12px 12px;
    }

    .modal__body {
        padding: 8px 20px 24px;
    }

    .modal__actions {
        padding: 0 20px 16px;
        gap: 6px;
    }

    .modal__action-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .rpt__info-grid {
        grid-template-columns: 1fr;
    }

    .rpt__evidence-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .evidence-item--file {
        flex-wrap: wrap;
    }

    .rpt__meta-row {
        gap: 8px;
    }

    .rpt__date {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero__title { font-size: 30px; }
    .hero__subtitle { font-size: 15px; }

    .search-hero__filters {
        gap: 6px;
    }

    .filter-chip { padding: 6px 10px; font-size: 12px; }

    .nav__wordmark { font-size: 16px; }

    .rpt__title { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
