/* =============================================================
   2026 澳門車展 — style.css
   使用方法：<link rel="stylesheet" href="css/style.css">
   HTML 中不需要再写 <style> 内联样式
   ============================================================= */

/* ========== CSS VARIABLES ========== */
:root {
    --blue: #75b4e0;
    --blue-light: #a8d4f0;
    --teal: #00ada9;
    --teal-light: #33c4c0;
    --bg-body: #f0f6fb;
    --bg-menu: rgba(10, 18, 30, 0.6);
    --border-subtle: rgba(117, 180, 224, 0.18);
    --text-dark: #1a2d42;
    --text-body: #2c4a6a;
    --topbar-bg: #ffffff;
    --ease: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ========== RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: system-ui, sans-serif;
    background: var(--bg-body);
    color: var(--text-body);
    min-height: 100vh;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    opacity: 0.025;
    pointer-events: none;
    z-index: 99999;
}

/* ========== TOP BAR ========== */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(10px, 1.8vw, 18px) clamp(12px, 4vw, 60px);
    background: var(--topbar-bg);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    z-index: 1010;
    gap: 10px;
}

.logo-main {
    width: clamp(100px, 22vw, 300px);
    aspect-ratio: 500/79;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-main img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.top-right {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1vw, 14px);
    flex-shrink: 0;
}

.logo-sub {
    width: clamp(56px, 10vw, 140px);
    aspect-ratio: 50/11;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    white-space: nowrap;
}

.logo-sub img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

/* ========== LANGUAGE ========== */
.lang-switcher {
    position: relative;
    user-select: none;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: clamp(5px, 0.5vw, 7px) clamp(10px, 1vw, 14px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--ease);
    background: transparent;
    color: var(--text-dark);
    font-size: clamp(12px, 0.95vw, 13px);
    font-family: system-ui, sans-serif;
    letter-spacing: 1px;
    min-width: 54px;
    justify-content: center;
}

.lang-current:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.lang-current .arrow {
    font-size: 8px;
    opacity: 0.4;
    transition: transform var(--ease);
}

.lang-switcher.open .lang-current .arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 140px;
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    padding: 4px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: all 0.25s ease;
    box-shadow: 0 8px 30px rgba(117, 180, 224, 0.18);
    z-index: 2000;
}

.lang-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.lang-option {
    display: block;
    width: 100%;
    padding: 10px 18px;
    background: transparent;
    border: none;
    color: var(--text-body);
    font-size: clamp(12px, 0.95vw, 13px);
    font-family: system-ui, sans-serif;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}

.lang-option:hover {
    color: var(--teal);
    background: rgba(0, 173, 169, 0.06);
}

.lang-option.active {
    color: var(--teal);
    font-weight: 500;
    pointer-events: none;
}

.lang-option.active::after {
    content: ' ✓';
    font-size: 11px;
    opacity: 0.7;
}

/* ========== HAMBURGER ========== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1020;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================================
   统一菜单 (.nav-list / .nav-item / .nav-children / .nav-arrow)
   父容器 .pc-nav 和 .mobile-nav 区分样式
   ============================================================= */

/* ---- 共用基础 ---- */
.nav-item {
    position: relative;
}

.nav-item>a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color var(--ease);
    white-space: nowrap;
    position: relative;
}

.nav-arrow {
    font-size: 9px;
    opacity: 0.45;
    transition: transform var(--ease), opacity var(--ease);
    margin-top: 2px;
}

.nav-children a {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-children a:hover {
    color: var(--teal-light);
}

/* ========== PC NAV ========== */
.pc-nav {
    background: var(--bg-menu);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pc-nav>.nav-list {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.pc-nav>.nav-list>.nav-item>a {
    padding: clamp(12px, 1.5vw, 18px) clamp(16px, 2.2vw, 32px);
    font-size: clamp(13px, 1.1vw, 15px);
    font-weight: 400;
    letter-spacing: 1.5px;
}

.pc-nav>.nav-list>.nav-item>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width var(--ease);
}

.pc-nav>.nav-list>.nav-item>a:hover::after,
.pc-nav>.nav-list>.nav-item.active>a::after {
    width: 60%;
}

.pc-nav>.nav-list>.nav-item>a:hover {
    color: var(--blue-light);
}

.pc-nav>.nav-list>.nav-item:hover>a .nav-arrow {
    opacity: 1;
    transform: rotate(180deg);
}

.pc-nav .nav-children {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 170px;
    background: rgba(10, 20, 35, 0.97);
    border: 1px solid rgba(117, 180, 224, 0.1);
    border-radius: 4px;
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.pc-nav>.nav-list>.nav-item:hover>.nav-children {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.pc-nav .nav-children a {
    padding: 11px 24px;
    font-size: clamp(12px, 0.95vw, 13px);
    letter-spacing: 1px;
}

.pc-nav .nav-children a:hover {
    background: rgba(0, 173, 169, 0.06);
    padding-left: 28px;
}

/* ========== MOBILE NAV ========== */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-menu);
    z-index: 1015;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(117, 180, 224, 0.25) transparent;
}

.mobile-nav::-webkit-scrollbar {
    width: 4px;
}

.mobile-nav::-webkit-scrollbar-track {
    background: transparent;
}

.mobile-nav::-webkit-scrollbar-thumb {
    background: rgba(117, 180, 224, 0.25);
    border-radius: 4px;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: sticky;
    top: 0;
    background: var(--bg-menu);
    z-index: 2;
}

.mobile-nav-title {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color 0.2s ease;
}

.mobile-nav-close:hover {
    color: var(--teal-light);
}

.mobile-nav>.nav-list {
    display: flex;
    flex-direction: column;
}

.mobile-nav>.nav-list>.nav-item>a {
    padding: 14px 24px;
    font-size: 14px;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-nav>.nav-list>.nav-item>a:hover {
    color: var(--teal-light);
    padding-left: 30px;
    background: rgba(0, 173, 169, 0.04);
}

.mobile-nav .nav-children {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.mobile-nav .nav-item.has-sub.expanded>.nav-children {
    max-height: 300px;
}

.mobile-nav .nav-children a {
    padding: 12px 24px 12px 48px;
    font-size: 13px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(0, 0, 0, 0.15);
}

.mobile-nav .nav-children a:hover {
    padding-left: 52px;
    background: rgba(0, 173, 169, 0.04);
}

.mobile-nav .nav-item.has-sub>a .nav-arrow {
    margin-left: auto;
    opacity: 0.5;
    transition: transform 0.3s, opacity 0.2s;
}

.mobile-nav .nav-item.has-sub.expanded>a .nav-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.mobile-lang {
    padding: 20px 24px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 4px;
}

.mobile-lang-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.mobile-lang-options {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.mobile-lang-btn {
    flex: 1;
    padding: 10px 0;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    font-family: system-ui, sans-serif;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.mobile-lang-btn:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.mobile-lang-btn:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.04);
}

.mobile-lang-btn.active {
    color: var(--teal-light);
    background: rgba(0, 173, 169, 0.1);
    font-weight: 500;
}

/* ========== BANNER ========== */
.banner-section {
    width: 100%;
    position: relative;
    aspect-ratio: 956/419;
    overflow: hidden;
}

.banner-section .swiper {
    width: 100%;
    height: 100%;
}

.banner-section .swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a2d42;
}

.swiper-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.swiper-slide img.ken-burns {
    animation: kenBurns 18s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.08) translate(-1%, -1%)
    }
}

.banner-slide-content {
    text-align: center;
    z-index: 2;
    padding: 0 20px;
    filter: drop-shadow(0 2px 16px rgba(0, 0, 0, 0.55));
    pointer-events: none;
}

.banner-title {
    font-size: clamp(14px, 2.5vw, 32px);
    font-weight: 300;
    letter-spacing: clamp(2px, 0.8vw, 8px);
    color: #fff;
    margin-top: 8px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.banner-pagination {
    position: absolute;
    bottom: clamp(16px, 3vw, 32px) !important;
    left: 0 !important;
    right: 0 !important;
    text-align: center;
    z-index: 10;
}

.banner-pagination .swiper-pagination-bullet {
    width: clamp(24px, 3vw, 32px);
    height: 3px;
    padding: 5px 0;
    background: rgba(180, 195, 210, 0.2);
    background-clip: content-box;
    -webkit-background-clip: content-box;
    border-radius: 2px;
    opacity: 1;
    transition: all 0.4s;
    margin: 0 4px !important;
}

.banner-pagination .swiper-pagination-bullet-active {
    background-color: var(--teal);
    background-clip: content-box;
    -webkit-background-clip: content-box;
    width: clamp(36px, 4vw, 48px);
}

.banner-pagination.single-bullet .swiper-pagination-bullet {
    background-color: var(--teal);
    background-clip: content-box;
    -webkit-background-clip: content-box;
    width: clamp(36px, 4vw, 48px);
    animation: indicatorPulse 2.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes indicatorPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 40%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent 18%);
    pointer-events: none;
    z-index: 5;
}

/* ========== FOOTER ========== */
.site-footer {
    background: linear-gradient(135deg, #75b4e0 0%, #62a8d6 50%, #55b0ab 100%);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--teal), var(--blue));
}

.footer-main {
    padding: clamp(32px, 5vw, 56px) clamp(20px, 4vw, 60px) clamp(20px, 3vw, 32px);
}

.footer-brand {
    text-align: center;
    margin-bottom: clamp(20px, 3vw, 32px);
}

.footer-brand-name {
    font-family: sans-serif;
    font-size: clamp(20px, 2.5vw, 30px);
    color: #fff;
    letter-spacing: 4px;
}

.footer-brand-sub {
    font-size: clamp(11px, 0.9vw, 13px);
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    margin-top: 4px;
}

.footer-divider {
    width: clamp(40px, 5vw, 60px);
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 auto clamp(20px, 3vw, 30px);
    border-radius: 1px;
}

/* ========== FOOTER CONTACT ========== */
.footer-contact {
    display: flex;
    justify-content: center;
    gap: clamp(32px, 5vw, 80px);
    flex-wrap: wrap;
}

.footer-contact-heading {
    text-align: center;
    font-size: clamp(14px, 1.2vw, 16px);
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 2px;
    margin-bottom: clamp(16px, 2vw, 24px);
}

.contact-card {
    text-align: left;
    min-width: 220px;
}

.contact-name {
    font-size: clamp(14px, 1.2vw, 16px);
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
    font-size: clamp(12px, 1vw, 13px);
}

.contact-label {
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    flex-shrink: 0;
    min-width: 32px;
}

.contact-value {
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.3px;
}

.contact-value a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-value a:hover {
    color: #fff;
}

.contact-email {
    transition: color 0.2s ease;
}

.contact-email:hover {
    color: #fff;
    text-decoration: underline;
}

.contact-sep {
    margin: 0 4px;
    opacity: 0.3;
}

.footer-divider-line {
    width: clamp(40px, 5vw, 60px);
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin: clamp(20px, 3vw, 30px) auto 0;
    border-radius: 1px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.12);
    padding: clamp(14px, 1.5vw, 20px) clamp(20px, 4vw, 60px);
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: clamp(11px, 0.85vw, 12px);
    letter-spacing: 2px;
}

.footer-copyright .accent {
    color: var(--teal-light);
    opacity: 0.8;
}

/* ========== RESPONSIVE ========== */
@media(max-width:1024px) {
    .pc-nav>.nav-list>.nav-item>a {
        padding: 14px 20px;
        font-size: 14px;
        letter-spacing: 1px;
    }

    .pc-nav .nav-children {
        min-width: 155px;
    }

    .pc-nav .nav-children a {
        padding: 10px 20px;
        font-size: 12px;
    }
}

@media(max-width:768px) {
    .pc-nav {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }

    .top-bar>.top-right>.lang-switcher {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .mobile-nav.open {
        transform: translateX(0);
    }

    .footer-row {
        flex-direction: column;
        gap: 10px;
    }

    .footer-separator {
        display: none;
    }
}

@media(min-width:769px) {
    .mobile-nav {
        display: none !important;
    }
}

@media(max-width:480px) {
    .top-bar {
        padding: 8px 8px;
        gap: 6px;
    }

    .logo-main {
        width: clamp(72px, 24vw, 120px);
    }

    .logo-sub {
        width: clamp(40px, 12vw, 70px);
    }

    .top-right {
        gap: 6px;
    }

    .mobile-lang-btn {
        font-size: 12px;
        padding: 9px 0;
    }

    .footer-contact {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .contact-card {
        min-width: auto;
        width: 100%;
        text-align: center;
    }

    .contact-row {
        justify-content: center;
    }
}


/* =============================================================
       内页通用框架
       所有内页共享 page-banner / breadcrumb-bar / page-body 结构
       各内页只需在 .page-content 内填写不同内容
       ============================================================= */

/* ========== 内页 Banner ========== */
.page-banner {
    width: 100%;
    height: clamp(200px, 25vw, 350px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a2d42;
}

.page-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.85);
}

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-banner-content h1 {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 300;
    color: #fff;
    letter-spacing: clamp(3px, 1vw, 10px);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

/* ========== 面包屑 ========== */
.breadcrumb-bar {
    background: #fff;
    border-bottom: 1px solid var(--border-subtle);
    padding: clamp(10px, 1.2vw, 14px) clamp(16px, 4vw, 60px);
}

.breadcrumb-bar .breadcrumb {
    max-width: 1100px;
    margin: 0 auto;
    font-size: clamp(12px, 0.9vw, 13px);
    color: rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(0, 0, 0, 0.45);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.breadcrumb a:hover {
    color: var(--teal);
}

.breadcrumb .sep {
    margin: 0 10px;
    color: rgba(0, 0, 0, 0.18);
    font-size: 10px;
    user-select: none;
}

.breadcrumb .current {
    color: var(--text-dark);
    font-weight: 500;
}

/* ========== 内页通用容器 ========== */
.page-body {
    padding: clamp(36px, 5vw, 64px) clamp(16px, 4vw, 60px);
}

.page-container {
    max-width: 1100px;
    margin: 0 auto;
}

.page-title {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 2px;
    text-align: center;
    padding-bottom: clamp(16px, 2vw, 24px);
    margin-bottom: clamp(28px, 4vw, 48px);
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
    border-radius: 1px;
}

.page-content {
    /* 内页各自内容的容器 */
}

/* =============================================================
       下载中心 — 页面专属样式
       ============================================================= */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: clamp(16px, 2vw, 24px);
}

.download-card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: clamp(20px, 2.5vw, 32px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: fadeUp 0.5s ease forwards;
}

.download-card:nth-child(1) {
    animation-delay: 0.05s;
}

.download-card:nth-child(2) {
    animation-delay: 0.1s;
}

.download-card:nth-child(3) {
    animation-delay: 0.15s;
}

.download-card:nth-child(4) {
    animation-delay: 0.2s;
}

.download-card:nth-child(5) {
    animation-delay: 0.25s;
}

.download-card:nth-child(6) {
    animation-delay: 0.3s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.download-card:hover {
    border-color: var(--teal);
    box-shadow: 0 8px 30px rgba(0, 173, 169, 0.1);
    transform: translateY(-3px);
}

.download-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.download-card-icon svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.download-card-title {
    font-size: clamp(15px, 1.2vw, 17px);
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.download-card-desc {
    font-size: clamp(12px, 0.9vw, 13px);
    color: var(--text-body);
    opacity: 0.6;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.download-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: clamp(11px, 0.8vw, 12px);
    color: rgba(0, 0, 0, 0.35);
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 18px;
    border: 1px solid var(--teal);
    border-radius: 4px;
    color: var(--teal);
    font-size: clamp(12px, 0.9vw, 13px);
    font-family: system-ui, sans-serif;
    text-decoration: none;
    letter-spacing: 0.5px;
    cursor: pointer;
    background: transparent;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.download-btn:hover {
    background: var(--teal);
    color: #fff;
}

.download-btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* ========== 展会介绍 — 页面专属样式 ========== */
.intro-hero {
    text-align: center;
    margin-bottom: clamp(36px, 4vw, 56px);
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
}

.intro-hero h2 {
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 300;
    color: var(--text-dark);
    letter-spacing: clamp(2px, 0.6vw, 6px);
    line-height: 1.6;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro-section {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: clamp(28px, 3.5vw, 48px);
    margin-bottom: clamp(24px, 3vw, 40px);
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
}

.intro-section:nth-of-type(2) {
    animation-delay: 0.1s;
}

.intro-section:nth-of-type(3) {
    animation-delay: 0.2s;
}

.intro-section h3 {
    font-size: clamp(17px, 1.5vw, 21px);
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.intro-section h3::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
    border-radius: 1px;
}

.intro-section p {
    font-size: clamp(14px, 1.05vw, 16px);
    color: var(--text-body);
    line-height: 2;
    opacity: 0.7;
    text-align: justify;
}

.event-info-bar {
    display: flex;
    justify-content: center;
    gap: clamp(24px, 4vw, 64px);
    flex-wrap: wrap;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    border-radius: 8px;
    padding: clamp(28px, 3vw, 44px) clamp(20px, 3vw, 48px);
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
    animation-delay: 0.3s;
}

.event-info-item {
    text-align: center;
}

.event-info-item .info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.event-info-item .info-icon svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.event-info-item .info-label {
    font-size: clamp(11px, 0.8vw, 12px);
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.event-info-item .info-value {
    font-size: clamp(16px, 1.4vw, 20px);
    color: #fff;
    letter-spacing: 1px;
    font-weight: 500;
}

@media(max-width:640px) {
    .event-info-bar {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

/* ========== 展会亮点 — 页面专属样式 ========== */
.highlights-intro {
    font-size: clamp(15px, 1.2vw, 18px);
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: clamp(20px, 2.5vw, 32px);
    opacity: 0;
    animation: fadeUp 0.5s ease forwards;
}

.highlights-list {
    margin-bottom: clamp(32px, 4vw, 56px);
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: clamp(14px, 1.5vw, 20px);
    padding: clamp(16px, 2vw, 24px) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    opacity: 0;
    animation: fadeUp 0.5s ease forwards;
}

.highlight-item:last-child {
    border-bottom: none;
}

.highlight-item:nth-child(1) {
    animation-delay: 0.05s;
}

.highlight-item:nth-child(2) {
    animation-delay: 0.12s;
}

.highlight-item:nth-child(3) {
    animation-delay: 0.19s;
}

.highlight-item:nth-child(4) {
    animation-delay: 0.26s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight-num {
    width: clamp(32px, 3vw, 40px);
    height: clamp(32px, 3vw, 40px);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 500;
    color: #fff;
}

.highlight-text {
    font-size: clamp(14px, 1.1vw, 16px);
    color: var(--text-body);
    line-height: 1.8;
    padding-top: 4px;
}

/* -- 图片网格 -- */
.highlight-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(12px, 1.5vw, 20px);
    opacity: 0;
    animation: fadeUp 0.5s ease forwards;
    animation-delay: 0.35s;
}

.highlight-gallery .gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: #e4edf5;
}

.highlight-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.highlight-gallery .gallery-item:hover img {
    transform: scale(1.04);
}

@media(max-width:640px) {
    .highlight-gallery {
        grid-template-columns: 1fr;
    }
}

/* ========== 联系我们 — 页面专属样式 ========== */
.contact-section-heading {
    text-align: center;
    font-size: clamp(15px, 1.3vw, 18px);
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: clamp(24px, 3vw, 40px);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 2.5vw, 32px);
}

.contact-card-page {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: clamp(24px, 2.5vw, 36px) clamp(20px, 2.5vw, 32px);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeUp 0.5s ease forwards;
}

.contact-card-page:nth-child(1) {
    animation-delay: 0.05s;
}

.contact-card-page:nth-child(2) {
    animation-delay: 0.12s;
}

.contact-card-page:nth-child(3) {
    animation-delay: 0.19s;
}

.contact-card-page:nth-child(4) {
    animation-delay: 0.26s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-card-page:hover {
    border-color: var(--teal);
    box-shadow: 0 8px 32px rgba(0, 173, 169, 0.1);
    transform: translateY(-3px);
}

.contact-card-page .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.contact-card-page .card-icon svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.contact-card-page .card-name {
    font-size: clamp(17px, 1.4vw, 20px);
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 1px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.contact-card-page .card-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 8px;
    font-size: clamp(13px, 1vw, 14px);
}

.contact-card-page .card-label {
    color: rgba(0, 0, 0, 0.35);
    letter-spacing: 1px;
    flex-shrink: 0;
    min-width: 36px;
}

.contact-card-page .card-value {
    color: var(--text-body);
    word-break: break-all;
}

.contact-card-page .card-value a {
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-card-page .card-value a:hover {
    color: var(--teal);
}

.contact-card-page .card-sep {
    margin: 0 4px;
    opacity: 0.25;
}

@media(max-width:640px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

/* ========== 如何到达 — 页面专属样式 ========== */

/* -- 关于澳门 -- */
.about-macau {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: clamp(24px, 3vw, 40px);
    margin-bottom: clamp(32px, 4vw, 56px);
    opacity: 0;
    animation: fadeUp 0.5s ease forwards;
}

.about-macau h3 {
    font-size: clamp(17px, 1.5vw, 20px);
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.about-macau p {
    font-size: clamp(13px, 1vw, 15px);
    color: var(--text-body);
    line-height: 2;
    opacity: 0.75;
}

.about-macau a {
    color: var(--teal);
    text-decoration: none;
    transition: color 0.2s;
}

.about-macau a:hover {
    color: var(--teal-light);
    text-decoration: underline;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -- 交通方式标题 -- */
.transport-heading {
    font-size: clamp(17px, 1.5vw, 20px);
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 1.5px;
    text-align: center;
    margin-bottom: clamp(24px, 3vw, 40px);
}

/* -- 交通卡片网格 -- */
.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: clamp(16px, 2vw, 24px);
    margin-bottom: clamp(32px, 4vw, 56px);
}

.transport-card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: clamp(20px, 2.5vw, 32px);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeUp 0.5s ease forwards;
}

.transport-card:nth-child(1) {
    animation-delay: 0.05s;
}

.transport-card:nth-child(2) {
    animation-delay: 0.12s;
}

.transport-card:nth-child(3) {
    animation-delay: 0.19s;
}

.transport-card:hover {
    border-color: var(--teal);
    box-shadow: 0 8px 30px rgba(0, 173, 169, 0.08);
    transform: translateY(-3px);
}

.transport-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.transport-card-icon svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.transport-card h4 {
    font-size: clamp(16px, 1.3vw, 18px);
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 1px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.transport-item {
    margin-bottom: 14px;
}

.transport-item:last-child {
    margin-bottom: 0;
}

.transport-item-title {
    font-size: clamp(13px, 1vw, 14px);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.transport-item-desc {
    font-size: clamp(12px, 0.9vw, 13px);
    color: var(--text-body);
    opacity: 0.6;
    line-height: 1.7;
}

.transport-item-desc a {
    color: var(--teal);
    text-decoration: none;
    transition: color 0.2s;
}

.transport-item-desc a:hover {
    color: var(--teal-light);
    text-decoration: underline;
}

/* -- 出入境通道 -- */
.border-section {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: clamp(24px, 3vw, 40px);
    margin-bottom: clamp(32px, 4vw, 56px);
    opacity: 0;
    animation: fadeUp 0.5s ease forwards;
    animation-delay: 0.25s;
}

.border-section h3 {
    font-size: clamp(17px, 1.5vw, 20px);
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.border-table {
    width: 100%;
    border-collapse: collapse;
}

.border-table th {
    text-align: left;
    padding: clamp(10px, 1vw, 14px) clamp(12px, 1.5vw, 20px);
    font-size: clamp(12px, 0.9vw, 13px);
    font-weight: 500;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    letter-spacing: 0.5px;
}

.border-table th:first-child {
    border-radius: 4px 0 0 0;
}

.border-table th:last-child {
    border-radius: 0 4px 0 0;
}

.border-table td {
    padding: clamp(10px, 1vw, 14px) clamp(12px, 1.5vw, 20px);
    font-size: clamp(12px, 0.9vw, 13px);
    color: var(--text-body);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    line-height: 1.7;
}

.border-table tr:last-child td {
    border-bottom: none;
}

.border-table tr:hover td {
    background: rgba(0, 173, 169, 0.03);
}

.border-table td:first-child {
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
}

.border-table a {
    color: var(--teal);
    text-decoration: none;
    transition: color 0.2s;
}

.border-table a:hover {
    text-decoration: underline;
}

/* -- 入境签注 -- */
.visa-note {
    background: linear-gradient(135deg, rgba(117, 180, 224, 0.08), rgba(0, 173, 169, 0.08));
    border: 1px solid rgba(0, 173, 169, 0.15);
    border-radius: 8px;
    padding: clamp(20px, 2.5vw, 32px);
    margin-bottom: clamp(24px, 3vw, 36px);
    opacity: 0;
    animation: fadeUp 0.5s ease forwards;
    animation-delay: 0.3s;
}

.visa-note h3 {
    font-size: clamp(15px, 1.2vw, 17px);
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.visa-note p {
    font-size: clamp(13px, 1vw, 14px);
    color: var(--text-body);
    opacity: 0.7;
    line-height: 1.8;
}

/* -- 相关链接 -- */
.related-links {
    text-align: center;
    font-size: clamp(13px, 1vw, 14px);
    color: var(--text-body);
    opacity: 0.5;
    letter-spacing: 0.5px;
}

.related-links a {
    color: var(--teal);
    text-decoration: none;
    transition: color 0.2s;
}

.related-links a:hover {
    text-decoration: underline;
}

@media(max-width:640px) {
    .border-table {
        display: block;
    }

    .border-table thead {
        display: none;
    }

    .border-table tbody {
        display: block;
    }

    .border-table tr {
        display: block;
        margin-bottom: 12px;
        border: 1px solid var(--border-subtle);
        border-radius: 6px;
        padding: 12px 16px;
    }

    .border-table td {
        display: flex;
        padding: 4px 0;
        border-bottom: none;
    }

    .border-table td:first-child {
        width: 80px;
        flex-shrink: 0;
        white-space: normal;
    }
}

/* ========== 参展费用 — 页面专属样式 ========== */
.pricing-card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: clamp(24px, 3vw, 36px);
    opacity: 0;
    animation: fadeUp 0.5s ease forwards;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.12s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-card-header {
    background: linear-gradient(135deg, var(--blue), var(--teal));
    padding: clamp(18px, 2vw, 28px) clamp(24px, 3vw, 36px);
    display: flex;
    align-items: center;
    gap: 14px;
}

.pricing-card-header .icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-card-header .icon-wrap svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.pricing-card-header h3 {
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 500;
    color: #fff;
    letter-spacing: 2px;
}

.pricing-card-body {
    padding: clamp(24px, 3vw, 36px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 28px);
    margin-bottom: 20px;
}

.pricing-item {
    text-align: center;
    padding: clamp(16px, 2vw, 24px) clamp(12px, 1.5vw, 20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.01);
}

.pricing-item .p-region {
    font-size: clamp(13px, 1vw, 14px);
    color: var(--text-body);
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    opacity: 0.6;
}

.pricing-item .p-price {
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.pricing-item .p-currency {
    font-size: clamp(12px, 0.9vw, 13px);
    font-weight: 400;
    color: var(--teal);
    display: block;
    margin-bottom: 2px;
}

.pricing-item .p-unit {
    font-size: clamp(12px, 0.85vw, 13px);
    font-weight: 400;
    color: rgba(0, 0, 0, 0.35);
    margin-top: 2px;
}

.pricing-note {
    font-size: clamp(13px, 1vw, 14px);
    color: var(--text-body);
    opacity: 0.55;
    line-height: 1.8;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-note strong {
    color: var(--text-dark);
    opacity: 1;
}

/* -- 二维码登记区 -- */
.register-section {
    background: linear-gradient(135deg, rgba(117, 180, 224, 0.06), rgba(0, 173, 169, 0.06));
    border: 1px solid rgba(0, 173, 169, 0.12);
    border-radius: 8px;
    padding: clamp(32px, 4vw, 56px) clamp(20px, 3vw, 48px);
    text-align: center;
    opacity: 0;
    animation: fadeUp 0.5s ease forwards;
    animation-delay: 0.25s;
}

.register-section h3 {
    font-size: clamp(17px, 1.5vw, 20px);
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.register-section p {
    font-size: clamp(13px, 1vw, 14px);
    color: var(--text-body);
    opacity: 0.55;
    letter-spacing: 0.5px;
    margin-bottom: clamp(20px, 2.5vw, 32px);
}

.qr-code-wrap {
    display: inline-block;
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: clamp(16px, 2vw, 24px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.qr-code-wrap img {
    display: block;
    width: clamp(140px, 16vw, 200px);
    height: clamp(140px, 16vw, 200px);
    object-fit: contain;
}

.qr-code-hint {
    margin-top: 12px;
    font-size: clamp(12px, 0.9vw, 13px);
    color: var(--teal);
    letter-spacing: 0.5px;
}

@media(max-width:640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}


/* ========== 敬请期待 — 页面专属样式 ========== */
.coming-soon {
    text-align: center;
    padding: clamp(40px, 6vw, 80px) 0;
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto clamp(24px, 3vw, 40px);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(117, 180, 224, 0.12), rgba(0, 173, 169, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 3s ease-in-out infinite;
}

.coming-soon-icon svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: var(--teal);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.06);
        opacity: 1;
    }
}

.coming-soon h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 300;
    color: var(--text-dark);
    letter-spacing: clamp(3px, 1vw, 8px);
    margin-bottom: 12px;
}

.coming-soon p {
    font-size: clamp(13px, 1vw, 15px);
    color: var(--text-body);
    opacity: 0.5;
    letter-spacing: 1px;
    line-height: 1.8;
    max-width: 400px;
    margin: 0 auto;
}

.coming-soon .home-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: clamp(24px, 3vw, 40px);
    padding: 10px 28px;
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    color: var(--text-body);
    font-size: clamp(13px, 1vw, 14px);
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.coming-soon .home-link:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.coming-soon .home-link svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}