:root {
    --bg: #fff7ed;
    --surface: #ffffff;
    --surface-soft: #fff1f2;
    --text: #111827;
    --muted: #6b7280;
    --line: rgba(17, 24, 39, 0.08);
    --primary: #e11d48;
    --primary-dark: #be123c;
    --accent: #f97316;
    --gold: #f59e0b;
    --dark: #0f172a;
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 38%, #fff7ed 100%);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(244, 63, 94, 0.14);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 12px 28px rgba(225, 29, 72, 0.28);
}

.brand-text {
    font-size: 20px;
}

.desktop-nav,
.mobile-nav {
    align-items: center;
    gap: 8px;
}

.desktop-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-link,
.mobile-nav-link {
    color: #4b5563;
    font-size: 15px;
    font-weight: 700;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link {
    padding: 10px 13px;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
    color: var(--primary);
    background: rgba(244, 63, 94, 0.09);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 16px;
    background: rgba(244, 63, 94, 0.1);
    padding: 12px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--primary);
    border-radius: 999px;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
}

.mobile-nav-link {
    display: block;
    padding: 12px 14px;
}

.hero {
    padding: 34px 0 24px;
    background:
        radial-gradient(circle at top left, rgba(244, 63, 94, 0.18), transparent 32%),
        radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.16), transparent 30%);
}

.hero-shell {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    height: min(72vh, 720px);
    min-height: 560px;
    margin: 0 auto;
    overflow: hidden;
    color: #fff;
    border-radius: 34px;
    background: var(--dark);
    box-shadow: var(--shadow);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
    align-items: center;
    gap: 34px;
    padding: 58px;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.02);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.62;
    filter: saturate(1.08);
}

.hero-copy,
.hero-poster {
    position: relative;
    z-index: 2;
}

.hero-copy {
    max-width: 650px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 34px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 7px 14px;
    margin-bottom: 16px;
    background: rgba(244, 63, 94, 0.11);
}

.hero .eyebrow {
    color: #fecdd3;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero h1,
.hero h2.hero-movie-title,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    font-weight: 950;
    letter-spacing: -0.06em;
    line-height: 0.96;
}

.hero h1 {
    font-size: clamp(48px, 7vw, 98px);
}

.hero-movie-title {
    margin-top: 14px;
    font-size: clamp(34px, 5vw, 70px);
}

.hero-desc,
.page-hero p,
.section-title p,
.search-panel p,
.detail-one-line {
    color: #6b7280;
    font-size: 18px;
    line-height: 1.8;
}

.hero-desc {
    max-width: 620px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.86);
}

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

.hero-tags {
    margin: 24px 0 28px;
}

.hero-tags span,
.detail-meta span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    color: #4b5563;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    border-radius: 999px;
    padding: 8px 10px;
    background: #fff1f2;
}

.hero-tags span {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.primary-btn,
.secondary-btn,
.text-link,
.filter-bar button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
    color: #fff;
    padding: 0 22px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 18px 36px rgba(225, 29, 72, 0.3);
}

.secondary-btn {
    color: #fff;
    padding: 0 22px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.prose-block .secondary-btn {
    color: var(--primary);
    background: #fff;
    border-color: rgba(244, 63, 94, 0.18);
}

.primary-btn:hover,
.secondary-btn:hover,
.text-link:hover,
.filter-bar button:hover {
    transform: translateY(-2px);
}

.hero-poster {
    display: block;
    overflow: hidden;
    justify-self: center;
    width: min(360px, 100%);
    aspect-ratio: 2 / 3;
    border-radius: 28px;
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.4);
    transform: rotate(2.5deg);
}

.hero-poster img,
.movie-cover img,
.detail-poster img,
.mini-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-controls {
    position: absolute;
    left: 58px;
    right: 58px;
    bottom: 32px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.hero-arrow,
.hero-dot {
    pointer-events: auto;
    border: 0;
}

.hero-arrow {
    width: 46px;
    height: 46px;
    color: #fff;
    font-size: 34px;
    line-height: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.hero-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
    width: 30px;
    background: #fff;
}

.section {
    padding: 84px 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255, 241, 242, 0.82), rgba(255, 247, 237, 0.94));
}

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

.section-title {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-title h2,
.search-panel h2,
.watch-card h2,
.side-panel h2,
.prose-block h2,
.site-footer h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 950;
    letter-spacing: -0.045em;
}

.section-title p,
.search-panel p {
    margin: 12px 0 0;
}

.row-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    max-width: none;
}

.text-link {
    color: var(--primary);
    padding: 0 18px;
    background: #fff;
    border: 1px solid rgba(244, 63, 94, 0.14);
}

.search-panel,
.watch-card,
.side-panel,
.prose-block,
.spotlight-card,
.category-tile,
.movie-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(244, 63, 94, 0.12);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.09);
}

.search-panel {
    padding: 30px;
    border-radius: 28px;
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) repeat(2, minmax(150px, 210px)) auto;
    gap: 14px;
    align-items: end;
    margin: 26px 0 28px;
}

.filter-bar label {
    display: grid;
    gap: 8px;
    color: #4b5563;
    font-size: 13px;
    font-weight: 900;
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    min-height: 48px;
    color: var(--text);
    border: 1px solid rgba(244, 63, 94, 0.16);
    border-radius: 16px;
    background: #fff;
    padding: 0 14px;
    outline: none;
}

.filter-bar input:focus,
.filter-bar select:focus {
    border-color: rgba(225, 29, 72, 0.55);
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.08);
}

.filter-bar button {
    min-height: 48px;
    color: var(--primary);
    border: 0;
    padding: 0 18px;
    background: #fff1f2;
}

.empty-state {
    margin: 16px 0 0;
    color: var(--muted);
    font-weight: 800;
}

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 66px rgba(15, 23, 42, 0.15);
}

.movie-cover {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #fff1f2, #ffedd5);
}

.movie-cover img {
    transition: transform 0.55s ease;
}

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

.cover-play,
.rank-badge {
    position: absolute;
    z-index: 2;
}

.cover-play {
    left: 14px;
    right: 14px;
    bottom: 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-align: center;
    border-radius: 999px;
    padding: 10px 12px;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.94), rgba(249, 115, 22, 0.94));
    transform: translateY(10px);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .cover-play {
    opacity: 1;
    transform: translateY(0);
}

.rank-badge {
    top: 12px;
    left: 12px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 950;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold), var(--primary));
    box-shadow: 0 10px 24px rgba(225, 29, 72, 0.24);
}

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

.movie-meta-row {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    gap: 6px;
}

.movie-meta-row span {
    padding: 5px 8px;
    border-radius: 999px;
    background: #f9fafb;
}

.movie-card h3 {
    margin: 12px 0 8px;
    color: var(--text);
    font-size: 18px;
    font-weight: 950;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.movie-card p {
    display: -webkit-box;
    min-height: 48px;
    margin: 0 0 12px;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

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

.movie-card-compact h3 {
    font-size: 16px;
}

.tag-row {
    gap: 6px;
}

.tag-row span {
    color: var(--primary);
    font-size: 12px;
    padding: 6px 8px;
}

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

.category-tile,
.spotlight-card a {
    display: block;
    min-height: 210px;
    border-radius: 26px;
    padding: 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover,
.spotlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.category-tile span,
.spotlight-card span {
    color: var(--primary);
    font-size: 13px;
    font-weight: 950;
}

.category-tile h3,
.spotlight-card h2 {
    margin: 18px 0 10px;
    font-size: 22px;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.category-tile p,
.spotlight-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.category-tile em {
    display: inline-flex;
    margin-top: 18px;
    color: var(--primary);
    font-style: normal;
    font-weight: 900;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--dark);
}

.page-hero {
    padding: 78px 0;
    background:
        radial-gradient(circle at top left, rgba(244, 63, 94, 0.34), transparent 36%),
        linear-gradient(135deg, #0f172a, #2f1421 60%, #3b170f);
}

.page-hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
}

.page-hero h1 {
    max-width: 900px;
    color: #fff;
    font-size: clamp(42px, 6vw, 72px);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    font-weight: 800;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb em {
    color: #fff;
    font-style: normal;
}

.detail-hero {
    min-height: 620px;
    padding: 64px 0 74px;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.72;
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
}

.detail-grid,
.detail-layout {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    aspect-ratio: 2 / 3;
    border-radius: 28px;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.detail-copy h1 {
    max-width: 820px;
    color: #fff;
    font-size: clamp(42px, 6vw, 76px);
}

.detail-one-line {
    max-width: 760px;
    margin: 22px 0;
    color: rgba(255, 255, 255, 0.82);
}

.detail-meta {
    margin-bottom: 18px;
}

.detail-meta span {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.tag-row-large {
    margin-bottom: 28px;
}

.tag-row-large span {
    color: #fff;
    background: rgba(244, 63, 94, 0.42);
}

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

.watch-card,
.side-panel,
.prose-block {
    border-radius: 28px;
    padding: 24px;
}

.watch-card h2,
.side-panel h2,
.prose-block h2 {
    font-size: 28px;
    margin-bottom: 18px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #020617;
    box-shadow: 0 28px 72px rgba(15, 23, 42, 0.28);
}

.player-shell video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
}

.player-start {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #fff;
    border: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.28), rgba(2, 6, 23, 0.74));
    cursor: pointer;
    transition: opacity 0.25s ease;
}

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

.play-symbol {
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 20px 42px rgba(225, 29, 72, 0.34);
}

.play-symbol::before {
    content: "";
    margin-left: 5px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 22px solid #fff;
}

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

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

.mini-card {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    background: #fff7ed;
    transition: transform 0.2s ease, background 0.2s ease;
}

.mini-card:hover {
    transform: translateX(4px);
    background: #fff1f2;
}

.mini-card img {
    width: 64px;
    height: 90px;
    border-radius: 14px;
}

.mini-card span,
.mini-card em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-card span {
    font-weight: 950;
}

.mini-card em {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.prose-block {
    max-width: 960px;
}

.prose-block p {
    margin: 0 0 22px;
    color: #374151;
    font-size: 17px;
    line-height: 2;
}

.site-footer {
    color: #cbd5e1;
    background: linear-gradient(135deg, #0f172a, #1f2937 58%, #3b1420);
    padding: 64px 0 22px;
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) 1fr 1fr;
    gap: 36px;
}

.footer-brand {
    color: #fff;
    font-size: 22px;
}

.site-footer p {
    max-width: 460px;
    margin: 16px 0 0;
    line-height: 1.8;
}

.site-footer h2 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 18px;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 46px auto 0;
    padding-top: 20px;
    color: #94a3b8;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

[data-movie-card][hidden] {
    display: none;
}

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

    .menu-toggle {
        display: inline-block;
    }

    body.menu-open .mobile-nav {
        display: grid;
    }

    .hero-shell {
        height: auto;
        min-height: 720px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        padding: 42px;
    }

    .hero-poster {
        width: min(280px, 72vw);
        justify-self: start;
    }

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

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

    .detail-poster {
        width: min(320px, 100%);
    }
}

@media (max-width: 760px) {
    .header-inner,
    .section-inner,
    .footer-inner,
    .footer-bottom,
    .mobile-nav,
    .hero-shell {
        width: min(100% - 24px, 1180px);
    }

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

    .hero {
        padding-top: 18px;
    }

    .hero-shell {
        min-height: 760px;
        border-radius: 26px;
    }

    .hero-slide {
        padding: 30px 24px 96px;
        gap: 24px;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero-movie-title {
        font-size: 34px;
    }

    .hero-desc,
    .page-hero p,
    .section-title p,
    .search-panel p,
    .detail-one-line {
        font-size: 16px;
    }

    .hero-controls {
        left: 24px;
        right: 24px;
    }

    .section {
        padding: 56px 0;
    }

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

    .featured-grid,
    .movie-grid,
    .ranking-grid,
    .ranking-page-grid,
    .category-movie-grid,
    .home-search-grid,
    .category-grid,
    .spotlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .search-panel,
    .watch-card,
    .side-panel,
    .prose-block {
        padding: 18px;
        border-radius: 22px;
    }

    .movie-card h3 {
        font-size: 16px;
    }

    .movie-card p {
        font-size: 13px;
    }

    .page-hero,
    .detail-hero {
        padding: 50px 0;
    }

    .detail-copy h1,
    .page-hero h1 {
        font-size: 38px;
    }

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

@media (max-width: 460px) {
    .featured-grid,
    .movie-grid,
    .ranking-grid,
    .ranking-page-grid,
    .category-movie-grid,
    .home-search-grid,
    .category-grid,
    .spotlight-grid {
        grid-template-columns: 1fr;
    }

    .hero-shell {
        min-height: 790px;
    }

    .hero-poster {
        width: 220px;
    }

    .hero-actions,
    .detail-links {
        flex-direction: column;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }
}
