:root {
    --primary: #ff2040;
    --primary-hover: #EB2040;
    --dark: #1f2329;
    --gray-bg: #f9fafb;
    --text-main: #000;
    --text-sub: #6b7280;
    --border: #e5e7eb;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 12px;
    --container-width: 1200px;
    --gold: #bfa172;
}

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

/* 给html标签添加滚动行为配置，全局生效 */
html {
    scroll-behavior: smooth;
    /* 平滑滚动 */
    /* scroll-behavior: auto;  默认瞬间滚动（可恢复默认） */
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    color: var(--text-main);
    background-color: #f7f8fa;
    line-height: 1.6;
    overflow-x: hidden;
    min-width: 1200px;
    /* Ensure layout doesn't break on small screens */
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

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

/* --- Utilities --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
}

.bg-color-one {
    background: url(../img/image_bg_color_one.8d723024f6d8bcf25e80..png) no-repeat center center / cover;
}

.bg-color-two {
    background: url(../img/image_bg_color_two.9ad8ac72261202816dc0..png) no-repeat center center / cover;
}

.bg-color-three {
    background: url(../img/image_bg_color_three.0be6060018bd65409ce0..jpg) no-repeat center center / cover;
}

.bg-color-four {
    background: url(../img/image_bg_color_four.29ae0fcd203de52d6469..png) no-repeat center center / cover;
}

.bg-color-five {
    background: url(../img/image_bg_color_five.f20b6025f306e588d56a..png) no-repeat center center / cover;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

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

.flex-col {
    flex-direction: column;
}

.gap-2 {
    gap: 8px;
}

.gap-4 {
    gap: 16px;
}

.bg-fff {
    background-color: #fff;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-primary {
    color: var(--primary);
}

.font-bold {
    font-weight: 700;
}

/* --- Header --- */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    z-index: 1000;
    background: transparent;

    /* PC layout fix */
}

.header-inner {
    min-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo span {
    margin-left: 4px;
    margin-right: 56px;
    font-weight: 800;
    font-size: 18px;
    color: #000;
}

.logo-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 14px;
    color: var(--text-main);
}

.nav-links a:hover {
    color: var(--primary);
    font-weight: 600;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-text {
    height: 32px;
    line-height: 32px;
    padding: 0 16px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    border-radius: 22px;
    cursor: pointer;
}

.btn-text:hover {
    background-color: #eeeeee;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    padding: 0 16px;
    height: 32px;
    line-height: 32px;
    border-radius: 22px;
    font-size: 14px;
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

/* --- Hero Section --- */
.hero-section {
    padding-top: 44px;
    padding-bottom: 80px;
    height: 852px;
    position: relative;
    overflow: hidden;
}

/* Abstract Background shapes */
.hero-bg-blob {
    position: absolute;
    inset: 0;
    left: 0;
    right: 0;
    top: 0;
    background: url(../img/image_bg_banner_top.8fa49f725f7da01ddefa..png) no-repeat center center;
    background-size: cover;
    z-index: 0;
    min-width: 1200px;
    height: 852px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 12px;
    z-index: 10;
    margin-bottom: 60px;
}

.hero-text {
    max-width: 500px;
}

.hero-title {
    font-size: 64px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 30px;
    color: var(--primary);
}

.hero-desc {
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 1;
}

.hero-desc-num {
    margin-right: 3px;
    font-size: 48px;
}

.hero-btn {
    margin-top: 48px;
    width: 150px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff2332;
    border-radius: 28px;
    font-size: 20px;
    color: #fff;
}

.hero-btn:hover {
    background: var(--primary-hover);
}

.hero-bg-banner-top {
    width: 776px;
    height: 747px;
}

.hero-bg-banner-top img {
    width: 100%;
    height: 100%;
}

.hero-img-placeholder {
    flex: 1;
    height: 400px;
    /* Ideally this is a 3D illustration */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* --- Hero Stats Glassmorphism --- */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 10;
}

/* Glass Card Style */
.stat-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 32px 16px;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.08);
}

.stat-num {
    font-size: 42px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.stat-label {
    font-size: 15px;
    color: #6b7280;
    font-weight: 500;
}

/* --- Trusted Section --- */
.section-py {
    padding: 120px 0;
}

.section-pty {
    padding-top: 120px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    display: flex;
    align-items: center;
    line-height: 56px;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-main);
}


.section-title span {
    font-size: 56px;
}

.large-font {
    line-height: 64px;
    font-size: 56px;
}

.large-font span {
    font-size: 66px;
}

.section-sub {
    line-height: 32px;
    font-size: 24px;
    color: var(--text-main);
}

.brand-tabs {
    display: flex;
    justify-content: center;
    gap: 196px;
}

.brand-tab {
    display: flex;
    align-items: center;
    padding: 24px 40px;
    border-radius: 40px;
    background-color: var(--white);
    font-size: 24px;
    color: var(--text-main);
}

.brand-tab .brand-icon {
    width: 28px;
    height: 28px;
    margin-right: 8px;
}

.brand-wall {
    margin-top: 48px;
}

.brand-wall-img {
    width: 1200px;
    height: 530px;
}

/* --- Risk Banner --- */
.risk-section {
    height: 480px;
    position: relative;
}

.risk-overlay {
    position: absolute;
    inset: 0;
    background-image: url(../img/image_bg_center_company.df2476f022b5592ee376..png);
    background-size: cover;
    background-position: center;
}

.risk-container {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.risk-title {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 16px;
}

.risk-sub {
    font-size: 24px;
}

.btn-risk {
    margin-top: 24px;
    display: flex;
    align-items: center;
    background: transparent;
    color: white;
    padding: 0 40px;
    height: 48px;
    font-weight: bold;
    font-size: 18px;
    transition: background 0.2s;
    border: 0.5px solid #ffffff;
    border-radius: 24.5px;
}

.btn-risk img {
    margin-left: 4px;
    width: 24px;
    height: 24px;
}

.btn-risk:hover {
    background: var(--primary-hover);
    border: none;
}

/* --- Feature Section (Carousel) --- */
.feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feature-content {
    /* flex: 1; */
}

.feature-phone-area {
    position: relative;
    width: 650px;
    height: 502px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-phone-box {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s;
    width: 650px;
    height: 502px;
}

.feature-phone-box.active {
    opacity: 1;
    pointer-events: auto;
}

.feature-phone-img {
    width: 100%;
    height: 100%;
}

/* Feature List */
.feature-list-item {
    position: relative;
    width: 450px;
    height: 114px;
    padding: 20px;
    background: #fff;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    margin-bottom: 20px;
}

.feature-list-item:hover {
    background: #f7f8fa;
}

.feature-list-item.active {
    background: #f7f8fa;
}

.feature-list-item.active::before {
    content: '';
    position: absolute;
    z-index: 10;
    left: 0;
    top: 20px;
    width: 4px;
    height: 74px;
    background: var(--primary);
    border-radius: 0px 100px 100px 0px;
}

.f-title {
    font-size: 18px;
    color: var(--text-main);
    font-weight: bold;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.f-desc {
    color: #999;
    font-size: 14px;
    line-height: 22px;
}

.feature-list-item.active .f-desc {
    color: var(--text-main);
}

/* 无限轮播容器 - 显示2个位移1个 */
.carousel-container {
    position: relative;
    width: 120%;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-viewport {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.card-item-px10 {
    padding: 0 10px;
}

.talent-card {
    /* 每屏显示2个，计入间距 */
    width: 800px;
    background: white;
    border-radius: 30px;
    min-height: 480px;
    display: flex;
}

.card-info {
    width: 300px;
    height: 100%;
    padding: 64px 20px 0 40px;
}

.card-title {
    margin-bottom: 50px;
    font-size: 26px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-desc {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 36px;
}

.card-sub-desc {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.talent-icon {
    width: 40px;
    height: 40px;
}

.icon-blue {
    background: #1890ff;
}

.icon-orange {
    background: #ff7a45;
}

.talent-wrapper {
    width: 500px;
    height: 100%;
}

.talent-phone-img {
    width: 100%;
    height: 100%;
}

/* 2轮播导航控制 */
.carousel-nav {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
}

.nav-arrow img {
    width: 24px;
    height: 24px;
}

.nav-arrow:hover {
    background: #eaebed;
}

.dots-box {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #ffffff;
    padding: 14px 24px;
    border-radius: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #e5e7eb;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.dot.active {
    width: 40px;
    /* background: var(--primary); */
    border-radius: 6px;
}

.dot-fill {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0%;
    background: var(--primary);
    border-radius: 6px;
}

.dot.active .dot-fill {
    /* Animation duration should match the slider interval */
    animation: progressFill 4s linear forwards;
}

@keyframes progressFill {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.bg-gray {
    background-color: #f7f8fa;
}

/* --- AI Slider Section (New Carousel Layout) --- */
.ai-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    /* width: max-content; */
}

.ai-slide {
    width: 400px;
    border-radius: 30px;
    overflow: hidden;
    text-align: center;
    padding: 40px 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

/* Specific card colors */
.ai-slide.cyan {
    background: linear-gradient(180deg, #fce6e6, rgba(247, 248, 250, 0.00));
}

.ai-slide.blue {
    background: linear-gradient(180deg, #fce6f7, rgba(247, 248, 250, 0.00));
}

.ai-slide.pink {
    background: linear-gradient(180deg, #e6ebfc, rgba(247, 248, 250, 0.00));
}

.ai-slide.orange {
    background: linear-gradient(180deg, #e6f5fc, rgba(247, 248, 250, 0.00));
}

.ai-card-tag {
    font-size: 24px;
    color: #000;
    margin-bottom: 12px;
    font-weight: 600;
}

.ai-card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 42px;
    line-height: 24px;
    color: #000;
}

.ai-phone {
    width: 400px;
    height: 355px;
}

.ai-phone-img {
    width: 100%;
    height: 100%;
}

/* --- Services Section --- */
.com-ship-box {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.com-ship-card {
    width: 590px;
    height: 263px;
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.com-ship-img {
    position: absolute;
    top: 0;
    left: 0;
    inset: 0;
    width: 100%;
    height: 100%;
}

.com-ship-content {
    position: relative;
    z-index: 10;
    padding: 32px 24px 0;
    width: 214px;
}

.srv-title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
}

.services-row {
    display: flex;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.srv-item {
    padding: 32px 24px;
    background: #f7f8fa;
    border-radius: 30px;
    text-align: left;
}

.srv-icon {
    width: 64px;
    height: 64px;
    margin-top: 30px;
}

.srv-desc {
    font-size: 18px;
    color: #666;
    margin-top: 20px;
}

.srv-desc span {
    font-weight: 600;
    color: #000;
}

/* --- Insights (News Slider) --- */
.news-slider-container {
    position: relative;
    width: 1200px;
    /* Slightly narrower than full width for card look */
    margin: 0 auto;
}

.news-track {
    display: flex;
    width: 100%;
    gap: 20px;
}

.news-slide {
    position: relative;
    flex: 1;
    height: 474px;
    cursor: pointer;
    transition: transform 0.3s;
}

.news-slide:hover {
    transform: scale(1.04);
}


.news-slide-img {
    position: relative;
    width: 100%;
    height: 258px;
    border-radius: 30px 30px 0 0;
    object-fit: cover;
}

.news-slide-content {
    position: absolute;
    top: 238px;
    left: 0;
    right: 0;
    z-index: 12;
    height: 236px;
    background: white;
    padding: 32px 24px;
    border-radius: 20px 20px 30px 30px;
    overflow: hidden;
}

.news-slide-title {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin-bottom: 12px;
}

.news-slide-desc {
    margin-bottom: 40px;
    font-size: 14px;
    color: #666;
}

.view-more {
    font-size: 16px;
    color: #ff2332;
    display: flex;
    align-items: center;
    gap: 4px;
}

.view-more .swap_right_arrow {
    width: 24px;
    height: 24px;
}


.news-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.news-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #6b7280;
    font-size: 18px;
}

.news-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.news-dots-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-dot {
    width: 8px;
    height: 8px;
    background: #d1d5db;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.news-dot.active {
    width: 24px;
    /* background: var(--primary); */
    border-radius: 4px;
}

.news-dot-fill {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0%;
    background: var(--primary);
    border-radius: 4px;
}

.news-dot.active .news-dot-fill {
    /* Animation duration should match the slider interval */
    animation: progressFill 4s linear forwards;
}

@keyframes progressFill {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* --- Dark Intro Section (Enterprise Intro & Honors Merged) --- */
.dark-intro-section {
    /* background: #1f2329; */
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Dark overlay */
.dark-intro-overlay {
    position: absolute;
    inset: 0 0 30% 0;
    background: url(../img/image_company_introduce_bg.282bc510232dfa96e428..png) no-repeat center center;
    background-size: cover;
}

.intro-wrapper {
    position: relative;
    z-index: 10;
    padding: 120px 0;
    /* Extra bottom padding for overlap if needed, or just space */
    text-align: center;
}

.intro-text-block {
    max-width: 1200px;
    margin: 0 auto 32px;
}

.intro-title {
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 16px;
}

.intro-sub {
    margin-bottom: 64px;
    font-size: 24px;
    color: #fff;
}

.intro-desc {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 80px;
}

.intro-stat-item {
    flex: 1;
    text-align: center;
    position: relative;
    color: #fff;
}

/* Divider line */
.intro-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.intro-stat-val {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1;
}

.intro-stat-unit {
    font-size: 20px;
}

.intro-stat-label {
    font-family: PingFang SC, PingFang SC-Regular;
    font-size: 20px;
}

/* Honors Card (Inside Dark Section) */
.honors-card-container {
    border-radius: 20px;
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.honors-card-container img {
    width: 1200px;
    height: 480px;
}



/* --- Bottom CTA --- */
.bottom-cta {
    padding: 120px 0;
    text-align: center;
}

.cta-title {
    line-height: 56px;
    font-size: 48px;
    font-weight: 800;
    color: #000;
    margin-bottom: 16px;
}

.cta-subtitle {
    line-height: 28px;
    font-size: 20px;
    color: #000;
    margin-bottom: 35px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-cta-red {
    display: flex;
    align-items: center;
    background: #ff2040;
    color: white;
    padding: 12px 40px;
    border-radius: 24px;
    font-size: 18px;
    transition: background 0.2s;
}

.btn-cta-red:hover {
    background: var(--primary-hover);
}

.btn-cta-red img {
    margin-left: 4px;
    width: 24px;
    height: 24px;
}

/* --- Footer --- */
footer {
    background: #222222;
    color: #fff;
    padding: 88px 0 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 18px;
    font-weight: bold;
    width: 1200px;
    margin: 0 auto 26px;
}

.footer-logo-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 1200px;
    margin: 0 auto 60px;
    gap: 40px;
}

.footer-contact-block {
    display: flex;
    gap: 20px;
}

.footer-qr-placeholder {
    width: 108px;
    height: 108px;
    background: #fff;
    border-radius: 8px;
}

.footer-qr-inner {
    width: 108px;
    height: 108px;
}

.footer-contact-text {
    text-align: center;
    font-size: 12px;
    color: #fff;
    margin-top: 8px;
}

.footer-contact-info {
    padding: 5px 0;
    font-size: 14px;
    color: #fff;
    line-height: 22px;
}

.footer-contact-info .label {
    margin-right: 12px;
    color: #ddd;
}

.footer-social-block {
    display: flex;
    gap: 24px;
}

.footer-copyright-line {
    width: 100%;
    height: 1px;
    opacity: 0.2;
    background: #dcdcdc;
}

.footer-copyright {
    border-top: 1px solid hsla(0, 0%, 100%, .1);
    padding-top: 40px;
    text-align: center;
    font-size: 12px;
    color: #999;
}

/* --- Login Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.login-modal {
    width: 960px;
    height: 500px;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .login-modal {
    transform: scale(1);
}

/* Decorative background lines simulation */
.login-modal::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../img/image_tc_bg_one.19a2b024b4c09924efac..png);
    background-size: cover;
    pointer-events: none;
    z-index: 0;
    width: 960px;
    height: 500px;
    border-radius: 20px;
}

.guide-modal {
    width: 418px;
    height: 500px;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .guide-modal {
    transform: scale(1);
}

.guide-modal::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../img/image_tc_bg_two.ec03de2483b1bc6b2087..png);
    background-size: cover;
    pointer-events: none;
    z-index: 0;
    width: 418px;
    height: 500px;
    border-radius: 20px;
}

.modal-close-container {
    position: absolute;
    bottom: -66px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

.modal-close-icon {
    width: 42px;
    height: 42px;
}

/* Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.8s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
