:root {
    --sky-50: #f0f9ff;
    --sky-100: #e0f2fe;
    --sky-200: #bae6fd;
    --sky-500: #0ea5e9;
    --sky-600: #0284c7;
    --sky-700: #0369a1;
    --blue-100: #dbeafe;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --black: #020617;
    --white: #ffffff;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.10);
    --shadow-card: 0 10px 25px rgba(15, 23, 42, 0.08);
    --radius-xl: 22px;
    --radius-lg: 16px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(180deg, var(--sky-50) 0%, var(--white) 40%, var(--gray-50) 100%);
    color: var(--gray-800);
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(14, 165, 233, 0.20);
    background: rgba(240, 249, 255, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.08);
}

.site-nav {
    max-width: 1280px;
    height: 68px;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--sky-500), var(--sky-700));
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.25);
    font-size: 16px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 20px;
    color: var(--gray-800);
    letter-spacing: -0.02em;
}

.brand-text small {
    margin-top: 4px;
    color: var(--gray-500);
    font-size: 12px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
}

.nav-links a,
.mobile-links a {
    color: var(--gray-700);
    font-weight: 600;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
    color: var(--sky-600);
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 280px;
}

.search-form input {
    width: 100%;
    height: 42px;
    border: 1px solid var(--sky-200);
    border-radius: 999px;
    padding: 0 16px;
    color: var(--gray-700);
    background: rgba(255, 255, 255, 0.85);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.search-form button {
    height: 42px;
    border: 0;
    border-radius: 999px;
    padding: 0 16px;
    cursor: pointer;
    color: var(--white);
    background: var(--sky-600);
    font-weight: 700;
}

.search-results {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    border: 1px solid var(--sky-100);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    z-index: 100;
}

.search-results a,
.search-results span {
    display: block;
    padding: 12px 14px;
    border-bottom: 1px solid var(--gray-100);
}

.search-results a:hover {
    background: var(--sky-50);
}

.search-results strong {
    display: block;
    color: var(--gray-800);
    font-size: 14px;
}

.search-results small {
    color: var(--gray-500);
    font-size: 12px;
}

.mobile-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    border-radius: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    color: var(--gray-700);
    background: var(--sky-100);
}

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

.mobile-links {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.mobile-links a {
    padding: 10px 12px;
    border-radius: 12px;
}

.mobile-links a:hover,
.mobile-links a.is-active {
    color: var(--sky-700);
    background: var(--sky-100);
}

.page-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 22px 0;
}

.hero-slider {
    position: relative;
    height: 520px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(2, 8, 23, 0.25);
    background: linear-gradient(135deg, #075985, #0f172a);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.6s ease, transform 0.8s ease;
    pointer-events: none;
}

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

.hero-image,
.category-art,
.poster,
.mini-poster,
.rank-poster {
    background-image: linear-gradient(135deg, rgba(14, 165, 233, 0.92), rgba(15, 23, 42, 0.85)), var(--poster);
    background-position: center;
    background-size: cover;
}

.hero-image {
    position: absolute;
    inset: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.20) 48%, rgba(2, 6, 23, 0.12));
}

.hero-content {
    position: absolute;
    left: clamp(24px, 6vw, 64px);
    right: clamp(24px, 6vw, 64px);
    bottom: clamp(34px, 7vw, 72px);
    max-width: 780px;
    color: var(--white);
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.92);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}

.hero-content h1,
.hero-content h2 {
    margin: 0 0 16px;
    font-size: clamp(34px, 6vw, 62px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-content p {
    margin: 0 0 24px;
    max-width: 720px;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.hero-tags,
.detail-tags,
.tag-row,
.quick-filters,
.hero-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hero-tags span {
    padding: 7px 12px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    font-size: 13px;
}

.hero-actions,
.detail-actions {
    margin-top: 26px;
}

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

.primary-button {
    color: var(--sky-700);
    background: var(--white);
    box-shadow: 0 12px 28px rgba(255, 255, 255, 0.18);
}

.secondary-button {
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.detail-info .secondary-button {
    color: var(--sky-700);
    background: var(--sky-50);
    border: 1px solid var(--sky-200);
}

.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.hero-dots {
    position: absolute;
    right: 32px;
    bottom: 32px;
    display: flex;
    gap: 10px;
    z-index: 5;
}

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

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

.content-section {
    margin-top: 56px;
}

.highlight-section {
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--sky-100), var(--blue-100));
    box-shadow: var(--shadow-card);
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.section-heading h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
    color: var(--gray-800);
}

.section-heading h2 span {
    width: 5px;
    height: 34px;
    border-radius: 999px;
    background: var(--sky-600);
}

.section-more {
    color: var(--sky-600);
    font-weight: 800;
}

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

.two-column-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.two-column-section .movie-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.movie-card {
    display: block;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-card);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.14);
}

.poster {
    position: relative;
    overflow: hidden;
    background-color: var(--sky-600);
}

.poster-vertical {
    aspect-ratio: 4 / 5;
}

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

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

.poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.62), rgba(2, 6, 23, 0.04));
    opacity: 0;
    transition: opacity 0.24s ease;
}

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

.poster-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--sky-600);
    background: rgba(255, 255, 255, 0.92);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.24s ease;
}

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

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

.movie-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--gray-500);
    font-size: 12px;
}

.movie-card h3 {
    margin: 0 0 8px;
    color: var(--gray-800);
    font-size: 17px;
    line-height: 1.35;
    transition: color 0.2s ease;
}

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

.movie-card p {
    margin: 0 0 12px;
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.65;
}

.line-clamp-2,
.line-clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    -webkit-line-clamp: 2;
}

.line-clamp-3 {
    -webkit-line-clamp: 3;
}

.tag-chip {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 2px 9px;
    border-radius: 999px;
    color: var(--sky-700);
    background: var(--sky-100);
    font-size: 12px;
    font-weight: 700;
}

.collection-hero {
    padding: 56px;
    border-radius: 28px;
    color: var(--white);
    background: radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.26), transparent 28%), linear-gradient(135deg, #0284c7, #0f172a);
    box-shadow: var(--shadow-soft);
}

.collection-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 58px);
    letter-spacing: -0.04em;
}

.collection-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.8;
    font-size: 17px;
}

.quick-filters {
    margin-top: 24px;
}

.quick-filters a {
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.20);
    font-weight: 700;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 38px;
}

.pagination a,
.pagination span {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    background: var(--white);
    color: var(--gray-700);
    box-shadow: var(--shadow-card);
}

.pagination .is-current {
    color: var(--white);
    background: var(--sky-600);
}

.pagination-ellipsis {
    box-shadow: none !important;
    background: transparent !important;
}

.rank-list {
    margin-top: 38px;
    display: grid;
    gap: 14px;
}

.rank-row {
    display: grid;
    grid-template-columns: 58px 82px 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 14px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-soft);
}

.rank-number {
    color: var(--sky-600);
    font-size: 24px;
    font-weight: 900;
}

.rank-poster {
    width: 82px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 12px;
}

.rank-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rank-info strong {
    display: block;
    color: var(--gray-800);
    font-size: 17px;
}

.rank-info p {
    margin: 6px 0;
    color: var(--gray-600);
    line-height: 1.55;
}

.rank-info span,
.rank-row em {
    color: var(--gray-500);
    font-size: 13px;
    font-style: normal;
}

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

.category-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 18px;
    min-height: 140px;
    padding: 16px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.category-art {
    min-height: 108px;
    border-radius: 16px;
    overflow: hidden;
}

.category-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card h2 {
    margin: 8px 0 10px;
    color: var(--gray-800);
    font-size: 20px;
}

.category-card p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 14px;
}

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

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

.detail-hero-card {
    display: grid;
    grid-template-columns: minmax(260px, 360px) 1fr;
    gap: 34px;
    padding: 28px;
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.detail-poster-wrap .poster {
    border-radius: 22px;
    box-shadow: var(--shadow-card);
}

.detail-info h1 {
    margin: 0 0 14px;
    color: var(--gray-800);
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.detail-info p {
    margin: 0 0 22px;
    color: var(--gray-600);
    font-size: 17px;
    line-height: 1.8;
}

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

.detail-meta-grid span {
    padding: 12px;
    border-radius: 14px;
    background: var(--gray-50);
    color: var(--gray-700);
    line-height: 1.5;
}

.detail-meta-grid strong {
    display: block;
    margin-bottom: 4px;
    color: var(--gray-500);
    font-size: 12px;
}

.player-section {
    margin-top: 42px;
}

.video-player {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: var(--black);
    box-shadow: 0 30px 70px rgba(2, 8, 23, 0.28);
    aspect-ratio: 16 / 9;
}

.video-player video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
}

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    cursor: pointer;
    color: var(--white);
    background: radial-gradient(circle at center, rgba(14, 165, 233, 0.34), rgba(2, 6, 23, 0.78));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-circle {
    width: 76px;
    height: 76px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--sky-600);
    background: var(--white);
    font-size: 26px;
    box-shadow: 0 16px 32px rgba(255, 255, 255, 0.14);
}

.player-overlay strong {
    font-size: 22px;
}

.player-overlay small {
    color: rgba(255, 255, 255, 0.78);
}

.detail-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    margin-top: 42px;
}

.detail-article,
.related-sidebar {
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.detail-article {
    padding: 30px;
}

.detail-article h2,
.related-sidebar h2 {
    margin: 0 0 16px;
    color: var(--gray-800);
    font-size: 22px;
}

.detail-article h2:not(:first-child) {
    margin-top: 30px;
}

.detail-article p {
    margin: 0;
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.9;
}

.lead-text {
    color: var(--gray-700) !important;
    font-weight: 700;
}

.review-box {
    padding: 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--sky-50), var(--blue-100));
}

.related-sidebar {
    align-self: start;
    position: sticky;
    top: 92px;
    padding: 22px;
}

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

.mini-card {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 12px;
    align-items: center;
}

.mini-poster {
    width: 74px;
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    overflow: hidden;
}

.mini-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-card strong {
    display: block;
    color: var(--gray-800);
    line-height: 1.35;
}

.mini-card span {
    display: block;
    margin-top: 5px;
    color: var(--gray-500);
    font-size: 12px;
}

.detail-neighbor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 42px;
}

.detail-neighbor a,
.detail-neighbor span {
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--white);
    color: var(--sky-700);
    box-shadow: var(--shadow-card);
    font-weight: 800;
}

.detail-neighbor span {
    color: var(--gray-500);
}

.site-footer {
    margin-top: 72px;
    border-top: 1px solid var(--gray-200);
    background: linear-gradient(180deg, var(--gray-50), var(--gray-100));
}

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

.footer-brand p {
    max-width: 620px;
    color: var(--gray-600);
    line-height: 1.8;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-column h2 {
    margin: 0 0 6px;
    font-size: 18px;
}

.footer-column a {
    color: var(--gray-600);
}

.footer-column a:hover {
    color: var(--sky-600);
}

.footer-bottom {
    padding: 18px 22px 28px;
    text-align: center;
    color: var(--gray-500);
    font-size: 13px;
}

@media (max-width: 1100px) {
    .nav-links,
    .site-nav > .search-form {
        display: none;
    }

    .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-search {
        display: flex;
        min-width: 0;
    }

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

    .two-column-section {
        grid-template-columns: 1fr;
    }

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

    .related-sidebar {
        position: static;
    }
}

@media (max-width: 820px) {
    .page-main {
        padding: 22px 16px 0;
    }

    .hero-slider {
        height: 560px;
        border-radius: 22px;
    }

    .hero-content {
        left: 22px;
        right: 22px;
        bottom: 56px;
    }

    .hero-dots {
        left: 22px;
        right: auto;
        bottom: 22px;
    }

    .movie-grid,
    .two-column-section .movie-grid,
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .highlight-section,
    .collection-hero,
    .detail-hero-card,
    .detail-article {
        padding: 22px;
    }

    .detail-hero-card {
        grid-template-columns: 1fr;
    }

    .detail-poster-wrap {
        max-width: 340px;
    }

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

    .rank-row {
        grid-template-columns: 42px 68px 1fr;
    }

    .rank-row em {
        display: none;
    }

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

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

@media (max-width: 540px) {
    .site-nav {
        height: 64px;
        padding: 0 16px;
    }

    .brand-text strong {
        font-size: 17px;
    }

    .brand-text small {
        display: none;
    }

    .hero-slider {
        height: 520px;
    }

    .hero-tags span:nth-child(n + 4) {
        display: none;
    }

    .movie-grid,
    .two-column-section .movie-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

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

    .detail-neighbor {
        flex-direction: column;
    }

    .detail-neighbor a,
    .detail-neighbor span {
        width: 100%;
        text-align: center;
    }
}
