:root {
    --bg: #f7f9fc;
    --text: #111827;
    --muted: #64748b;
    --soft: #e5e7eb;
    --card: #ffffff;
    --blue: #2563eb;
    --cyan: #06b6d4;
    --dark: #0f172a;
    --shadow: 0 18px 55px rgba(15, 23, 42, 0.12);
    --shadow-soft: 0 12px 28px rgba(15, 23, 42, 0.08);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
}

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

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #dbeafe, #e0f2fe);
}

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.site-nav {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 10px 26px rgba(37, 99, 235, 0.36);
}

.brand-mark::before {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.45), rgba(34, 211, 238, 0.35));
    filter: blur(10px);
    z-index: -1;
}

.brand-mark svg {
    width: 25px;
    height: 25px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.9;
}

.brand-mark svg path:last-child {
    fill: currentColor;
    stroke: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    position: relative;
    padding: 10px 14px;
    border-radius: 999px;
    color: #334155;
    font-weight: 650;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue);
    background: #eff6ff;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: #eef2ff;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 99px;
    background: #1e293b;
}

main {
    overflow: hidden;
}

.hero-shell {
    position: relative;
    width: min(1240px, calc(100% - 32px));
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
}

.hero-carousel {
    position: relative;
    min-height: 560px;
    border-radius: 34px;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.25), transparent 28%), linear-gradient(135deg, #020617, #1e3a8a 52%, #0f172a);
    box-shadow: var(--shadow);
}

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

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

.hero-slide img {
    position: absolute;
    inset: 0;
    opacity: 0.62;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.68) 42%, rgba(37, 99, 235, 0.28)), linear-gradient(0deg, rgba(2, 6, 23, 0.9), transparent 55%);
}

.hero-content {
    position: absolute;
    z-index: 2;
    left: clamp(24px, 7vw, 78px);
    bottom: clamp(32px, 8vw, 86px);
    width: min(680px, calc(100% - 48px));
    color: #ffffff;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    color: #dbeafe;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    font-weight: 700;
}

.hero-content h1 {
    margin: 0 0 18px;
    font-size: clamp(40px, 6vw, 78px);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.hero-content p {
    max-width: 640px;
    margin: 0 0 22px;
    color: #dbeafe;
    font-size: 18px;
}

.hero-tags,
.detail-tags,
.card-tags,
.footer-tags,
.category-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags span,
.detail-tags span,
.card-tags span,
.footer-tags span,
.category-preview span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.hero-tags span,
.detail-tags span {
    color: #cffafe;
    background: rgba(8, 145, 178, 0.24);
    border: 1px solid rgba(103, 232, 249, 0.25);
}

.card-tags span,
.category-preview span {
    color: #0369a1;
    background: #e0f2fe;
}

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

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

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

.btn.primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 14px 32px rgba(37, 99, 235, 0.32);
}

.btn.ghost {
    margin-left: 10px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-controls {
    position: absolute;
    z-index: 4;
    left: 24px;
    right: 24px;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

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

.hero-arrow {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 28px;
    line-height: 1;
}

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

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

.hero-dot.active {
    width: 28px;
    background: #ffffff;
}

.hero-panel {
    padding: 28px;
    border-radius: 30px;
    color: #ffffff;
    background: linear-gradient(160deg, #0f172a, #172554 58%, #164e63);
    box-shadow: var(--shadow);
}

.hero-panel h2 {
    margin: 0 0 10px;
    font-size: 28px;
}

.hero-panel p {
    margin: 0 0 20px;
    color: #cbd5e1;
}

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

.hero-side-card {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.25s ease, background 0.25s ease;
}

.hero-side-card:hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.14);
}

.hero-side-card img {
    height: 98px;
    border-radius: 14px;
}

.hero-side-card strong,
.hero-side-card em {
    display: block;
}

.hero-side-card strong {
    color: #ffffff;
    line-height: 1.35;
}

.hero-side-card em {
    margin-top: 4px;
    color: #93c5fd;
    font-style: normal;
    font-size: 12px;
}

.panel-link {
    display: inline-flex;
    margin-top: 20px;
    color: #67e8f9;
    font-weight: 800;
}

.content-section {
    width: min(1240px, calc(100% - 32px));
    margin: 42px auto;
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    letter-spacing: -0.04em;
}

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

.section-heading a,
.inline-link {
    color: var(--blue);
    font-weight: 800;
}

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

.category-tile {
    position: relative;
    min-height: 210px;
    padding: 18px;
    border-radius: 24px;
    overflow: hidden;
    color: #ffffff;
    box-shadow: var(--shadow-soft);
}

.category-tile img {
    position: absolute;
    inset: 0;
    z-index: 0;
    filter: saturate(1.05);
}

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.88), rgba(37, 99, 235, 0.28));
}

.category-tile span,
.category-tile em {
    position: relative;
    z-index: 2;
    display: block;
}

.category-tile span {
    margin-top: 90px;
    font-size: 22px;
    font-weight: 850;
}

.category-tile em {
    margin-top: 6px;
    color: #dbeafe;
    font-style: normal;
    font-size: 13px;
}

.filter-bar {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px;
    margin-bottom: 22px;
    border-radius: 24px;
    background: var(--card);
    box-shadow: var(--shadow-soft);
}

.search-box {
    flex: 1;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    min-height: 54px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-weight: 800;
}

.search-box input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
}

.filter-note {
    color: var(--muted);
    white-space: nowrap;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 24px;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 15px;
    border-radius: 999px;
    color: #334155;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    font-weight: 750;
}

.pill.active,
.pill:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}

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

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

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

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

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

.movie-card-compact .poster-link {
    aspect-ratio: 3 / 4;
}

.poster-link img {
    transition: transform 0.35s ease;
}

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

.play-chip,
.rank-badge {
    position: absolute;
    z-index: 3;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 850;
}

.play-chip {
    right: 12px;
    bottom: 12px;
    padding: 7px 12px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.38);
}

.rank-badge {
    top: 12px;
    left: 12px;
    min-width: 42px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.rank-badge.wide {
    min-width: 54px;
}

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

.movie-meta-line,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 750;
}

.movie-meta-line a {
    color: var(--blue);
}

.movie-card h2 {
    margin: 8px 0 8px;
    font-size: 18px;
    line-height: 1.35;
}

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

.empty-state {
    display: none;
    padding: 32px;
    margin-top: 18px;
    border-radius: 24px;
    text-align: center;
    color: var(--muted);
    background: #ffffff;
}

.empty-state.show {
    display: block;
}

.page-hero,
.ranking-hero,
.detail-hero {
    position: relative;
    color: #ffffff;
    background: linear-gradient(135deg, #0f172a, #1d4ed8 56%, #0891b2);
}

.page-hero {
    padding: 74px max(16px, calc((100% - 1240px) / 2)) 78px;
}

.page-hero h1 {
    max-width: 900px;
    margin: 16px 0 12px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1;
    letter-spacing: -0.055em;
}

.page-hero p {
    max-width: 780px;
    margin: 0;
    color: #dbeafe;
    font-size: 18px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: inherit;
    font-size: 14px;
    font-weight: 750;
}

.breadcrumbs a,
.breadcrumbs span {
    color: inherit;
    opacity: 0.86;
}

.breadcrumbs span::before,
.breadcrumbs a + span::before,
.breadcrumbs a + a::before {
    content: "/";
    margin-right: 10px;
    opacity: 0.55;
}

.category-list {
    display: grid;
    gap: 18px;
}

.category-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    align-items: center;
    padding: 18px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.category-cover {
    display: block;
    height: 164px;
    border-radius: 22px;
    overflow: hidden;
}

.category-card h2 {
    margin: 0 0 8px;
    font-size: 26px;
}

.category-card p {
    margin: 0 0 14px;
    color: var(--muted);
}

.category-preview {
    margin-bottom: 14px;
}

.ranking-hero {
    width: min(1240px, calc(100% - 32px));
    min-height: 360px;
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 34px;
    align-items: center;
    padding: 28px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.ranking-hero img {
    height: 320px;
    border-radius: 26px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.ranking-hero h1 {
    margin: 16px 0 14px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.ranking-hero p {
    max-width: 640px;
    margin: 0 0 26px;
    color: #dbeafe;
}

.detail-hero {
    min-height: 560px;
    overflow: hidden;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
}

.detail-backdrop img {
    opacity: 0.26;
    filter: blur(2px) saturate(1.1);
    transform: scale(1.05);
}

.detail-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.84) 45%, rgba(8, 47, 73, 0.68)), linear-gradient(0deg, #0f172a, transparent 58%);
}

.detail-layout {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 58px 0;
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 42px;
    align-items: center;
}

.detail-poster {
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.detail-info h1 {
    margin: 18px 0 16px;
    font-size: clamp(42px, 7vw, 82px);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.detail-one-line {
    max-width: 780px;
    margin: 0 0 18px;
    color: #dbeafe;
    font-size: 20px;
}

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

.detail-meta span {
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
}

.detail-section {
    margin-top: 34px;
}

.player-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #020617;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.video-player {
    width: 100%;
    height: 100%;
    display: block;
    background: #000000;
}

.player-button {
    position: absolute;
    inset: 0;
    z-index: 3;
    border: 0;
    color: #ffffff;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.8), rgba(15, 23, 42, 0.35));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 18px;
    font-weight: 850;
    cursor: pointer;
}

.player-card.is-playing .player-button {
    opacity: 0;
    pointer-events: none;
}

.player-icon {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 18px 45px rgba(37, 99, 235, 0.42);
    font-size: 34px;
}

.player-message {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 4;
    display: none;
    padding: 12px 16px;
    border-radius: 14px;
    color: #fecaca;
    background: rgba(127, 29, 29, 0.78);
}

.player-card.has-error .player-message {
    display: block;
}

.article-panel {
    padding: 30px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.article-panel h2 {
    margin: 0 0 12px;
    font-size: 28px;
}

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

.article-panel p {
    margin: 0;
    color: #334155;
    font-size: 18px;
}

.site-footer {
    margin-top: 64px;
    color: #e2e8f0;
    background: linear-gradient(135deg, #0f172a, #1e3a8a 62%, #164e63);
}

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

.footer-brand {
    margin-bottom: 12px;
    color: #ffffff;
}

.site-footer p {
    margin: 0;
    color: #cbd5e1;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: #bfdbfe;
    font-size: 18px;
}

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

.footer-links a {
    color: #e2e8f0;
}

.footer-tags span {
    color: #dbeafe;
    background: rgba(255, 255, 255, 0.12);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 16px;
    text-align: center;
    color: #cbd5e1;
}

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

@media (max-width: 1100px) {
    .hero-shell,
    .ranking-hero,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        display: none;
    }

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

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

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

@media (max-width: 820px) {
    .site-nav {
        min-height: 66px;
    }

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

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 66px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border-radius: 22px;
        background: #ffffff;
        box-shadow: var(--shadow);
    }

    .nav-links.open {
        display: flex;
    }

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

    .hero-shell,
    .content-section,
    .ranking-hero,
    .detail-layout {
        width: min(100% - 24px, 1240px);
    }

    .hero-carousel {
        min-height: 520px;
        border-radius: 26px;
    }

    .hero-content {
        left: 22px;
        bottom: 76px;
        width: calc(100% - 44px);
    }

    .hero-content p,
    .detail-one-line,
    .article-panel p {
        font-size: 16px;
    }

    .btn.ghost {
        margin-left: 0;
        margin-top: 10px;
    }

    .hero-actions {
        display: grid;
        gap: 10px;
        max-width: 220px;
    }

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

    .filter-note {
        white-space: normal;
    }

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

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

    .category-cover {
        height: 220px;
    }

    .ranking-hero img {
        height: 280px;
    }

    .detail-poster {
        max-width: 330px;
        height: 440px;
    }

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

@media (max-width: 520px) {
    .brand-mark {
        width: 40px;
        height: 40px;
    }

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

    .hero-carousel {
        min-height: 500px;
    }

    .hero-content h1,
    .detail-info h1,
    .page-hero h1,
    .ranking-hero h1 {
        letter-spacing: -0.04em;
    }

    .category-grid,
    .movie-grid,
    .small-grid {
        grid-template-columns: 1fr;
    }

    .movie-card {
        border-radius: 22px;
    }

    .poster-link,
    .movie-card-compact .poster-link {
        aspect-ratio: 16 / 11;
    }

    .page-hero {
        padding-top: 52px;
        padding-bottom: 56px;
    }

    .detail-poster {
        width: 100%;
        max-width: none;
        height: auto;
        aspect-ratio: 2 / 3;
    }

    .player-icon {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }
}
