:root {
    color-scheme: dark;
    --bg: #060711;
    --bg-soft: #0c1022;
    --panel: rgba(16, 21, 42, 0.86);
    --panel-strong: rgba(22, 28, 55, 0.96);
    --border: rgba(255, 255, 255, 0.1);
    --text: #f8fafc;
    --muted: #a7b0c5;
    --accent: #facc15;
    --accent-2: #ec4899;
    --accent-3: #8b5cf6;
    --shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
    --radius: 22px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(236, 72, 153, 0.18), transparent 35rem),
        radial-gradient(circle at top right, rgba(250, 204, 21, 0.12), transparent 28rem),
        linear-gradient(180deg, #050611 0%, #0c1022 45%, #050611 100%);
    color: var(--text);
}

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

img {
    display: block;
    width: 100%;
}

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.94), rgba(88, 28, 135, 0.92), rgba(131, 24, 67, 0.92));
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(18px);
}

.nav-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 900;
    letter-spacing: -0.04em;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    color: #111827;
    background: linear-gradient(135deg, var(--accent), #fb7185);
    box-shadow: 0 12px 26px rgba(250, 204, 21, 0.22);
}

.brand span:last-child {
    background: linear-gradient(90deg, #fde68a, #f9a8d4, #c4b5fd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
}

.desktop-nav a,
.nav-drop > button {
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav .is-active,
.nav-drop:hover > button {
    color: var(--accent);
}

.nav-drop {
    position: relative;
}

.nav-drop-panel {
    position: absolute;
    top: 150%;
    left: 50%;
    width: 220px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(9, 12, 25, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-drop:hover .nav-drop-panel {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.nav-drop-panel a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--muted);
}

.nav-drop-panel a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

.header-search {
    margin-left: auto;
    display: flex;
    align-items: center;
    min-width: 280px;
}

.header-search input,
.mobile-search input,
.big-search input,
.filter-bar input {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.big-search input:focus,
.filter-bar input:focus {
    border-color: rgba(250, 204, 21, 0.7);
    background: rgba(255, 255, 255, 0.13);
    box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.12);
}

.header-search input {
    height: 40px;
    padding: 0 14px;
    border-radius: 999px 0 0 999px;
}

.header-search button,
.mobile-search button,
.big-search button,
.filter-bar button {
    border: 0;
    cursor: pointer;
    color: #111827;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), #fb7185);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.big-search button:hover,
.filter-bar button:hover,
.btn:hover,
.category-tile:hover,
.movie-card:hover {
    transform: translateY(-2px);
}

.header-search button {
    height: 40px;
    padding: 0 16px;
    border-radius: 0 999px 999px 0;
}

.mobile-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.1);
}

.mobile-panel {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 22px 18px;
}

.mobile-search {
    display: flex;
    margin-bottom: 14px;
}

.mobile-search input {
    padding: 12px 14px;
    border-radius: 14px 0 0 14px;
}

.mobile-search button {
    padding: 0 18px;
    border-radius: 0 14px 14px 0;
}

.mobile-panel nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.mobile-panel a {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.07);
}

.hero {
    position: relative;
    max-width: 1440px;
    min-height: 680px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0 0 38px 38px;
    box-shadow: var(--shadow);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 40px;
    align-items: center;
    padding: 90px max(24px, calc((100vw - 1220px) / 2)) 140px;
    background-position: center;
    background-size: cover;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.02);
    transition: opacity 0.7s ease, transform 0.7s ease, visibility 0.7s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-content {
    max-width: 760px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.detail-intro h1 {
    margin: 0;
    max-width: 860px;
    font-size: clamp(2.3rem, 6vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.08em;
}

.hero p,
.page-hero p,
.detail-one-line {
    max-width: 720px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    line-height: 1.8;
}

.hero-tags,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags {
    margin-top: 24px;
}

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border: 1px solid rgba(250, 204, 21, 0.25);
    border-radius: 999px;
    color: #fde68a;
    background: rgba(250, 204, 21, 0.1);
    font-size: 0.82rem;
    font-weight: 800;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
    color: #111827;
    background: linear-gradient(135deg, var(--accent), #fb7185);
    box-shadow: 0 16px 34px rgba(250, 204, 21, 0.22);
}

.btn.ghost {
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

.hero-poster {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.46);
    transform: rotate(2deg);
}

.hero-poster img {
    aspect-ratio: 3 / 4.2;
    object-fit: cover;
}

.hero-dots {
    position: absolute;
    right: max(24px, calc((100vw - 1220px) / 2));
    bottom: 34px;
    left: max(24px, calc((100vw - 1220px) / 2));
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.hero-dot {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.74);
    background: rgba(9, 12, 25, 0.72);
    cursor: pointer;
    text-align: left;
    backdrop-filter: blur(14px);
}

.hero-dot.is-active {
    border-color: rgba(250, 204, 21, 0.72);
    color: var(--text);
    background: rgba(250, 204, 21, 0.12);
}

.hero-dot img {
    width: 44px;
    height: 58px;
    border-radius: 12px;
    object-fit: cover;
}

.hero-dot span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 800;
}

.section-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 70px 22px 0;
}

.intro-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
    gap: 24px;
    align-items: center;
}

.intro-panel h2,
.section-head h2,
.side-card h2,
.story-card h2,
.site-footer h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(1.45rem, 3vw, 2.45rem);
    letter-spacing: -0.04em;
}

.intro-panel p {
    margin: 16px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.big-search {
    display: flex;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.big-search input {
    min-height: 50px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px 0 0 999px;
    background: transparent;
}

.big-search button {
    padding: 0 26px;
    border-radius: 999px;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
}

.section-head.compact {
    align-items: center;
}

.section-head a {
    color: #fde68a;
    font-weight: 900;
}

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

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

.category-tile {
    position: relative;
    min-height: 200px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--panel);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.23);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-tile:hover {
    border-color: rgba(250, 204, 21, 0.5);
}

.category-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.42;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.category-tile:hover img {
    transform: scale(1.08);
    opacity: 0.58;
}

.category-tile::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent, rgba(5, 6, 17, 0.94));
}

.category-tile span {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 1;
}

.category-tile strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.35rem;
    font-weight: 900;
}

.category-tile em {
    display: block;
    color: rgba(255, 255, 255, 0.76);
    font-style: normal;
    line-height: 1.55;
}

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
    border-color: rgba(250, 204, 21, 0.5);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--bg-soft);
}

.poster-link img {
    aspect-ratio: 3 / 4.25;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.movie-card:hover .poster-link img {
    transform: scale(1.07);
}

.poster-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #111827;
    background: var(--accent);
    font-size: 0.76rem;
    font-weight: 900;
}

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

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 0.78rem;
}

.movie-card h2 {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.35;
}

.movie-card h2 a:hover {
    color: var(--accent);
}

.movie-card p {
    min-height: 4.6em;
    margin: 10px 0 12px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.split-section {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 22px;
}

.panel-card,
.story-card,
.side-card,
.player-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25);
}

.panel-card,
.story-card,
.side-card {
    padding: 24px;
}

.rank-list,
.side-rank-list {
    display: grid;
    gap: 12px;
}

.rank-row {
    display: grid;
    grid-template-columns: 42px 54px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.055);
    transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
    transform: translateX(3px);
    background: rgba(250, 204, 21, 0.12);
}

.rank-number {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 900;
}

.rank-row img {
    width: 54px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
}

.rank-info {
    min-width: 0;
}

.rank-info strong,
.rank-info em {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-info strong {
    font-weight: 900;
}

.rank-info em {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.82rem;
    font-style: normal;
}

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

.page-hero,
.detail-hero {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 96px max(24px, calc((100vw - 1220px) / 2));
    background-position: center;
    background-size: cover;
    border-radius: 0 0 38px 38px;
    box-shadow: var(--shadow);
}

.page-hero.compact-hero {
    background:
        radial-gradient(circle at 20% 10%, rgba(250, 204, 21, 0.16), transparent 25rem),
        radial-gradient(circle at 80% 0%, rgba(236, 72, 153, 0.16), transparent 28rem),
        linear-gradient(135deg, rgba(9, 12, 25, 0.98), rgba(34, 12, 64, 0.88));
}

.filter-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
}

.filter-bar input {
    min-height: 46px;
    padding: 0 16px;
    border-radius: 14px;
}

.filter-bar button {
    min-width: 88px;
    padding: 0 16px;
    border-radius: 14px;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.filter-pills button {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 14px;
    cursor: pointer;
}

.filter-pills button.is-active {
    color: #111827;
    border-color: transparent;
    background: var(--accent);
}

.detail-hero {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 36px;
    align-items: center;
    min-height: 560px;
}

.detail-cover {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.detail-cover img {
    aspect-ratio: 3 / 4.25;
    object-fit: cover;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--muted);
}

.breadcrumb a {
    color: #fde68a;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.detail-meta span {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.08);
    font-weight: 800;
}

.tag-row.large {
    margin-top: 18px;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
}

.detail-main {
    display: grid;
    gap: 24px;
}

.player-card {
    overflow: hidden;
    padding: 0;
}

.player-shell {
    position: relative;
    width: 100%;
    background: #000;
}

.player-shell video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    cursor: pointer;
}

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    border: 0;
    color: var(--text);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.68));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-icon {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    padding-left: 4px;
    border-radius: 999px;
    color: #111827;
    background: linear-gradient(135deg, var(--accent), #fb7185);
    box-shadow: 0 20px 46px rgba(250, 204, 21, 0.28);
    font-size: 2rem;
}

.story-card p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.02rem;
    line-height: 1.9;
}

.detail-side {
    display: grid;
    align-content: start;
    gap: 18px;
}

.side-card dl {
    margin: 16px 0 0;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px 14px;
}

.side-card dt {
    color: var(--muted);
}

.side-card dd {
    margin: 0;
    color: var(--text);
    font-weight: 800;
}

.site-footer {
    margin-top: 80px;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(12, 16, 34, 0.95), rgba(0, 0, 0, 0.98));
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 46px 22px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 28px;
}

.site-footer p {
    color: var(--muted);
    line-height: 1.8;
}

.site-footer a:hover {
    color: var(--accent);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 22px 32px;
    color: rgba(255, 255, 255, 0.52);
    border-top: 1px solid var(--border);
    font-size: 0.92rem;
}

.is-filtered-out {
    display: none !important;
}

@media (max-width: 1180px) {
    .movie-grid,
    .ranking-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

    .split-section,
    .detail-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .desktop-nav,
    .header-search {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        min-height: 760px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        align-content: start;
        padding-top: 76px;
        padding-bottom: 180px;
    }

    .hero-poster {
        width: min(260px, 60vw);
        transform: none;
    }

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

    .intro-panel,
    .detail-hero {
        grid-template-columns: 1fr;
    }

    .detail-cover {
        width: min(280px, 68vw);
    }

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

@media (max-width: 720px) {
    .nav-shell {
        padding-inline: 16px;
    }

    .hero,
    .page-hero,
    .detail-hero {
        border-radius: 0 0 26px 26px;
    }

    .section-wrap {
        padding: 48px 16px 0;
    }

    .movie-grid,
    .ranking-grid,
    .mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .category-grid,
    .category-grid.large {
        grid-template-columns: 1fr;
    }

    .filter-bar,
    .big-search {
        flex-direction: column;
        border-radius: 20px;
    }

    .big-search input,
    .big-search button {
        border-radius: 14px;
    }

    .filter-bar button {
        min-height: 42px;
    }

    .movie-card-body {
        padding: 12px;
    }

    .movie-card p {
        min-height: auto;
    }

    .hero-dot span {
        display: none;
    }

    .hero-dot {
        justify-content: center;
    }

    .side-card dl {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 460px) {
    .movie-grid,
    .ranking-grid,
    .mini-grid {
        grid-template-columns: 1fr;
    }

    .hero-dots {
        grid-template-columns: repeat(5, 1fr);
    }

    .hero-dot {
        padding: 5px;
    }

    .hero-dot img {
        width: 36px;
        height: 48px;
    }
}
