:root {
    color-scheme: light;
    --bg: #f8fafc;
    --panel: #ffffff;
    --panel-soft: #f1f5f9;
    --text: #111827;
    --muted: #64748b;
    --line: #e5e7eb;
    --teal: #0d9488;
    --teal-dark: #0f766e;
    --teal-soft: #ccfbf1;
    --blue: #2563eb;
    --shadow: 0 20px 40px rgba(15, 23, 42, 0.10);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
    backdrop-filter: blur(16px);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-text {
    font-size: 1.2rem;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    color: #fff;
    box-shadow: 0 10px 24px rgba(13, 148, 136, 0.25);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #334155;
    font-weight: 600;
}

.desktop-nav a,
.nav-dropdown button {
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.desktop-nav a:hover,
.nav-dropdown button:hover,
.brand:hover {
    color: var(--teal-dark);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: -16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(128px, 1fr));
    gap: 4px;
    min-width: 320px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 0.92rem;
}

.nav-dropdown-menu a:hover {
    background: var(--teal-soft);
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-search input {
    width: 240px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    outline: 0;
    background: #fff;
}

.nav-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus,
.search-panel input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.12);
}

.nav-search button,
.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 0;
    border-radius: 12px;
    background: var(--teal);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.nav-search button:hover,
.primary-button:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
}

.primary-button.small {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.92rem;
}

.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: 0.2s ease;
}

.ghost-button:hover {
    background: rgba(255, 255, 255, 0.18);
}

.mobile-menu-button {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--panel-soft);
    align-items: center;
    justify-content: center;
}

.mobile-menu-button span {
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 12px 16px 20px;
    border-top: 1px solid var(--line);
    background: #fff;
}

.mobile-nav.is-open {
    display: grid;
}

.mobile-nav a {
    padding: 10px 12px;
    border-radius: 12px;
    background: var(--panel-soft);
    color: #334155;
    font-weight: 700;
}

.hero-carousel {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background: #0f172a;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 20%, rgba(20, 184, 166, 0.24), transparent 32%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.76) 45%, rgba(2, 6, 23, 0.18));
}

.hero-content {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
}

.hero-copy {
    max-width: 680px;
    color: #fff;
}

.hero-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    width: max-content;
    margin-bottom: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--teal);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 800;
}

.hero-copy h1,
.page-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2.4rem, 6vw, 4.7rem);
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.hero-copy p,
.page-hero p {
    max-width: 760px;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.12rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0;
    color: rgba(255, 255, 255, 0.82);
}

.hero-meta span,
.hero-meta a,
.badge-row span {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
}

.dark-meta span,
.dark-meta a {
    background: #eef2ff;
    color: #334155;
}

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

.tag-row span,
.detail-tags a {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    background: #ecfeff;
    color: #0f766e;
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-tags span {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

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

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.46);
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transform: translateY(-50%);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 30px;
    z-index: 4;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.hero-dots button {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.54);
    cursor: pointer;
    transition: 0.2s ease;
}

.hero-dots button.is-active {
    width: 34px;
    background: #fff;
}

.section-block {
    padding: 64px 0;
}

.section-soft {
    background: #eef2f7;
}

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

.section-heading h2,
.panel-title h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    letter-spacing: -0.035em;
}

.section-heading p {
    margin: 8px 0 0;
    color: var(--muted);
}

.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
    border-radius: 12px;
    background: var(--teal-soft);
    color: var(--teal-dark);
    font-weight: 900;
}

.section-link {
    color: var(--teal-dark);
    font-weight: 800;
}

.full-link {
    display: block;
    margin-top: 18px;
    text-align: center;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
    transition: 0.25s ease;
}

.movie-card:hover,
.wide-card:hover,
.category-card:hover,
.category-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.movie-cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #cbd5e1;
}

.movie-cover img,
.wide-card img,
.category-thumb-stack img,
.poster-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.movie-card:hover .movie-cover img,
.wide-card:hover img,
.category-card:hover img {
    transform: scale(1.07);
}

.cover-badge,
.cover-year {
    position: absolute;
    top: 10px;
    display: inline-flex;
    padding: 5px 8px;
    border-radius: 8px;
    background: var(--teal);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
}

.cover-badge {
    left: 10px;
}

.cover-year {
    top: auto;
    right: 10px;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.72);
}

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

.movie-title {
    display: -webkit-box;
    overflow: hidden;
    min-height: 3.1em;
    margin-bottom: 8px;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-title:hover {
    color: var(--teal-dark);
}

.movie-card-body p,
.wide-card p,
.category-card p,
.category-overview-card p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 0.93rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    color: #475569;
    font-size: 0.82rem;
    font-weight: 700;
}

.wide-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.wide-card {
    position: relative;
    display: grid;
    min-height: 300px;
    overflow: hidden;
    border-radius: 22px;
    background: #0f172a;
    color: #fff;
    box-shadow: var(--shadow);
    transition: 0.25s ease;
}

.wide-card img {
    position: absolute;
    inset: 0;
    opacity: 0.72;
}

.wide-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.88));
}

.wide-card > div {
    position: relative;
    z-index: 2;
    align-self: end;
    padding: 26px;
}

.wide-card h3 {
    margin: 8px 0;
    font-size: 1.35rem;
    line-height: 1.25;
}

.wide-card p {
    color: rgba(255, 255, 255, 0.8);
}

.wide-card .tag-row span {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

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

.category-card,
.category-overview-card {
    display: grid;
    gap: 18px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    transition: 0.25s ease;
}

.category-thumb-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    overflow: hidden;
    min-height: 150px;
    border-radius: 16px;
    background: #cbd5e1;
}

.category-thumb-stack.large {
    min-height: 220px;
}

.category-card span,
.category-overview-card .eyebrow {
    margin-bottom: 8px;
    background: var(--teal-soft);
    color: var(--teal-dark);
}

.category-card h3,
.category-overview-card h2 {
    margin: 0 0 8px;
    font-size: 1.2rem;
}

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

.category-overview-card {
    grid-template-columns: 220px 1fr;
}

.mini-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 16px;
}

.mini-links a {
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--panel-soft);
    color: #334155;
    font-size: 0.82rem;
}

.two-column-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 30px;
    align-items: start;
}

.ranking-panel,
.side-card,
.content-card,
.search-panel,
.filter-bar {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.ranking-panel {
    position: sticky;
    top: 92px;
    padding: 22px;
}

.panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

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

.rank-row,
.rank-table-row {
    display: grid;
    align-items: center;
    gap: 12px;
    border-radius: 14px;
    transition: 0.2s ease;
}

.rank-row {
    grid-template-columns: 34px 58px 1fr;
    padding: 8px;
}

.rank-row:hover,
.rank-table-row:hover {
    background: #ecfeff;
}

.rank-row img,
.rank-table-row img {
    width: 58px;
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
    background: #cbd5e1;
}

.rank-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: #0f172a;
    color: #fff;
    font-weight: 900;
}

.rank-title {
    font-weight: 800;
}

.rank-meta {
    grid-column: 3;
    color: var(--muted);
    font-size: 0.82rem;
}

.page-hero {
    padding: 72px 0;
    background:
        radial-gradient(circle at 80% 10%, rgba(45, 212, 191, 0.24), transparent 30%),
        linear-gradient(135deg, #0f766e, #1d4ed8);
    color: #fff;
}

.category-hero {
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 30%),
        linear-gradient(135deg, #0f766e, #0f172a);
}

.ranking-hero {
    background:
        radial-gradient(circle at 80% 10%, rgba(251, 191, 36, 0.22), transparent 34%),
        linear-gradient(135deg, #111827, #0f766e);
}

.search-hero {
    background:
        radial-gradient(circle at 70% 20%, rgba(59, 130, 246, 0.28), transparent 34%),
        linear-gradient(135deg, #0f172a, #0f766e);
}

.breadcrumb,
.breadcrumb-line a {
    color: #d1fae5;
    font-weight: 800;
}

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

.breadcrumb-line a {
    color: var(--teal-dark);
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) repeat(2, minmax(140px, 180px)) auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 28px;
    padding: 16px;
}

.full-filter {
    grid-template-columns: minmax(220px, 1fr) repeat(4, minmax(120px, 160px)) auto;
}

.filter-bar input,
.filter-bar select,
.search-panel input {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    outline: 0;
}

.filter-count,
.search-summary {
    color: var(--muted);
    font-weight: 800;
}

.empty-state {
    padding: 60px 20px;
    border: 1px dashed #cbd5e1;
    border-radius: 22px;
    text-align: center;
    color: var(--muted);
}

.rank-table {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
}

.rank-table-row {
    grid-template-columns: 48px 72px 1.3fr 0.8fr 0.5fr 1fr;
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
}

.rank-table-row:last-child {
    border-bottom: 0;
}

.rank-table-title {
    font-weight: 900;
}

.search-page-shell {
    display: grid;
    gap: 24px;
}

.search-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 18px;
}

.player-section {
    background: #020617;
    padding: 28px 0;
}

.player-container {
    width: min(1280px, calc(100% - 32px));
}

.player-frame {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #000;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

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

.player-start {
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border: 0;
    border-radius: 999px;
    background: rgba(13, 148, 136, 0.95);
    color: #fff;
    font-size: 1.05rem;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: 0.2s ease;
}

.player-start:hover {
    background: var(--teal-dark);
    transform: translate(-50%, -50%) scale(1.04);
}

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

.player-status {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.6);
    color: #e2e8f0;
    font-size: 0.82rem;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 30px;
    align-items: start;
}

.detail-main {
    min-width: 0;
}

.title-block {
    margin-bottom: 26px;
}

.title-block h1 {
    margin: 0 0 14px;
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.title-block p {
    margin: 0;
    color: var(--muted);
    font-size: 1.1rem;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.badge-row span {
    background: #ecfeff;
    color: var(--teal-dark);
    font-weight: 800;
}

.content-card {
    padding: 26px;
    margin-bottom: 22px;
}

.content-card h2,
.side-card h3 {
    margin: 0 0 14px;
    font-size: 1.45rem;
    letter-spacing: -0.025em;
}

.content-card p {
    margin: 0;
    color: #334155;
    white-space: pre-line;
}

.detail-sidebar {
    position: sticky;
    top: 94px;
    display: grid;
    gap: 18px;
}

.side-card {
    padding: 18px;
}

.poster-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    margin-bottom: 14px;
    border-radius: 16px;
    background: #cbd5e1;
}

.side-card dl {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px 12px;
    margin: 0;
}

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

.side-card dd {
    margin: 0;
    color: #1f2937;
}

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

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

.movie-card-compact .movie-title {
    min-height: auto;
    font-size: 0.95rem;
}

.movie-card-compact p,
.movie-card-compact .tag-row {
    display: none;
}

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

.site-footer {
    background: #0f172a;
    color: #cbd5e1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 34px;
    padding: 52px 0;
}

.footer-brand {
    margin-bottom: 16px;
    color: #fff;
    font-size: 1.2rem;
}

.site-footer p {
    max-width: 520px;
    margin: 0;
    color: #94a3b8;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: #fff;
}

.site-footer a:not(.footer-brand) {
    display: block;
    margin: 8px 0;
    color: #cbd5e1;
}

.site-footer a:hover {
    color: #5eead4;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    gap: 18px;
    padding: 18px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    color: #94a3b8;
    font-size: 0.9rem;
}

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

    .mobile-menu-button {
        display: inline-flex;
    }

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

    .wide-grid,
    .two-column-layout,
    .detail-layout,
    .footer-grid,
    .category-overview-grid,
    .category-overview-card {
        grid-template-columns: 1fr;
    }

    .ranking-panel,
    .detail-sidebar {
        position: static;
    }

    .full-filter,
    .filter-bar {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .container,
    .player-container {
        width: min(100% - 24px, 1180px);
    }

    .hero-carousel,
    .hero-content {
        min-height: 620px;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: 2.35rem;
    }

    .hero-arrow {
        display: none;
    }

    .section-block {
        padding: 42px 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .movie-grid,
    .home-grid,
    .category-grid,
    .wide-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .full-filter,
    .filter-bar,
    .search-panel,
    .rank-table-row {
        grid-template-columns: 1fr;
    }

    .rank-table-row img {
        width: 100%;
        height: 160px;
    }

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

    .player-start {
        padding: 12px 18px;
    }
}
