:root {
    --sky-50: #f0f9ff;
    --sky-100: #e0f2fe;
    --sky-500: #0ea5e9;
    --sky-600: #0284c7;
    --sky-700: #0369a1;
    --cyan-50: #ecfeff;
    --orange-50: #fff7ed;
    --amber-50: #fffbeb;
    --red-500: #ef4444;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.18);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--gray-900);
    background: var(--gray-50);
    line-height: 1.6;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(16px);
}

.header-inner {
    max-width: var(--max);
    height: 68px;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    align-items: center;
    gap: 26px;
}

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

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--sky-500), var(--sky-700));
    box-shadow: 0 8px 18px rgba(2, 132, 199, 0.28);
    font-size: 13px;
}

.brand-name {
    font-size: 21px;
}

.main-nav {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--gray-700);
    font-weight: 600;
}

.main-nav a {
    position: relative;
    padding: 22px 0;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--sky-600);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    height: 2px;
    border-radius: 999px;
    background: var(--sky-600);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.main-nav a:hover::after {
    transform: scaleX(1);
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    overflow: hidden;
    background: var(--white);
}

.header-search input {
    width: 220px;
    border: 0;
    outline: 0;
    padding: 10px 12px 10px 18px;
    background: transparent;
}

.header-search button {
    border: 0;
    padding: 10px 16px;
    color: var(--white);
    background: var(--sky-600);
    cursor: pointer;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--gray-100);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--gray-800);
    border-radius: 999px;
}

.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sky-500), var(--sky-700));
}

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

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

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 7s ease;
}

.hero-slide.is-active img {
    transform: scale(1.08);
}

.hero-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.16));
}

.hero-content {
    position: absolute;
    left: 50%;
    bottom: 68px;
    width: min(var(--max), calc(100% - 44px));
    transform: translateX(-50%);
    color: var(--white);
}

.hero-content h1,
.hero-content h2 {
    max-width: 760px;
    margin: 12px 0 16px;
    font-size: clamp(42px, 7vw, 68px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.05em;
    text-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
    font-weight: 700;
}

.hero-content p {
    max-width: 700px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 20px;
}

.hero-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

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

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    color: var(--white);
    background: var(--sky-600);
    box-shadow: 0 14px 28px rgba(2, 132, 199, 0.32);
}

.btn.primary:hover {
    background: var(--sky-700);
}

.btn.glass {
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
}

.btn.ghost {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn.outline {
    color: var(--sky-700);
    border: 1px solid var(--sky-100);
    background: var(--sky-50);
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.hero-dot {
    width: 28px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
    width: 54px;
    background: var(--white);
}

.section-wrap,
.page-shell {
    max-width: var(--max);
    margin: 0 auto;
    padding: 74px 22px;
}

.section-wrap.inner-section {
    padding-left: 0;
    padding-right: 0;
}

.section-warm,
.section-blue {
    max-width: none;
    padding-left: max(22px, calc((100% - var(--max)) / 2 + 22px));
    padding-right: max(22px, calc((100% - var(--max)) / 2 + 22px));
}

.section-warm {
    background: linear-gradient(135deg, var(--orange-50), var(--amber-50));
}

.section-blue {
    background: linear-gradient(135deg, var(--sky-50), var(--cyan-50));
}

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

.section-heading h2 {
    margin: 0 0 8px;
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.15;
    font-weight: 900;
    color: var(--gray-900);
}

.section-heading p {
    margin: 0;
    color: var(--gray-600);
}

.section-heading > a,
.text-link {
    color: var(--sky-600);
    font-weight: 800;
    white-space: nowrap;
}

.card-row {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 4px 0 18px;
    scroll-snap-type: x mandatory;
}

.card-row .movie-card {
    width: 318px;
    flex: 0 0 auto;
    scroll-snap-align: start;
}

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

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

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

.movie-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.cover-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--gray-200);
}

.cover-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.movie-card:hover .cover-wrap img {
    transform: scale(1.08);
}

.cover-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.05));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.movie-card:hover .cover-wrap::after {
    opacity: 1;
}

.card-badge,
.card-duration,
.card-play,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.card-badge {
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    color: var(--white);
    background: var(--sky-600);
}

.card-duration {
    right: 12px;
    bottom: 12px;
    padding: 5px 10px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.72);
}

.card-play {
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: var(--sky-700);
    background: rgba(255, 255, 255, 0.9);
    transform: translate(-50%, -50%) scale(0.76);
    opacity: 0;
    font-size: 21px;
    box-shadow: var(--shadow-md);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .card-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
}

.card-content strong {
    display: -webkit-box;
    min-height: 52px;
    overflow: hidden;
    color: var(--gray-900);
    font-size: 18px;
    line-height: 1.45;
    font-style: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.2s ease;
}

.movie-card:hover .card-content strong {
    color: var(--sky-600);
}

.card-content em {
    display: -webkit-box;
    min-height: 46px;
    overflow: hidden;
    color: var(--gray-600);
    font-size: 14px;
    font-style: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--gray-500);
    font-size: 13px;
}

.rank-badge {
    top: -10px;
    left: -10px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, #f97316, var(--red-500));
    box-shadow: 0 12px 22px rgba(239, 68, 68, 0.26);
}

.movie-card.compact .card-content strong {
    min-height: 44px;
    font-size: 15px;
}

.movie-card.compact .card-content em {
    display: none;
}

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

.category-tile,
.category-overview-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(14, 165, 233, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.category-tile {
    padding: 26px;
}

.category-title {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 23px;
    font-weight: 900;
    color: var(--gray-900);
}

.category-tile p,
.category-overview-card p {
    margin: 0 0 18px;
    color: var(--gray-600);
}

.category-samples,
.overview-links,
.footer-links,
.footer-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-samples a,
.overview-links a {
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--sky-700);
    background: var(--sky-50);
    font-size: 13px;
    font-weight: 700;
}

.page-shell {
    min-height: 64vh;
}

.page-hero,
.ranking-hero {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--sky-600), var(--sky-700));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.page-hero {
    padding: clamp(38px, 8vw, 74px);
}

.page-hero span,
.ranking-hero span,
.detail-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-weight: 800;
}

.page-hero h1,
.ranking-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(36px, 6vw, 58px);
    line-height: 1.08;
    font-weight: 900;
}

.page-hero p,
.ranking-hero p {
    max-width: 780px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    padding: 20px;
}

.category-overview-card h2 {
    margin: 2px 0 10px;
    font-size: 25px;
}

.category-poster-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.category-poster-stack img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--gray-600);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--sky-700);
    font-weight: 800;
}

.filter-panel,
.search-page-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 28px;
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.local-filter,
.search-page-form input {
    flex: 1;
    min-width: 220px;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    outline: 0;
    padding: 12px 16px;
}

.local-filter:focus,
.search-page-form input:focus {
    border-color: var(--sky-500);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

.sort-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sort-buttons button,
.search-page-form button {
    border: 0;
    border-radius: 999px;
    padding: 11px 17px;
    color: var(--gray-700);
    background: var(--gray-100);
    font-weight: 800;
    cursor: pointer;
}

.sort-buttons button:hover,
.sort-buttons button.is-active,
.search-page-form button {
    color: var(--white);
    background: var(--sky-600);
}

.search-status {
    margin-bottom: 24px;
    color: var(--gray-600);
    font-weight: 700;
}

.ranking-hero {
    position: relative;
    display: grid;
    grid-template-columns: 42% 1fr;
    gap: 34px;
    align-items: center;
    min-height: 360px;
    padding: 32px;
}

.ranking-hero img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.detail-page {
    max-width: var(--max);
    margin: 0 auto;
    padding: 32px 22px 74px;
}

.detail-hero {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 38px;
    align-items: center;
    padding: 30px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.detail-kicker {
    color: var(--sky-700);
    background: var(--sky-50);
}

.detail-info h1 {
    margin: 4px 0 18px;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.detail-one-line {
    margin: 0 0 20px;
    color: var(--gray-600);
    font-size: 18px;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.detail-tags span {
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--sky-700);
    background: var(--sky-50);
    font-size: 13px;
    font-weight: 800;
}

.detail-meta-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 24px;
}

.detail-meta-list div {
    padding: 14px;
    border-radius: 16px;
    background: var(--gray-50);
}

.detail-meta-list dt {
    color: var(--gray-500);
    font-size: 12px;
}

.detail-meta-list dd {
    margin: 4px 0 0;
    color: var(--gray-900);
    font-weight: 800;
}

.player-section,
.detail-copy,
.related-section {
    margin-top: 34px;
}

.player-section {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--gray-900);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.compact-heading {
    margin-bottom: 20px;
}

.player-section .section-heading h2 {
    color: var(--white);
}

.player-section .section-heading p {
    color: rgba(255, 255, 255, 0.66);
}

.movie-player {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #000000;
    aspect-ratio: 16 / 9;
}

.player-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000000;
}

.player-start {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: var(--white);
    background: rgba(0, 0, 0, 0.38);
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--sky-700);
    background: rgba(255, 255, 255, 0.92);
    font-size: 28px;
    box-shadow: var(--shadow-md);
}

.player-start strong {
    font-size: 20px;
}

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

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

.detail-copy section {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.detail-copy h2 {
    margin: 0 0 14px;
    font-size: 28px;
}

.detail-copy p {
    margin: 0 0 12px;
    color: var(--gray-700);
    font-size: 17px;
}

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

.info-table div {
    padding: 14px;
    border-radius: 15px;
    background: var(--gray-50);
}

.info-table span {
    display: block;
    color: var(--gray-500);
    font-size: 12px;
}

.info-table strong {
    display: block;
    margin-top: 4px;
}

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

.site-footer {
    background: var(--gray-900);
    color: var(--gray-300);
}

.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 46px 22px;
}

.footer-brand {
    margin-bottom: 10px;
    color: var(--white);
    font-size: 22px;
}

.footer-inner p {
    max-width: 820px;
    color: var(--gray-300);
}

.footer-links {
    margin-top: 18px;
}

.footer-links a {
    color: var(--gray-300);
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--white);
}

.copyright {
    margin-top: 26px;
    font-size: 14px;
}

.is-hidden {
    display: none !important;
}

@media (max-width: 1024px) {
    .header-inner {
        gap: 16px;
    }

    .main-nav {
        gap: 14px;
        font-size: 14px;
    }

    .header-search input {
        width: 170px;
    }

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

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

    .detail-hero,
    .ranking-hero,
    .category-overview-card {
        grid-template-columns: 1fr;
    }

    .detail-poster {
        max-width: 360px;
    }

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

@media (max-width: 760px) {
    .site-header {
        position: sticky;
    }

    .header-inner {
        height: auto;
        min-height: 64px;
        flex-wrap: wrap;
        padding: 12px 16px;
    }

    .brand-name {
        font-size: 18px;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .main-nav,
    .header-search {
        display: none;
        width: 100%;
    }

    .site-header.nav-open .main-nav,
    .site-header.nav-open .header-search {
        display: flex;
    }

    .site-header.nav-open .main-nav {
        order: 3;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 10px 0;
    }

    .main-nav a {
        width: 100%;
        padding: 10px 0;
    }

    .main-nav a::after {
        display: none;
    }

    .site-header.nav-open .header-search {
        order: 4;
    }

    .header-search input {
        width: 100%;
    }

    .hero {
        height: 560px;
    }

    .hero-content {
        bottom: 72px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-wrap,
    .page-shell,
    .detail-page {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section-heading,
    .filter-panel,
    .search-page-form {
        flex-direction: column;
        align-items: stretch;
    }

    .movie-grid,
    .ranked-grid,
    .small-grid,
    .related-grid,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .card-content {
        padding: 14px;
    }

    .card-content strong {
        min-height: 46px;
        font-size: 15px;
    }

    .card-content em {
        min-height: 40px;
        font-size: 13px;
    }

    .detail-hero,
    .player-section,
    .detail-copy section {
        padding: 18px;
    }

    .detail-meta-list,
    .info-table {
        grid-template-columns: 1fr;
    }

    .player-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 460px) {
    .movie-grid,
    .ranked-grid,
    .small-grid,
    .related-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .card-row .movie-card {
        width: 280px;
    }

    .hero-actions,
    .detail-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}
