:root {
    --teal: #0d9488;
    --teal-dark: #0f766e;
    --cyan: #0891b2;
    --blue: #2563eb;
    --orange: #f97316;
    --red: #ef4444;
    --yellow: #f59e0b;
    --green: #16a34a;
    --purple: #7c3aed;
    --rose: #e11d48;
    --ink: #111827;
    --muted: #6b7280;
    --soft: #f8fafc;
    --line: #e5e7eb;
    --card: #ffffff;
    --shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
}

* {
    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(--ink);
    background: #f3f6fb;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    color: #ffffff;
    background: linear-gradient(100deg, #0d9488, #0891b2 48%, #2563eb);
    box-shadow: 0 14px 35px rgba(8, 91, 126, 0.28);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.26);
}

.brand-text strong {
    display: block;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0.03em;
}

.brand-text small {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
}

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

.desktop-nav > a,
.nav-drop > a {
    padding: 8px 2px;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: #fde68a;
}

.nav-drop {
    position: relative;
}

.drop-menu {
    position: absolute;
    left: -18px;
    top: calc(100% + 12px);
    width: 168px;
    padding: 8px;
    border-radius: 16px;
    background: #ffffff;
    color: #1f2937;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: 0.2s ease;
}

.nav-drop:hover .drop-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.drop-menu a {
    display: block;
    padding: 9px 12px;
    border-radius: 10px;
    color: #334155;
}

.drop-menu a:hover {
    background: #ecfeff;
    color: var(--teal-dark);
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    width: 300px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.header-search input {
    width: 100%;
    height: 38px;
    padding: 0 14px;
    color: #0f172a;
    border: 0;
    border-radius: 999px;
    outline: 0;
    background: #ffffff;
}

.header-search button,
.panel-search button {
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: var(--teal-dark);
    font-weight: 700;
    white-space: nowrap;
}

.header-search button {
    height: 38px;
    padding: 0 16px;
}

.mobile-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 16px;
}

.mobile-nav a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    margin-top: 8px;
}

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

.hero-carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: linear-gradient(120deg, #172554, #0f766e);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.52) 45%, rgba(0, 0, 0, 0.08));
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #ffffff;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: var(--teal);
    color: #ffffff;
    font-weight: 700;
}

.hero-content h1 {
    max-width: 760px;
    margin: 0 0 16px;
    font-size: clamp(38px, 7vw, 70px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero-content p {
    max-width: 650px;
    margin: 0 0 20px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.82);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
    color: #f8fafc;
}

.hero-meta span {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
}

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

.primary-btn,
.ghost-btn,
.text-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
    padding: 13px 26px;
    color: #ffffff;
    background: var(--teal);
    box-shadow: 0 14px 28px rgba(13, 148, 136, 0.35);
}

.primary-btn:hover,
.ghost-btn:hover,
.text-btn:hover {
    transform: translateY(-2px);
}

.ghost-btn {
    padding: 12px 22px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.text-btn {
    padding: 9px 16px;
    color: var(--teal-dark);
    background: #ccfbf1;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 6;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.45);
    font-size: 34px;
    line-height: 1;
    transform: translateY(-50%);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

.hero-dots button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.46);
}

.hero-dots button.is-active {
    background: #ffffff;
}

.quick-panel {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 420px);
    gap: 24px;
    align-items: center;
    margin-top: -46px;
    position: relative;
    z-index: 10;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.quick-panel h2 {
    margin: 0 0 6px;
    font-size: 28px;
}

.quick-panel p {
    margin: 0;
    color: var(--muted);
}

.panel-search {
    display: flex;
    gap: 10px;
}

.panel-search input {
    min-width: 0;
    flex: 1;
    height: 48px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    outline: 0;
}

.panel-search button {
    padding: 0 20px;
}

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

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.section-title span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--teal-dark);
    background: #ccfbf1;
    font-size: 22px;
}

.section-title h2 {
    margin: 0;
    font-size: 32px;
    line-height: 1.15;
}

.section-title a {
    margin-left: auto;
    color: var(--teal-dark);
    font-weight: 800;
}

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

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

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

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

.movie-card {
    min-width: 0;
    overflow: hidden;
    border-radius: 18px;
    background: var(--card);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.14);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #0f172a;
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.7));
    opacity: 0.78;
}

.poster-play {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(13, 148, 136, 0.88);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88);
    transition: 0.22s ease;
}

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

.poster-year {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 4px 8px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.64);
    font-size: 12px;
    font-weight: 700;
}

.card-content {
    padding: 15px;
}

.card-title {
    display: -webkit-box;
    overflow: hidden;
    min-height: 48px;
    color: #111827;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.card-meta {
    overflow: hidden;
    margin: 8px 0;
    color: var(--muted);
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-desc {
    display: -webkit-box;
    overflow: hidden;
    min-height: 44px;
    margin: 0 0 10px;
    color: #475569;
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.tag-row span {
    padding: 4px 8px;
    border-radius: 999px;
    color: #0f766e;
    background: #ccfbf1;
    font-size: 12px;
    font-weight: 700;
}

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

.orange-panel {
    background: linear-gradient(135deg, #fff7ed, #fef2f2);
}

.blue-panel {
    background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

.rank-grid,
.ranking-list {
    display: grid;
    gap: 14px;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 54px 84px 1fr 54px;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
}

.rank-number {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--red), var(--orange));
    font-size: 22px;
    font-weight: 900;
}

.rank-cover {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    background: #0f172a;
}

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

.rank-info a {
    display: block;
    overflow: hidden;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-info p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.rank-score {
    color: var(--yellow);
    font-weight: 900;
    text-align: right;
}

.rail-scroll {
    display: grid;
    grid-auto-columns: 340px;
    grid-auto-flow: column;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.movie-card-wide .poster-link {
    aspect-ratio: 16 / 10;
}

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

.category-tile {
    min-height: 220px;
    padding: 22px;
    border-radius: 22px;
    color: #ffffff;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.category-tile a:first-child {
    display: block;
}

.category-tile span {
    display: block;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 900;
}

.category-tile p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
}

.category-samples {
    display: grid;
    gap: 6px;
    margin-top: 18px;
}

.category-samples a {
    overflow: hidden;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-tile.teal { background: linear-gradient(135deg, #0f766e, #0891b2); }
.category-tile.blue { background: linear-gradient(135deg, #1d4ed8, #06b6d4); }
.category-tile.cyan { background: linear-gradient(135deg, #0891b2, #22d3ee); }
.category-tile.orange { background: linear-gradient(135deg, #ea580c, #ef4444); }
.category-tile.rose { background: linear-gradient(135deg, #be123c, #fb7185); }
.category-tile.purple { background: linear-gradient(135deg, #6d28d9, #a855f7); }
.category-tile.green { background: linear-gradient(135deg, #15803d, #14b8a6); }
.category-tile.yellow { background: linear-gradient(135deg, #ca8a04, #f97316); }

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

.page-hero {
    padding: 54px 0;
    color: #ffffff;
    background: linear-gradient(105deg, #0d9488, #0891b2 48%, #2563eb);
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.breadcrumbs a:hover {
    color: #ffffff;
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.12;
}

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

.page-stack {
    display: grid;
    gap: 34px;
    padding: 48px 0 10px;
}

.category-overview-card {
    padding: 28px;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.category-overview-head {
    display: flex;
    gap: 18px;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 22px;
}

.category-overview-head h2 {
    margin: 0 0 8px;
    font-size: 28px;
}

.category-overview-head p {
    margin: 0;
    color: var(--muted);
}

.filter-bar {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
    padding: 16px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.07);
}

.filter-input,
.filter-select {
    min-width: 0;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    outline: 0;
    background: #ffffff;
}

.filter-input {
    flex: 1;
    padding: 0 14px;
}

.filter-select {
    width: 160px;
    padding: 0 12px;
}

.detail-hero {
    position: relative;
    overflow: hidden;
    min-height: 540px;
    color: #ffffff;
    background: #0f172a;
}

.detail-bg,
.detail-mask {
    position: absolute;
    inset: 0;
}

.detail-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px) saturate(1.1);
    transform: scale(1.05);
    opacity: 0.46;
}

.detail-mask {
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.95), rgba(15, 23, 42, 0.72) 58%, rgba(15, 23, 42, 0.42));
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    padding: 34px 0 56px;
}

.detail-breadcrumbs {
    color: rgba(255, 255, 255, 0.72);
}

.detail-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 34px;
    align-items: center;
    margin-top: 24px;
}

.detail-poster {
    overflow: hidden;
    border-radius: 24px;
    background: #111827;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.detail-info h1 {
    max-width: 820px;
    margin: 0 0 16px;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.08;
}

.detail-one-line {
    max-width: 800px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 19px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.detail-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.13);
}

.detail-tags {
    margin-bottom: 26px;
}

.watch-section {
    margin-top: -72px;
    position: relative;
    z-index: 5;
}

.player-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 28px;
    background: #000000;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.32);
}

.main-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000000;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.62));
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.play-overlay span {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 999px;
    background: rgba(13, 148, 136, 0.94);
    box-shadow: 0 18px 40px rgba(13, 148, 136, 0.4);
    font-size: 32px;
}

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

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

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 34px;
}

.content-panel {
    padding: 28px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.content-panel h2 {
    margin: 0 0 14px;
    font-size: 26px;
}

.content-panel p {
    margin: 0;
    color: #475569;
    font-size: 16px;
}

.site-footer {
    margin-top: 64px;
    color: rgba(255, 255, 255, 0.82);
    background: linear-gradient(135deg, #0f172a, #0f766e);
}

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

.footer-inner strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 22px;
}

.footer-inner p {
    margin: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-content: center;
    justify-content: flex-end;
}

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

.hidden-by-filter {
    display: none !important;
}

@media (max-width: 1100px) {
    .movie-grid,
    .full-grid,
    .related-grid,
    .editor-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

    .mobile-toggle {
        display: grid;
        place-items: center;
    }

    .hero-carousel {
        height: 560px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .quick-panel,
    .detail-layout,
    .detail-content,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .quick-panel {
        margin-top: 20px;
    }

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

    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-select {
        width: 100%;
    }

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

    .watch-section {
        margin-top: 24px;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 620px) {
    .header-inner {
        min-height: 66px;
    }

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

    .hero-carousel {
        height: 520px;
    }

    .hero-arrow {
        display: none;
    }

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

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

    .panel-search button {
        height: 46px;
    }

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

    .card-content {
        padding: 12px;
    }

    .card-title {
        font-size: 15px;
    }

    .card-desc,
    .tag-row {
        display: none;
    }

    .rank-item {
        grid-template-columns: 42px 72px 1fr;
    }

    .rank-score {
        display: none;
    }

    .rail-scroll {
        grid-auto-columns: 260px;
    }

    .soft-panel,
    .category-overview-card,
    .content-panel {
        padding: 20px;
        border-radius: 22px;
    }
}
