:root {
    --ink: #f9fffb;
    --muted: rgba(245, 255, 250, 0.78);
    --soft: rgba(236, 255, 244, 0.62);
    --glass: rgba(30, 118, 119, 0.35);
    --glass-deep: rgba(16, 91, 102, 0.51);
    --glass-light: rgba(255, 255, 255, 0.19);
    --line: rgba(255, 255, 255, 0.28);
    --lime: #9df343;
    --green: #16c969;
    --green-deep: #069b58;
    --blue: #198cf2;
    --shadow: 0 24px 70px rgba(0, 62, 57, 0.27);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 15px;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: #5bb78c;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.modal-open {
    overflow: hidden;
}

body::selection {
    color: #083b31;
    background: var(--lime);
}

button,
input,
select {
    font: inherit;
}

button,
a,
select,
input[type="checkbox"] {
    -webkit-tap-highlight-color: transparent;
}

button,
a {
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

button {
    border: 0;
    cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(157, 243, 67, 0.9);
    outline-offset: 3px;
}

a {
    color: inherit;
    text-decoration: none;
}

[hidden] {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-background,
.background-wash {
    position: fixed;
    z-index: -5;
    inset: 0;
    pointer-events: none;
}

.site-background {
    background-image: url("visualfinder-nature.webp");
    background-position: center center;
    background-size: cover;
    filter: saturate(1.05) contrast(1.02);
    transform: scale(1.025);
}

.background-wash {
    z-index: -4;
    background:
        linear-gradient(180deg, rgba(6, 52, 71, 0.42) 0%, rgba(4, 94, 101, 0.18) 42%, rgba(0, 102, 84, 0.32) 100%),
        radial-gradient(circle at 50% 31%, rgba(30, 171, 224, 0.11), transparent 39%),
        linear-gradient(90deg, rgba(5, 73, 54, 0.22), transparent 31%, transparent 70%, rgba(5, 73, 54, 0.16));
}

.site-header {
    position: relative;
    z-index: 5;
    display: flex;
    width: min(100% - 52px, 1640px);
    min-height: 92px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 20px 0 13px;
}

.brand {
    display: inline-flex;
    min-width: 266px;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    display: grid;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    place-items: center;
    filter: drop-shadow(0 6px 12px rgba(0, 51, 45, 0.25));
}

.brand-mark svg {
    width: 100%;
    height: 100%;
}

.brand-copy {
    display: grid;
    gap: 1px;
}

.brand-name {
    color: #ffffff;
    font-size: clamp(1.5rem, 2.3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 1;
    text-shadow: 0 3px 10px rgba(0, 54, 52, 0.25);
}

.brand-name span {
    color: var(--lime);
}

.brand-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    letter-spacing: 0.01em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2.3vw, 34px);
}

.nav-link {
    position: relative;
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 8px;
    padding: 8px 1px;
    color: rgba(255, 255, 255, 0.94);
    background: transparent;
    font-size: 0.98rem;
    white-space: nowrap;
}

.nav-link span {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--lime);
}

.nav-link.is-active::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    border-radius: 5px;
    background: var(--lime);
    box-shadow: 0 0 14px rgba(157, 243, 67, 0.7);
    content: "";
}

.nav-button {
    appearance: none;
}

.header-actions {
    position: relative;
    display: flex;
    min-width: 166px;
    align-items: center;
    justify-content: flex-end;
    gap: 13px;
}

.icon-button {
    display: grid;
    width: 43px;
    height: 43px;
    padding: 0;
    place-items: center;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(8, 68, 78, 0.24);
    font-size: 1.55rem;
}

.icon-button:hover {
    color: var(--lime);
    background: rgba(8, 68, 78, 0.44);
    transform: translateY(-2px);
}

.switch {
    position: relative;
    width: 62px;
    height: 34px;
    padding: 4px;
    border-radius: 999px;
    background: #8de739;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 5px 15px rgba(0, 62, 38, 0.22);
}

.switch span {
    display: block;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 7px rgba(0, 55, 39, 0.24);
    transition: transform 180ms ease;
}

.switch[aria-checked="true"] {
    background: #0e7f7a;
}

.switch[aria-checked="true"] span {
    transform: translateX(28px);
}

.toggle-motto {
    position: relative;
    display: flex;
    align-items: center;
}

.header-motto {
    position: absolute;
    top: calc(100% + 7px);
    left: 50%;
    display: grid;
    width: 122px;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-family: "Segoe Print", "Bradley Hand", "Comic Sans MS", cursive;
    font-size: clamp(0.67rem, 1.08vw, 0.88rem);
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0.035em;
    line-height: 0.97;
    text-align: left;
    text-shadow: 0 4px 13px rgba(0, 46, 57, 0.58);
    pointer-events: none;
    transform: translateX(-50%) rotate(-2deg);
}

.header-motto span:nth-child(2) {
    margin-left: 8px;
}

.header-motto span:nth-child(3) {
    margin-left: 2px;
}

.header-motto span:nth-child(4) {
    margin-left: 11px;
    color: var(--lime);
}

.mobile-menu-toggle {
    display: none;
}

.hero-section {
    width: min(100% - 36px, 1160px);
    margin: 0 auto;
    padding: clamp(28px, 5vw, 64px) 0 46px;
}

.hero-heading {
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 11px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow-line {
    display: inline-block;
    width: 32px;
    height: 1px;
    background: rgba(255, 255, 255, 0.64);
}

.hero-heading h1 {
    max-width: 1040px;
    margin: 0 auto;
    color: #ffffff;
    font-size: clamp(2.55rem, 6vw, 4.8rem);
    font-weight: 800;
    letter-spacing: -0.065em;
    line-height: 1.02;
    text-shadow: 0 6px 17px rgba(0, 55, 70, 0.45);
}

.hero-heading h1 span {
    color: var(--lime);
}

.hero-subtitle {
    margin: 18px 0 21px;
    color: #ffffff;
    font-size: clamp(1.05rem, 2vw, 1.45rem);
    font-weight: 450;
    text-shadow: 0 4px 12px rgba(0, 43, 54, 0.4);
}

.hero-subtitle i {
    padding: 0 7px;
    color: var(--lime);
    font-style: normal;
}

.feature-pills {
    display: flex;
    max-width: 850px;
    margin: 0 auto 24px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-pills span {
    display: inline-flex;
    min-height: 35px;
    align-items: center;
    gap: 7px;
    padding: 7px 13px;
    color: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(28, 117, 140, 0.42);
    box-shadow: 0 5px 14px rgba(0, 64, 69, 0.12);
    font-size: 0.85rem;
    backdrop-filter: blur(9px);
}

.feature-pills b {
    color: var(--lime);
    font-size: 1rem;
}

.glass-panel {
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(65, 153, 154, 0.42), rgba(16, 100, 111, 0.27));
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(22px) saturate(1.13);
    -webkit-backdrop-filter: blur(22px) saturate(1.13);
}

.search-panel {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-xl);
    padding: clamp(19px, 3vw, 30px);
}

.search-panel.glass-panel {
    border-color: rgba(255, 255, 255, 0.22);
    background: linear-gradient(145deg, rgba(65, 153, 154, 0.24), rgba(16, 100, 111, 0.12));
    box-shadow: 0 24px 70px rgba(0, 62, 57, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.search-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 15px;
    align-items: stretch;
}

.search-input-wrap {
    position: relative;
    display: flex;
    min-width: 0;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 20px;
    z-index: 1;
    color: #3e4e55;
    font-size: 2rem;
    line-height: 1;
    transform: rotate(-20deg);
    pointer-events: none;
}

.search-input-wrap input {
    width: 100%;
    height: 66px;
    padding: 0 53px 0 63px;
    color: #1d3035;
    border: 2px solid rgba(255, 255, 255, 0.52);
    border-radius: 18px;
    outline: none;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 20px rgba(0, 62, 63, 0.1);
    font-size: 1.04rem;
}

.search-input-wrap input::placeholder {
    color: #6b777b;
}

.search-input-wrap input:focus {
    border-color: var(--lime);
    box-shadow: 0 0 0 4px rgba(157, 243, 67, 0.17), 0 8px 20px rgba(0, 62, 63, 0.1);
}

.keyword-suggestions {
    position: absolute;
    z-index: 12;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    overflow: hidden;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 15px;
    background: rgba(244, 255, 249, 0.97);
    box-shadow: 0 18px 36px rgba(0, 62, 63, 0.25);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.keyword-suggestion {
    display: flex;
    width: 100%;
    min-height: 49px;
    align-items: center;
    gap: 11px;
    padding: 8px 11px;
    color: #184e47;
    border-radius: 10px;
    background: transparent;
    text-align: left;
}

.keyword-suggestion:hover,
.keyword-suggestion:focus-visible {
    color: #0b6247;
    background: rgba(157, 243, 67, 0.2);
    outline: none;
    transform: translateX(2px);
}

.keyword-suggestion-icon {
    display: grid;
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    place-items: center;
    color: #158557;
    border-radius: 50%;
    background: rgba(32, 177, 111, 0.15);
    font-size: 1.05rem;
}

.keyword-suggestion-copy {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.keyword-suggestion-copy strong {
    overflow: hidden;
    font-size: 0.84rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.keyword-suggestion-copy small {
    color: #66827b;
    font-size: 0.68rem;
    font-weight: 600;
}

.clear-search {
    position: absolute;
    right: 17px;
    display: grid;
    width: 28px;
    height: 28px;
    padding: 0;
    place-items: center;
    color: #718084;
    border-radius: 50%;
    background: transparent;
    font-size: 1.4rem;
    line-height: 1;
}

.clear-search:hover {
    color: #1f6b5d;
    background: rgba(20, 143, 107, 0.12);
}

.primary-button,
.search-button,
.gallery-button,
.download-all-button,
.download-selected-button,
.pause-download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
}

.search-button {
    min-width: 212px;
    padding: 0 25px;
    color: #ffffff;
    border-radius: 17px;
    background: linear-gradient(135deg, #11c66a, #00a94f);
    box-shadow: 0 11px 22px rgba(0, 120, 65, 0.28);
    font-size: 1.02rem;
    font-weight: 800;
}

.search-button:hover,
.gallery-button:hover,
.download-all-button:hover,
.download-selected-button:hover,
.pause-download-button:hover {
    box-shadow: 0 15px 27px rgba(0, 120, 65, 0.35);
    transform: translateY(-2px);
}

.search-button:disabled,
.gallery-button:disabled,
.download-all-button:disabled,
.download-selected-button:disabled,
.pause-download-button:disabled {
    cursor: not-allowed;
    opacity: 0.53;
    transform: none;
}

.button-icon {
    font-size: 1.8rem;
    line-height: 1;
    transform: rotate(-20deg);
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(5, 68, 74, 0.22);
}

.filter-field {
    min-width: 0;
}

.filter-field label {
    display: flex;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.79rem;
    font-weight: 700;
    text-align: center;
}

.filter-field label em {
    color: rgba(255, 255, 255, 0.61);
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 500;
}

.field-icon {
    color: var(--lime);
    font-size: 1.12rem;
}

.filter-field select,
.filter-field input {
    width: 100%;
    height: 49px;
    margin-top: 3px;
    padding: 0 31px 0 13px;
    color: #f8fffb;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 13px;
    outline: 0;
    background-color: rgba(224, 255, 239, 0.17);
    font-size: 0.88rem;
    font-weight: 650;
}

.filter-field input {
    padding-right: 13px;
}

.filter-field input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.filter-field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #f8fff9 50%), linear-gradient(135deg, #f8fff9 50%, transparent 50%);
    background-position: calc(100% - 17px) 21px, calc(100% - 12px) 21px;
    background-repeat: no-repeat;
    background-size: 5px 5px, 5px 5px;
}

.filter-field select option {
    color: #193e3e;
    background: #edfff5;
}

.filter-field select:hover,
.filter-field input:hover,
.filter-field select:focus,
.filter-field input:focus {
    border-color: rgba(157, 243, 67, 0.66);
    background-color: rgba(224, 255, 239, 0.24);
}

.search-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.download-all-button,
.download-selected-button,
.pause-download-button {
    min-width: 255px;
    min-height: 68px;
    padding: 10px 20px;
    color: #ffffff;
    border-radius: 16px;
    text-align: left;
}

.gallery-button {
    min-width: 225px;
    min-height: 68px;
    padding: 10px 20px;
    color: #ffffff;
    border: 1px solid rgba(157, 243, 67, 0.45);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(19, 132, 129, 0.86), rgba(11, 103, 100, 0.76));
    box-shadow: 0 11px 22px rgba(0, 70, 82, 0.22);
    text-align: left;
}

.download-all-button {
    background: linear-gradient(135deg, #0792f1, #0875dc);
    box-shadow: 0 11px 22px rgba(0, 94, 180, 0.25);
}

.download-selected-button {
    border: 1px solid rgba(255, 255, 255, 0.78);
    background: linear-gradient(135deg, #12c963, #09aa57);
    box-shadow: 0 11px 22px rgba(0, 124, 63, 0.23);
}

.pause-download-button {
    min-width: 175px;
    border: 1px solid rgba(255, 255, 255, 0.44);
    background: rgba(14, 78, 84, 0.4);
}

.action-icon {
    min-width: 35px;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
    text-align: center;
}

.download-all-button strong,
.download-selected-button strong,
.gallery-button strong,
.pause-download-button strong {
    display: block;
    font-size: 1.06rem;
    line-height: 1.18;
}

.download-all-button small,
.download-selected-button small,
.gallery-button small,
.pause-download-button small {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.75rem;
    font-weight: 500;
}

.status-row {
    display: flex;
    min-height: 24px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 17px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.82rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 4px rgba(157, 243, 67, 0.12), 0 0 12px rgba(157, 243, 67, 0.72);
}

.status-dot.is-loading {
    animation: pulse 1s infinite ease-in-out;
    background: #f4d65c;
}

.status-dot.is-error {
    background: #ff9f72;
    box-shadow: 0 0 0 4px rgba(255, 159, 114, 0.13), 0 0 12px rgba(255, 159, 114, 0.68);
}

.status-time {
    color: rgba(255, 255, 255, 0.6);
}

.progress-track {
    height: 5px;
    overflow: hidden;
    margin-top: 13px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.2);
}

.progress-track span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #71e640, #a8ff53, #2aaaf5);
    transition: width 160ms ease;
}

.progress-track.is-indeterminate span {
    width: 40%;
    animation: progress-slide 1.2s infinite ease-in-out;
}

.source-panel {
    position: relative;
    z-index: 1;
    width: min(100% - 38px, 1090px);
    margin: 22px auto 0;
    padding: 18px 22px 20px;
    border-radius: 22px;
    text-align: center;
}

.source-panel p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.87rem;
}

.source-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
}

.source-pill {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 11px;
    background: rgba(13, 66, 68, 0.33);
    font-size: 0.79rem;
    font-weight: 650;
}

.source-pill b {
    display: grid;
    width: 17px;
    height: 17px;
    place-items: center;
    color: #ffffff;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    font-size: 0.68rem;
}

.source-pill.is-used {
    border-color: rgba(157, 243, 67, 0.68);
    background: rgba(24, 156, 103, 0.54);
}

.source-pill.is-offline {
    opacity: 0.54;
}

.source-google b { background: #4285f4; }
.source-wikipedia b { background: #4d7bd7; }
.source-bing b { background: #008373; }
.source-yahoo b { background: #720e9e; }
.source-openverse b { background: #5d54c8; }
.source-flickr b { background: linear-gradient(90deg, #f34c9b 50%, #5a55e9 50%); }
.source-pexels b { background: #159b57; }
.source-pixabay b { background: #4f9e69; }
.source-unsplash b { background: #252525; }
.source-generated b { background: linear-gradient(135deg, #e8b84a, #ef6e72); }
.source-more { opacity: 0.75; }

.promise-ribbon {
    display: grid;
    grid-template-columns: 1fr 1.35fr 1fr;
    gap: 10px;
    margin: 20px auto 0;
}

.promise-card {
    display: flex;
    min-height: 71px;
    align-items: center;
    gap: 11px;
    padding: 12px 15px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    background: rgba(7, 57, 59, 0.34);
    box-shadow: 0 10px 25px rgba(0, 59, 57, 0.14);
    text-align: left;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.promise-card.promise-beautiful {
    justify-content: center;
    text-align: center;
}

.promise-icon {
    display: grid;
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    place-items: center;
    color: #0b694a;
    border-radius: 10px;
    background: var(--lime);
    box-shadow: 0 4px 13px rgba(0, 73, 47, 0.2);
    font-size: 1.15rem;
    font-weight: 900;
}

.promise-card strong,
.promise-card small {
    display: block;
}

.promise-card strong {
    font-size: 0.82rem;
    line-height: 1.22;
}

.promise-card small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.68rem;
    font-weight: 600;
}

.results-section {
    width: min(100% - 36px, 1410px);
    margin: 0 auto;
    padding: 40px 0 80px;
}

.results-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 19px;
}

.section-kicker {
    margin: 0 0 8px;
    color: var(--lime);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.results-heading h2,
.activity-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    letter-spacing: -0.04em;
    line-height: 1.08;
    text-shadow: 0 4px 14px rgba(0, 57, 63, 0.3);
}

.results-heading p:not(.section-kicker) {
    max-width: 650px;
    margin: 9px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.91rem;
}

.suggestion-panel {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0 0 16px;
    padding: 13px 15px;
    color: #ffffff;
    border: 1px solid rgba(157, 243, 67, 0.42);
    border-radius: 15px;
    background: rgba(12, 102, 91, 0.36);
    box-shadow: 0 11px 25px rgba(0, 65, 60, 0.15);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
}

.suggestion-panel-icon {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    place-items: center;
    color: #0e6d4d;
    border-radius: 10px;
    background: var(--lime);
    box-shadow: 0 5px 14px rgba(0, 75, 47, 0.2);
}

.suggestion-panel-content {
    min-width: 0;
}

.suggestion-panel-content > strong {
    display: block;
    color: #ffffff;
    font-size: 0.83rem;
    line-height: 1.35;
}

.suggestion-chip-list {
    display: flex;
    gap: 7px;
    margin-top: 9px;
    flex-wrap: wrap;
}

.suggestion-chip {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    color: #eafff0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    background: rgba(4, 77, 73, 0.39);
    font-size: 0.73rem;
    font-weight: 750;
}

.suggestion-chip:hover,
.suggestion-chip.is-correction {
    color: #0b513e;
    border-color: var(--lime);
    background: var(--lime);
    transform: translateY(-1px);
}

.results-meta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 14px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 999px;
    background: rgba(15, 91, 91, 0.38);
    font-size: 0.79rem;
    white-space: nowrap;
}

.meta-separator {
    color: var(--lime);
}

.results-toolbar {
    display: flex;
    min-height: 46px;
    align-items: center;
    gap: 13px;
    margin-bottom: 16px;
    padding: 9px 14px;
    color: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 14px;
    background: rgba(9, 78, 79, 0.28);
}

.select-all-control {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
}

.select-all-control input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.select-all-control span {
    display: grid;
    width: 19px;
    height: 19px;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
}

.select-all-control input:checked + span {
    border-color: var(--lime);
    background: var(--lime);
}

.select-all-control input:checked + span::after {
    width: 8px;
    height: 4px;
    border-bottom: 2px solid #0a6b4b;
    border-left: 2px solid #0a6b4b;
    content: "";
    transform: translateY(-1px) rotate(-45deg);
}

.toolbar-note {
    overflow: hidden;
    margin-left: auto;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.76rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.toolbar-button {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 9px;
    background: rgba(7, 72, 78, 0.28);
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.toolbar-button:hover {
    border-color: var(--lime);
    background: rgba(14, 137, 100, 0.4);
    transform: translateY(-1px);
}

.toolbar-download-all {
    color: #ffffff;
    border-color: rgba(111, 210, 255, 0.7);
    background: rgba(15, 126, 203, 0.58);
}

.toolbar-download-all:hover {
    border-color: #9fe3ff;
    background: rgba(13, 144, 224, 0.78);
}

.toolbar-download-all:disabled {
    cursor: not-allowed;
    opacity: 0.52;
    transform: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.empty-state {
    grid-column: 1 / -1;
    display: grid;
    min-height: 240px;
    place-items: center;
    align-content: center;
    padding: 34px 20px;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.21);
    border-radius: 22px;
    background: rgba(10, 87, 84, 0.28);
    text-align: center;
    backdrop-filter: blur(11px);
}

.empty-orb {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 13px;
    place-items: center;
    color: #126f5a;
    border: 7px solid rgba(255, 255, 255, 0.44);
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 8px 25px rgba(0, 73, 45, 0.3);
    font-size: 2rem;
    transform: rotate(-20deg);
}

.empty-state h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.18rem;
}

.empty-state p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.87rem;
}

.suggestion {
    padding: 0 3px;
    color: var(--lime);
    background: transparent;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.suggestion:hover {
    color: #ffffff;
}

.image-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 18px;
    background: rgba(8, 73, 76, 0.48);
    box-shadow: 0 14px 35px rgba(0, 62, 59, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    animation: card-in 420ms both ease-out;
    backdrop-filter: blur(10px);
}

.image-card:hover {
    border-color: rgba(157, 243, 67, 0.6);
    box-shadow: 0 20px 44px rgba(0, 60, 55, 0.3), 0 0 0 1px rgba(157, 243, 67, 0.12);
    transform: translateY(-4px);
}

.card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, rgba(196, 255, 229, 0.2), rgba(4, 91, 100, 0.45));
}

.card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 500ms ease, filter 500ms ease;
}

.image-card:hover .card-media img {
    filter: saturate(1.08);
    transform: scale(1.045);
}

.card-topline {
    position: absolute;
    top: 11px;
    right: 11px;
    left: 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    pointer-events: none;
}

.card-select,
.favorite-button {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.66);
    border-radius: 9px;
    background: rgba(9, 67, 70, 0.55);
    box-shadow: 0 4px 12px rgba(0, 50, 42, 0.24);
    backdrop-filter: blur(8px);
    pointer-events: auto;
}

.card-select input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.card-select span {
    width: 15px;
    height: 15px;
    border: 2px solid #ffffff;
    border-radius: 4px;
}

.card-select input:checked + span {
    border-color: var(--lime);
    background: var(--lime);
    box-shadow: inset 0 0 0 3px rgba(10, 106, 74, 0.82);
}

.favorite-button {
    color: #ffffff;
    font-size: 1.18rem;
}

.favorite-button:hover,
.favorite-button.is-favorite {
    color: var(--lime);
    border-color: var(--lime);
}

.source-badge {
    display: inline-flex;
    min-height: 25px;
    max-width: 150px;
    align-items: center;
    overflow: hidden;
    padding: 4px 8px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    background: rgba(4, 58, 63, 0.6);
    font-size: 0.67rem;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
    backdrop-filter: blur(8px);
}

.card-body {
    padding: 14px 14px 13px;
}

.card-title {
    display: -webkit-box;
    min-height: 39px;
    margin: 0;
    overflow: hidden;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 750;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.card-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 10px;
    margin: 12px 0;
}

.card-spec {
    min-width: 0;
}

.card-spec small {
    display: block;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.63rem;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-spec strong {
    display: block;
    overflow: hidden;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.72rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-download {
    display: inline-flex;
    min-height: 37px;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 9px;
    color: #073c32;
    border-radius: 10px;
    background: var(--lime);
    font-size: 0.78rem;
    font-weight: 800;
}

.card-download:hover {
    background: #c0ff7b;
    box-shadow: 0 8px 15px rgba(51, 145, 62, 0.23);
    transform: translateY(-1px);
}

.card-source {
    display: inline-flex;
    min-height: 37px;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    background: rgba(9, 66, 70, 0.35);
    font-size: 0.74rem;
    font-weight: 700;
}

.card-source:hover {
    border-color: var(--lime);
    color: var(--lime);
}

.skeleton-card {
    overflow: hidden;
    min-height: 330px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: rgba(13, 92, 87, 0.3);
}

.skeleton-block {
    position: relative;
    overflow: hidden;
    background: rgba(220, 255, 238, 0.16);
}

.skeleton-block::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.19), transparent);
    content: "";
    animation: shimmer 1.2s infinite;
    transform: translateX(-100%);
}

.skeleton-image {
    aspect-ratio: 4 / 3;
}

.skeleton-line {
    width: 78%;
    height: 14px;
    margin: 18px 14px 9px;
    border-radius: 7px;
}

.skeleton-line.short {
    width: 45%;
    margin-top: 0;
}

.activity-section {
    width: min(100% - 36px, 1160px);
    margin: 0 auto 70px;
}

.activity-card {
    padding: clamp(19px, 3vw, 29px);
    border-radius: 22px;
}

.activity-heading {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin-top: 22px;
}

.activity-column {
    min-height: 150px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 15px;
    background: rgba(10, 77, 78, 0.2);
}

.activity-column h3 {
    margin: 0 0 9px;
    color: #ffffff;
    font-size: 0.92rem;
}

.activity-list {
    display: grid;
    gap: 7px;
}

.activity-empty {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
}

.activity-item {
    display: flex;
    min-height: 40px;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    padding: 7px 9px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.76rem;
}

.activity-item strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.activity-item small {
    color: rgba(255, 255, 255, 0.56);
    white-space: nowrap;
}

.site-footer {
    display: flex;
    width: min(100% - 36px, 1410px);
    min-height: 68px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: rgba(255, 255, 255, 0.62);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.75rem;
}

.site-footer span:first-child {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 750;
}

.preview-modal {
    position: fixed;
    z-index: 20;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 22px;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 37, 42, 0.62);
    backdrop-filter: blur(8px);
}

.modal-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    width: min(100%, 1060px);
    max-height: min(92vh, 760px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 24px;
    background: rgba(15, 91, 93, 0.86);
    box-shadow: 0 30px 90px rgba(0, 35, 38, 0.45);
    animation: modal-in 250ms ease-out;
    backdrop-filter: blur(22px);
}

.modal-close {
    position: absolute;
    z-index: 2;
    top: 13px;
    right: 13px;
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    background: rgba(4, 59, 66, 0.55);
    font-size: 1.5rem;
    line-height: 1;
}

.modal-close:hover {
    color: var(--lime);
    transform: rotate(90deg);
}

.modal-image-wrap {
    display: grid;
    min-height: 390px;
    place-items: center;
    padding: 26px;
    background: rgba(1, 48, 53, 0.3);
}

.modal-image-wrap img {
    display: block;
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 13px;
}

.modal-details {
    overflow: auto;
    padding: 53px 28px 28px;
}

.modal-details h2 {
    display: -webkit-box;
    margin: 12px 0 9px;
    overflow: hidden;
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1.15;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.modal-details p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.85rem;
    line-height: 1.55;
}

.modal-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin: 21px 0;
}

.modal-spec {
    padding: 9px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
}

.modal-spec small,
.modal-spec strong {
    display: block;
}

.modal-spec small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.67rem;
}

.modal-spec strong {
    margin-top: 3px;
    color: #ffffff;
    font-size: 0.78rem;
}

.modal-actions {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

.modal-actions .primary-button {
    min-height: 42px;
    padding: 8px 15px;
    color: #0a4939;
    border-radius: 10px;
    background: var(--lime);
    font-size: 0.8rem;
    font-weight: 800;
}

.modal-actions .primary-button:hover {
    background: #c4ff83;
    transform: translateY(-1px);
}

.toast {
    position: fixed;
    z-index: 30;
    right: 20px;
    bottom: 20px;
    max-width: min(360px, calc(100vw - 40px));
    padding: 12px 15px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.27);
    border-radius: 12px;
    background: rgba(5, 68, 66, 0.9);
    box-shadow: 0 13px 35px rgba(0, 40, 38, 0.35);
    font-size: 0.8rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
}

.toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.contrast-mode .background-wash {
    background:
        linear-gradient(180deg, rgba(2, 41, 53, 0.56) 0%, rgba(0, 82, 86, 0.28) 48%, rgba(0, 80, 64, 0.4) 100%),
        linear-gradient(90deg, rgba(1, 43, 39, 0.22), transparent 30%, transparent 70%, rgba(1, 43, 39, 0.18));
}

.contrast-mode .glass-panel {
    border-color: rgba(255, 255, 255, 0.42);
    background: linear-gradient(145deg, rgba(35, 124, 126, 0.53), rgba(7, 73, 81, 0.41));
}

@keyframes pulse {
    0%, 100% { opacity: 0.45; transform: scale(0.82); }
    50% { opacity: 1; transform: scale(1.18); }
}

@keyframes progress-slide {
    0% { transform: translateX(-130%); }
    100% { transform: translateX(340%); }
}

@keyframes shimmer {
    100% { transform: translateX(100%); }
}

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

@keyframes modal-in {
    from { opacity: 0; transform: translateY(10px) scale(0.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1080px) {
    .site-header {
        width: min(100% - 34px, 1640px);
    }

    .main-nav {
        gap: 18px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .site-header {
        min-height: 78px;
    }

    .brand {
        min-width: 0;
    }

    .main-nav {
        position: absolute;
        top: 72px;
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 15px;
        background: rgba(9, 73, 77, 0.91);
        box-shadow: 0 18px 40px rgba(0, 50, 46, 0.3);
        backdrop-filter: blur(20px);
    }

    .main-nav.is-open {
        display: flex;
    }

    .nav-link {
        min-height: 44px;
        padding: 8px 12px;
        border-radius: 9px;
    }

    .nav-link:hover,
    .nav-link.is-active {
        background: rgba(157, 243, 67, 0.1);
    }

    .nav-link.is-active::after {
        right: auto;
        bottom: 8px;
        left: 0;
        width: 3px;
        height: 27px;
    }

    .mobile-menu-toggle {
        display: grid;
    }

    .header-actions {
        min-width: auto;
    }

    .filter-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .search-form {
        grid-template-columns: 1fr;
    }

    .search-button {
        min-height: 57px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .promise-ribbon {
        grid-template-columns: 1fr;
    }

    .promise-card.promise-beautiful {
        justify-content: flex-start;
        text-align: left;
    }

    .modal-card {
        grid-template-columns: 1fr;
        max-height: 92vh;
        overflow: auto;
    }

    .modal-image-wrap {
        min-height: 280px;
        padding: 18px;
    }

    .modal-image-wrap img {
        max-height: 42vh;
    }

    .modal-details {
        overflow: visible;
        padding: 23px 22px 24px;
    }
}

@media (max-width: 560px) {
    .site-header {
        width: min(100% - 24px, 1640px);
        gap: 10px;
    }

    .brand-mark {
        width: 45px;
        height: 45px;
        flex-basis: 45px;
    }

    .brand-name {
        font-size: 1.42rem;
    }

    .brand-tagline {
        max-width: 170px;
        overflow: hidden;
        font-size: 0.64rem;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .contrast-toggle {
        display: none;
    }

    .switch {
        width: 52px;
        height: 30px;
    }

    .switch span {
        width: 22px;
        height: 22px;
    }

    .switch[aria-checked="true"] span {
        transform: translateX(22px);
    }

    .hero-section,
    .results-section,
    .activity-section,
    .site-footer {
        width: min(100% - 24px, 1410px);
    }

    .hero-section {
        padding-top: 22px;
    }

    .eyebrow {
        font-size: 0.68rem;
        letter-spacing: 0.11em;
    }

    .eyebrow-line {
        width: 18px;
    }

    .hero-heading h1 {
        font-size: clamp(2.25rem, 12vw, 3.25rem);
    }

    .hero-subtitle {
        margin-top: 13px;
        font-size: 0.94rem;
    }

    .hero-subtitle i {
        padding: 0 3px;
    }

    .feature-pills {
        gap: 6px;
        margin-bottom: 19px;
    }

    .feature-pills span {
        min-height: 30px;
        padding: 5px 9px;
        font-size: 0.68rem;
    }

    .search-panel {
        padding: 14px;
        border-radius: 20px;
    }

    .search-input-wrap input {
        height: 58px;
        padding-left: 53px;
        font-size: 0.91rem;
    }

    .search-icon {
        left: 17px;
        font-size: 1.75rem;
    }

    .filter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
        padding: 10px;
    }

    .filter-field label {
        justify-content: flex-start;
        font-size: 0.7rem;
    }

    .filter-field select,
    .filter-field input {
        height: 44px;
        padding-left: 10px;
        font-size: 0.74rem;
    }

    .filter-field select {
        background-position: calc(100% - 13px) 18px, calc(100% - 9px) 18px;
    }

    .search-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .download-all-button,
    .download-selected-button,
    .gallery-button,
    .pause-download-button {
        width: 100%;
        min-width: 0;
        min-height: 58px;
    }

    .status-row {
        align-items: start;
        text-align: left;
    }

    .status-time {
        display: none;
    }

    .source-panel {
        width: calc(100% - 14px);
        padding: 14px 10px 15px;
    }

    .source-panel p {
        font-size: 0.78rem;
    }

    .source-pill {
        min-height: 29px;
        padding: 5px 8px;
        font-size: 0.68rem;
    }

    .source-pill b {
        width: 14px;
        height: 14px;
        font-size: 0.57rem;
    }

    .header-motto {
        top: calc(100% + 5px);
        width: 88px;
        font-size: 0.56rem;
        line-height: 0.92;
    }

    .header-motto span:nth-child(2) {
        margin-left: 6px;
    }

    .header-motto span:nth-child(4) {
        margin-left: 8px;
    }

    .promise-ribbon {
        gap: 8px;
        margin-top: 14px;
    }

    .promise-card {
        min-height: 59px;
        padding: 10px 12px;
    }

    .promise-card strong {
        font-size: 0.76rem;
    }

    .promise-card small {
        font-size: 0.63rem;
    }

    .results-section {
        padding-top: 27px;
    }

    .results-heading {
        display: block;
    }

    .results-meta {
        margin-top: 14px;
    }

    .results-toolbar {
        flex-wrap: wrap;
    }

    .toolbar-note {
        width: 100%;
        margin-left: 0;
        white-space: normal;
    }

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

    .image-card {
        display: grid;
        grid-template-columns: minmax(132px, 0.76fr) minmax(0, 1.24fr);
    }

    .card-media {
        height: 100%;
        min-height: 190px;
        aspect-ratio: auto;
    }

    .card-body {
        display: flex;
        min-width: 0;
        flex-direction: column;
        justify-content: center;
        padding: 12px;
    }

    .card-title {
        min-height: 0;
        font-size: 0.84rem;
    }

    .card-specs {
        margin: 9px 0;
    }

    .card-actions {
        margin-top: auto;
    }

    .card-source {
        display: none;
    }

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

    .activity-heading {
        display: block;
    }

    .activity-heading .toolbar-button {
        margin-top: 13px;
    }

    .site-footer {
        min-height: 76px;
        flex-wrap: wrap;
        justify-content: center;
        padding: 15px 0;
        text-align: center;
    }
}

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