*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    color-scheme: light;
    --page-bg: #f8fafc;
    --surface: #ffffff;
    --surface-soft: #f1f5f9;
    --text: #0f172a;
    --muted: #64748b;
    --line: #e2e8f0;
    --teal: #14b8a6;
    --teal-dark: #0f766e;
    --cyan: #0891b2;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
    --radius: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--page-bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.7;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(14px);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
}

.brand-mark {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(20, 184, 166, 0.32);
    transition: transform 0.25s ease;
}

.brand:hover .brand-mark,
.footer-brand:hover .brand-mark {
    transform: scale(1.08);
}

.brand-text {
    display: grid;
    gap: 1px;
}

.brand-text strong {
    font-size: 21px;
    line-height: 1.1;
}

.brand-text em {
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.desktop-nav > a,
.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    color: #334155;
    font-size: 15px;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav > a:hover,
.nav-dropdown:hover > a {
    background: #ccfbf1;
    color: var(--teal-dark);
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    display: grid;
    width: 210px;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.dropdown-panel a,
.mobile-category-list a {
    padding: 9px 12px;
    border-radius: 12px;
    color: #475569;
    font-size: 14px;
    font-weight: 650;
}

.dropdown-panel a:hover,
.mobile-category-list a:hover {
    background: #f0fdfa;
    color: var(--teal-dark);
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: #f1f5f9;
    color: #334155;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    border-top: 1px solid var(--line);
    background: var(--surface);
}

.mobile-nav.is-open {
    display: grid;
    gap: 6px;
    padding: 14px 18px 18px;
}

.mobile-nav > a {
    padding: 11px 14px;
    border-radius: 14px;
    color: #334155;
    font-weight: 700;
}

.mobile-nav > a:hover {
    background: #f1f5f9;
}

.mobile-category-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    padding: 4px 0 8px;
}

.hero {
    position: relative;
    height: min(720px, 72vh);
    min-height: 520px;
    overflow: hidden;
    background: #020617;
}

.hero-track,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

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

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

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.86), rgba(2, 6, 23, 0.52) 48%, rgba(2, 6, 23, 0.10));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 100%;
}

.hero-copy {
    max-width: 680px;
    color: #ffffff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(20, 184, 166, 0.92);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.hero h1,
.hero h2 {
    margin: 0 0 22px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.hero p {
    max-width: 620px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.90);
    font-size: clamp(17px, 2vw, 22px);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.hero-meta span,
.info-chip,
.tag-row span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-weight: 750;
}

.hero-meta span {
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(10px);
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: var(--teal);
    color: #ffffff;
    font-weight: 850;
    box-shadow: 0 14px 28px rgba(20, 184, 166, 0.28);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    background: var(--teal-dark);
}

.button.light {
    background: #ffffff;
    color: #0f172a;
}

.button.light:hover {
    background: var(--teal);
    color: #ffffff;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transform: translateY(-50%);
    transition: background 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.30);
}

.hero-arrow.prev {
    left: 22px;
}

.hero-arrow.next {
    right: 22px;
}

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

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

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

.featured-wrap {
    position: relative;
    z-index: 4;
    margin-top: -76px;
    margin-bottom: 42px;
}

.featured-card {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    overflow: hidden;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.featured-card .featured-media {
    position: relative;
    min-height: 360px;
    overflow: hidden;
}

.featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-card:hover img {
    transform: scale(1.05);
}

.featured-card .featured-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.62), rgba(2, 6, 23, 0));
}

.featured-card .featured-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 38px;
}

.featured-card h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.12;
}

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

.section {
    padding: 54px 0;
}

.section.alt {
    background: var(--surface);
}

.section.soft {
    background: linear-gradient(180deg, var(--surface-soft), var(--page-bg));
}

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

.section-head h2 {
    display: inline;
    margin: 0;
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.2;
}

.section-head p {
    max-width: 720px;
    margin: 8px 0 0;
    color: var(--muted);
}

.section-icon {
    display: inline-grid;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    place-items: center;
    border-radius: 12px;
    background: #ccfbf1;
    color: var(--teal-dark);
}

.section-more {
    display: inline-flex;
    white-space: nowrap;
    color: var(--teal-dark);
    font-weight: 850;
}

.grid {
    display: grid;
    gap: 22px;
}

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.poster {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a, #0f766e);
}

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

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

.type-badge,
.rank-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.type-badge {
    top: 12px;
    right: 12px;
    padding: 4px 9px;
    background: rgba(2, 6, 23, 0.74);
    color: #ffffff;
}

.rank-badge {
    top: 12px;
    left: 12px;
    width: 38px;
    height: 38px;
    justify-content: center;
    background: #ffffff;
    color: var(--teal-dark);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
}

.play-icon {
    position: absolute;
    inset: 50% auto auto 50%;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.74);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.36);
    opacity: 0;
    transition: opacity 0.22s ease;
}

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

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

.card-body {
    padding: 16px;
}

.card-title {
    display: -webkit-box;
    margin-bottom: 8px;
    overflow: hidden;
    color: var(--text);
    font-size: 18px;
    font-weight: 850;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

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

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

.meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    color: #64748b;
    font-size: 13px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.tag-row span {
    padding: 4px 8px;
    background: #f0fdfa;
    color: var(--teal-dark);
    font-size: 12px;
}

.card-large .poster {
    aspect-ratio: 21 / 11;
}

.card-large .card-title {
    font-size: 22px;
}

.card-horizontal {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
}

.card-horizontal .poster {
    height: 100%;
    min-height: 170px;
    aspect-ratio: auto;
}

.card-horizontal .card-body {
    display: flex;
    min-height: 170px;
    flex-direction: column;
    justify-content: center;
}

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

.category-tile {
    display: grid;
    min-height: 180px;
    align-content: space-between;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(20, 184, 166, 0.20), transparent 42%),
        #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.category-tile h2 {
    margin: 0 0 8px;
    font-size: 22px;
}

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

.category-tile span {
    color: var(--teal-dark);
    font-weight: 850;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) repeat(3, minmax(140px, 180px));
    gap: 12px;
    margin: 22px 0 30px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--surface);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #ffffff;
    padding: 0 14px;
}

.search-box span {
    color: var(--teal-dark);
    font-weight: 850;
}

.filter-input,
.filter-select {
    width: 100%;
    min-height: 46px;
    border: 0;
    outline: none;
    background: #ffffff;
    color: var(--text);
}

.filter-select {
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
}

.page-hero {
    padding: 64px 0 34px;
    background:
        radial-gradient(circle at 15% 10%, rgba(20, 184, 166, 0.16), transparent 26%),
        radial-gradient(circle at 85% 0%, rgba(8, 145, 178, 0.14), transparent 28%),
        #ffffff;
    border-bottom: 1px solid var(--line);
}

.page-hero h1 {
    max-width: 920px;
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.page-hero p {
    max-width: 780px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--teal-dark);
    font-weight: 800;
}

.detail-hero {
    padding: 48px 0;
    background:
        linear-gradient(90deg, rgba(15, 118, 110, 0.96), rgba(8, 145, 178, 0.92)),
        #0f766e;
    color: #ffffff;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.28);
}

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

.detail-copy h1 {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.detail-copy p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.90);
    font-size: 18px;
}

.info-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.info-chip {
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.player-section {
    padding: 42px 0 28px;
}

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #020617;
    box-shadow: var(--shadow);
}

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

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.48);
}

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

.player-button {
    position: relative;
    z-index: 2;
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: #0f172a;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.28);
}

.content-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--surface);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.content-card + .content-card {
    margin-top: 22px;
}

.content-card h2 {
    margin: 0 0 14px;
    font-size: 28px;
}

.content-card p {
    margin: 0;
    color: #334155;
    font-size: 17px;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 64px 128px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.rank-number {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 18px;
    background: #ccfbf1;
    color: var(--teal-dark);
    font-weight: 900;
}

.rank-thumb {
    overflow: hidden;
    border-radius: 16px;
}

.rank-thumb img {
    width: 128px;
    height: 80px;
    object-fit: cover;
}

.rank-info h2,
.rank-info h3 {
    margin: 0 0 6px;
    font-size: 20px;
}

.rank-info p {
    margin: 0;
    color: var(--muted);
}

.site-footer {
    margin-top: 70px;
    padding-top: 46px;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, #f8fafc, #eef2f7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 36px;
}

.footer-grid p {
    max-width: 560px;
    color: var(--muted);
}

.footer-grid h2 {
    margin: 0 0 12px;
    font-size: 16px;
}

.footer-grid a:not(.footer-brand) {
    display: block;
    margin: 7px 0;
    color: #475569;
}

.footer-grid a:hover {
    color: var(--teal-dark);
}

.footer-bottom {
    margin-top: 32px;
    padding: 18px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    text-align: center;
    font-size: 14px;
}

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

.empty-state {
    display: none;
    padding: 34px;
    border: 1px dashed var(--line);
    border-radius: 22px;
    background: #ffffff;
    color: var(--muted);
    text-align: center;
}

.empty-state.is-visible {
    display: block;
}

@media (max-width: 1040px) {
    .grid.cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

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

    .featured-card .featured-media {
        min-height: 300px;
    }

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

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

    .menu-button {
        display: inline-grid;
        place-items: center;
    }

    .nav-shell {
        height: 66px;
    }

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

    .hero {
        min-height: 580px;
        height: 74vh;
    }

    .hero-slide::after {
        background: linear-gradient(180deg, rgba(2, 6, 23, 0.42), rgba(2, 6, 23, 0.88));
    }

    .hero-content {
        align-items: end;
        padding-bottom: 86px;
    }

    .hero-arrow {
        display: none;
    }

    .featured-wrap {
        margin-top: -36px;
    }

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

    .card-horizontal,
    .rank-row {
        grid-template-columns: 1fr;
    }

    .rank-thumb img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

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

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

@media (max-width: 560px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .brand-text em {
        display: none;
    }

    .hero {
        min-height: 540px;
    }

    .hero h1,
    .hero h2 {
        font-size: 38px;
    }

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

    .button {
        width: 100%;
    }

    .section {
        padding: 40px 0;
    }

    .section-head {
        display: block;
    }

    .section-more {
        margin-top: 10px;
    }

    .grid.cards,
    .grid.large,
    .grid.six,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .card-body p {
        min-height: auto;
    }

    .content-card {
        padding: 22px;
    }
}

.detail-hero .breadcrumb {
    color: rgba(255, 255, 255, 0.78);
}

.detail-hero .breadcrumb a {
    color: #ffffff;
}

.mini-links {
    display: grid;
    gap: 4px;
    margin-top: 14px;
}

.mini-links a {
    color: #0f766e;
    font-size: 13px;
    font-weight: 800;
}
