@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Cormorant+Garamond:wght@300;400;500;600;700&family=Cinzel:wght@400;500;600;700;900&display=swap');

:root {
    --gold-bright: #FFD700;
    --gold-mid: #E6BE8A;
    --gold-deep: #CD853F;
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #E6BE8A 50%, #CD853F 100%);
    --ocean-deep: #051923;
    --ocean-mid: #003554;
    --ocean-light: #006494;
    --ocean-gradient: linear-gradient(180deg, #003554 0%, #051923 100%);
    --pearl-light: #FFF5EE;
    --pearl-mid: #F8F4E3;
    --pearl-gradient: radial-gradient(ellipse at center, #FFF5EE 0%, #F8F4E3 60%, #E8DCC0 100%);
    --coral-pink: #F08080;
    --starfish-orange: #FF7F50;
    --bg-ocean: #0a2540;
    --bg-pearl: #FBF8F1;
    --text-light: #F8F4E3;
    --text-gold: #FFD700;
    --text-dark: #1a0f00;
    --text-muted: #8B7355;
    --border-pearl: rgba(255, 215, 0, 0.3);
    --shadow-gold: 0 8px 32px rgba(255, 215, 0, 0.15);
}

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

body {
    font-family: "Cormorant Garamond", "Playfair Display", "PingFang SC", "Microsoft YaHei", serif;
    background: var(--ocean-deep);
    color: var(--text-light);
    line-height: 1.8;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 10%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 90%, rgba(0, 100, 148, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(248, 244, 227, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== 气泡动画 ===== */
.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(255, 215, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.2);
    pointer-events: none;
    animation: rise linear infinite;
    z-index: 1;
}

@keyframes rise {
    0% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { opacity: 0.8; }
    100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}

/* ===== 漂浮装饰 ===== */
.float-decor {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
    opacity: 0.4;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* ===== 鲍鱼贝壳LOGO ===== */
.aby-logo {
    width: 56px;
    height: 56px;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.aby-shell {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50% 50% 45% 45% / 55% 55% 45% 45%;
    background:
        radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.6) 0%, transparent 30%),
        conic-gradient(from 45deg, #CD853F, #FFD700, #E6BE8A, #FFD700, #CD853F);
    box-shadow:
        inset 0 -8px 16px rgba(205, 133, 63, 0.5),
        inset 0 4px 8px rgba(255, 255, 255, 0.3),
        0 4px 16px rgba(255, 215, 0, 0.3);
}

.aby-shell::before {
    content: "";
    position: absolute;
    top: 12%;
    left: 15%;
    right: 15%;
    bottom: 20%;
    background:
        repeating-radial-gradient(circle at 50% 50%,
            transparent 0px,
            transparent 3px,
            rgba(205, 133, 63, 0.15) 3px,
            rgba(205, 133, 63, 0.15) 4px);
    border-radius: 50% 50% 40% 40%;
}

.aby-by {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Cinzel", serif;
    font-weight: 900;
    font-size: 18px;
    color: var(--ocean-deep);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    z-index: 3;
    letter-spacing: -1px;
}

.aby-gold-pearl {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #FFF9C4, #FFD700 50%, #CD853F);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
    z-index: 4;
}

/* ===== 珍珠串分隔线 ===== */
.pearl-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 24px 0;
}

.pearl-divider .pearl {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #FFF, #F8F4E3 60%, #D4C4A8);
    box-shadow: 0 0 6px rgba(255, 215, 0, 0.3);
}

.pearl-divider .pearl.big {
    width: 12px;
    height: 12px;
}

.pearl-divider .line {
    flex: 0 1 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.4), transparent);
}

/* ===== 顶部导航 ===== */
.aby-header {
    background: linear-gradient(180deg, rgba(5, 25, 35, 0.98) 0%, rgba(0, 53, 84, 0.95) 100%);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.aby-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.aby-logo-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.aby-logo-text .brand {
    font-family: "Cinzel", "Playfair Display", serif;
    font-size: 26px;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    line-height: 1.2;
}

.aby-logo-text .tagline {
    font-family: "Cormorant Garamond", serif;
    font-size: 11px;
    color: var(--pearl-mid);
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.8;
}

.aby-user-btns {
    display: flex;
    gap: 14px;
}

.aby-user-btns a {
    padding: 10px 22px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: "Cinzel", "Playfair Display", serif;
    letter-spacing: 0.5px;
}

.aby-btn-login {
    color: var(--pearl-mid);
    border: 1px solid rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.05);
}

.aby-btn-login:hover {
    background: rgba(255, 215, 0, 0.12);
    border-color: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.15);
}

.aby-btn-vip {
    background: var(--gold-gradient);
    color: var(--ocean-deep);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.aby-btn-vip::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.aby-btn-vip:hover::before { left: 100%; }
.aby-btn-vip:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

/* ===== 主导航条 ===== */
.aby-nav {
    background: linear-gradient(90deg, rgba(0, 53, 84, 0.6) 0%, rgba(5, 25, 35, 0.8) 50%, rgba(0, 53, 84, 0.6) 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.08);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--gold-bright), transparent) 1;
    position: relative;
}

.aby-nav::before, .aby-nav::after {
    content: "🐚";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    opacity: 0.3;
}

.aby-nav::before { left: 4%; }
.aby-nav::after { right: 4%; }

.aby-nav ul {
    display: flex;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    justify-content: center;
}

.aby-nav li { position: relative; }

.aby-nav a {
    display: block;
    padding: 18px 28px;
    color: var(--pearl-mid);
    font-weight: 500;
    font-size: 15px;
    font-family: "Playfair Display", "Cormorant Garamond", serif;
    transition: all 0.3s;
    position: relative;
    letter-spacing: 1px;
}

.aby-nav a::before {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--gold-gradient);
    transition: transform 0.3s;
    border-radius: 2px;
}

.aby-nav a:hover {
    color: var(--gold-bright);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.aby-nav a:hover::before { transform: translateX(-50%) scaleX(1); }

.aby-nav a.active {
    color: var(--gold-bright);
}

.aby-nav a.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

/* ===== HERO 区域 ===== */
.aby-hero {
    background:
        radial-gradient(ellipse at 15% 20%, rgba(255, 215, 0, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 80%, rgba(0, 100, 148, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(248, 244, 227, 0.04) 0%, transparent 70%),
        linear-gradient(180deg, var(--ocean-mid) 0%, var(--ocean-deep) 60%, #020d14 100%);
    padding: 100px 0 130px;
    position: relative;
    overflow: hidden;
    min-height: 620px;
}

.aby-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(100deg,
            transparent 0px,
            transparent 80px,
            rgba(255, 215, 0, 0.02) 80px,
            rgba(255, 215, 0, 0.02) 82px);
    pointer-events: none;
}

.aby-hero-content {
    text-align: center;
    position: relative;
    z-index: 3;
}

.aby-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(205, 133, 63, 0.08));
    color: var(--gold-bright);
    padding: 10px 26px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 215, 0, 0.35);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    font-family: "Cinzel", serif;
    letter-spacing: 2px;
    backdrop-filter: blur(10px);
}

.aby-hero-title {
    font-family: "Cinzel", "Playfair Display", serif;
    font-size: 88px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 8px;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.aby-hero-title .gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 20px rgba(255, 215, 0, 0.25));
}

.aby-hero-title .pearl-text {
    font-family: "Playfair Display", serif;
    font-size: 56px;
    font-weight: 700;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    color: var(--pearl-light);
    text-shadow: 0 2px 10px rgba(248, 244, 227, 0.2);
    letter-spacing: 4px;
}

.aby-hero-sub {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    color: var(--pearl-mid);
    margin: 28px 0 44px;
    font-weight: 400;
    letter-spacing: 3px;
    opacity: 0.92;
}

.aby-hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.aby-btn {
    padding: 16px 44px;
    border-radius: 32px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    font-family: "Cinzel", "Playfair Display", serif;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
}

.aby-btn-primary {
    background: var(--gold-gradient);
    color: var(--ocean-deep);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.35);
}

.aby-btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.6s;
}

.aby-btn-primary:hover::before { left: 100%; }
.aby-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(255, 215, 0, 0.5);
}

.aby-btn-ghost {
    background: transparent;
    color: var(--pearl-light);
    border: 1.5px solid rgba(255, 215, 0, 0.4);
    backdrop-filter: blur(10px);
}

.aby-btn-ghost:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--gold-bright);
    color: var(--gold-bright);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

/* ===== 扇贝形弧形卡片 ===== */
.scallop-card {
    position: relative;
    background: linear-gradient(180deg, rgba(248, 244, 227, 0.04) 0%, rgba(255, 215, 0, 0.02) 100%);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 24px 24px 40% 40% / 24px 24px 20% 20%;
    padding: 36px 28px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    overflow: hidden;
}

.scallop-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0.6;
}

.scallop-card::after {
    content: "";
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 20px;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.08), transparent 70%);
    pointer-events: none;
}

.scallop-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 215, 0, 0.1),
        inset 0 0 30px rgba(255, 215, 0, 0.03);
}

/* ===== 数据统计 ===== */
.aby-stats {
    background:
        linear-gradient(180deg, #020d14 0%, var(--ocean-mid) 100%);
    padding: 56px 0;
    position: relative;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.aby-stats::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
}

.aby-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.aby-stat {
    position: relative;
    padding: 20px 10px;
}

.aby-stat::before, .aby-stat::after {
    content: "◈";
    position: absolute;
    color: var(--gold-bright);
    opacity: 0.3;
    font-size: 10px;
}

.aby-stat::before { top: 0; left: 20%; }
.aby-stat::after { bottom: 0; right: 20%; }

.aby-stat-num {
    font-family: "Cinzel", "Playfair Display", serif;
    font-size: 44px;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.aby-stat-label {
    font-family: "Cormorant Garamond", serif;
    font-size: 15px;
    color: var(--pearl-mid);
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.85;
}

/* ===== 板块通用 ===== */
.aby-section {
    padding: 96px 0;
    position: relative;
}

.aby-section.dark-bg {
    background: linear-gradient(180deg, var(--ocean-deep) 0%, #020d14 50%, var(--ocean-deep) 100%);
}

.aby-section.pearl-bg {
    background:
        radial-gradient(ellipse at 20% 0%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(0, 100, 148, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--ocean-mid) 0%, var(--ocean-deep) 100%);
}

.aby-section-title {
    font-family: "Cinzel", "Playfair Display", serif;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    color: var(--pearl-light);
    letter-spacing: 4px;
}

.aby-section-title .gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aby-section-sub {
    text-align: center;
    color: var(--gold-mid);
    font-family: "Cinzel", serif;
    font-size: 13px;
    letter-spacing: 6px;
    text-transform: uppercase;
    opacity: 0.75;
    margin-bottom: 16px;
}

/* ===== 视频卡片网格 ===== */
.aby-video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.aby-video-card {
    position: relative;
    border-radius: 18px 18px 30% 30% / 18px 18px 12% 12%;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(180deg, rgba(248, 244, 227, 0.05), rgba(255, 215, 0, 0.02));
    border: 1px solid rgba(255, 215, 0, 0.12);
    backdrop-filter: blur(8px);
}

.aby-video-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-gradient);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.4s;
}

.aby-video-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(255, 215, 0, 0.15);
}

.aby-video-card:hover::before { opacity: 1; }

.aby-video-thumb {
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.aby-video-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(5, 25, 35, 0.8) 100%);
}

.aby-video-thumb.v1 { background: linear-gradient(135deg, #CD853F, #FFD700, #003554); }
.aby-video-thumb.v2 { background: linear-gradient(135deg, #003554, #006494, #F08080); }
.aby-video-thumb.v3 { background: linear-gradient(135deg, #051923, #FF7F50, #FFD700); }
.aby-video-thumb.v4 { background: linear-gradient(135deg, #F08080, #CD853F, #003554); }
.aby-video-thumb.v5 { background: linear-gradient(135deg, #FFD700, #F8F4E3, #006494); }
.aby-video-thumb.v6 { background: linear-gradient(135deg, #051923, #003554, #CD853F); }
.aby-video-thumb.v7 { background: linear-gradient(135deg, #FF7F50, #F08080, #003554); }
.aby-video-thumb.v8 { background: linear-gradient(135deg, #006494, #FFD700, #051923); }

.aby-video-thumb .play-icon {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), rgba(255, 215, 0, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--ocean-deep);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    transition: all 0.3s;
}

.aby-video-card:hover .play-icon {
    transform: scale(1.15);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.7);
}

.aby-video-thumb .duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(5, 25, 35, 0.9);
    color: var(--gold-bright);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
    border: 1px solid rgba(255, 215, 0, 0.2);
    font-family: "Cinzel", serif;
}

.aby-video-thumb .tag-rank {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gold-gradient);
    color: var(--ocean-deep);
    padding: 5px 12px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 800;
    z-index: 3;
    font-family: "Cinzel", serif;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.35);
}

.aby-video-info {
    padding: 20px 18px 22px;
    position: relative;
}

.aby-video-title {
    font-family: "Playfair Display", "Cormorant Garamond", serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--pearl-light);
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aby-video-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--gold-mid);
    opacity: 0.75;
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 0.5px;
}

.aby-video-meta .views::before {
    content: "◉ ";
    color: var(--gold-bright);
}

/* ===== 分类按钮 ===== */
.aby-categories {
    padding: 72px 0;
    position: relative;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(240, 128, 128, 0.05) 0%, transparent 50%);
    border-top: 1px solid rgba(255, 215, 0, 0.08);
    border-bottom: 1px solid rgba(255, 215, 0, 0.08);
}

.aby-cat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.aby-cat-item {
    position: relative;
    background: linear-gradient(180deg, rgba(248, 244, 227, 0.06), rgba(255, 215, 0, 0.02));
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 50% 50% 20% 20% / 40% 40% 10% 10%;
    padding: 28px 14px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    backdrop-filter: blur(6px);
}

.aby-cat-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.4s;
}

.aby-cat-item:hover {
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.15), rgba(205, 133, 63, 0.08));
    border-color: var(--gold-bright);
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(255, 215, 0, 0.2);
}

.aby-cat-item:hover::before { opacity: 1; }

.aby-cat-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(255, 215, 0, 0.2));
    transition: transform 0.3s;
}

.aby-cat-item:hover .aby-cat-icon {
    transform: scale(1.15) rotate(5deg);
}

.aby-cat-name {
    font-family: "Playfair Display", "Cinzel", serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--pearl-light);
    letter-spacing: 1px;
}

.aby-cat-item:hover .aby-cat-name {
    color: var(--gold-bright);
}

/* ===== 特色板块 ===== */
.aby-feature {
    background:
        radial-gradient(ellipse at 10% 20%, rgba(255, 127, 80, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, var(--ocean-mid) 0%, var(--ocean-deep) 50%, #020d14 100%);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.aby-feature-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.aby-feature-title {
    font-family: "Cinzel", "Playfair Display", serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
    color: var(--pearl-light);
    letter-spacing: 2px;
}

.aby-feature-title .gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aby-feature-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 17px;
    line-height: 2;
    color: var(--pearl-mid);
    opacity: 0.9;
    margin-bottom: 36px;
}

.aby-feature-list {
    margin-bottom: 40px;
}

.aby-feature-list li {
    padding: 12px 0 12px 40px;
    position: relative;
    font-family: "Cormorant Garamond", serif;
    font-size: 16px;
    color: var(--pearl-mid);
    letter-spacing: 0.5px;
}

.aby-feature-list li::before {
    content: "🐚";
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 20px;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.3));
}

.aby-feature-visual {
    position: relative;
    padding: 72px 48px;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 70%),
        linear-gradient(135deg, rgba(248, 244, 227, 0.04), rgba(255, 215, 0, 0.02));
    border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    animation: morph-shell 8s ease-in-out infinite;
}

@keyframes morph-shell {
    0%, 100% { border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%; }
    33% { border-radius: 50% 50% 40% 60% / 60% 50% 50% 40%; }
    66% { border-radius: 60% 40% 50% 50% / 40% 60% 40% 60%; }
}

.aby-feature-visual .big-shell {
    font-size: 150px;
    display: block;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.3));
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.3)); }
    50% { filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.5)); }
}

.aby-feature-visual .visual-text {
    font-family: "Cinzel", "Playfair Display", serif;
    font-size: 20px;
    color: var(--gold-bright);
    font-weight: 700;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* ===== 页脚 ===== */
.aby-footer {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255, 215, 0, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, #020d14 0%, var(--ocean-deep) 100%);
    padding: 72px 0 28px;
    position: relative;
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent) 1;
}

.aby-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(90deg,
            transparent 0px,
            transparent 120px,
            rgba(255, 215, 0, 0.015) 120px,
            rgba(255, 215, 0, 0.015) 122px);
    pointer-events: none;
}

.aby-footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.aby-footer-col h4 {
    font-family: "Cinzel", "Playfair Display", serif;
    font-size: 17px;
    margin-bottom: 22px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
}

.aby-footer-col h4::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
    opacity: 0.6;
}

.aby-footer-col p {
    font-family: "Cormorant Garamond", serif;
    font-size: 15px;
    color: var(--pearl-mid);
    opacity: 0.8;
    line-height: 1.9;
}

.aby-footer-col ul li {
    margin-bottom: 14px;
}

.aby-footer-col ul li a {
    font-family: "Cormorant Garamond", serif;
    font-size: 15px;
    color: var(--pearl-mid);
    opacity: 0.75;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}

.aby-footer-col ul li a::before {
    content: "▸ ";
    color: var(--gold-bright);
    opacity: 0;
    margin-left: -10px;
    transition: all 0.3s;
}

.aby-footer-col ul li a:hover {
    opacity: 1;
    color: var(--gold-bright);
    padding-left: 10px;
}

.aby-footer-col ul li a:hover::before {
    opacity: 1;
    margin-left: 0;
}

.aby-footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding-top: 24px;
    text-align: center;
}

.aby-footer-bottom p {
    font-family: "Cinzel", "Cormorant Garamond", serif;
    font-size: 13px;
    color: var(--pearl-mid);
    opacity: 0.55;
    letter-spacing: 2px;
}

/* ===== 页面横幅 ===== */
.aby-page-banner {
    background:
        radial-gradient(ellipse at 30% 40%, rgba(255, 215, 0, 0.15) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 60%, rgba(0, 100, 148, 0.25) 0%, transparent 60%),
        linear-gradient(135deg, var(--ocean-mid) 0%, var(--ocean-deep) 50%, #020d14 100%);
    padding: 72px 0 88px;
    text-align: center;
    color: var(--pearl-light);
    position: relative;
    overflow: hidden;
}

.aby-page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(110deg,
            transparent 0px,
            transparent 60px,
            rgba(255, 215, 0, 0.02) 60px,
            rgba(255, 215, 0, 0.02) 62px);
    pointer-events: none;
}

.aby-page-banner h1 {
    font-family: "Cinzel", "Playfair Display", serif;
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    letter-spacing: 6px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 20px rgba(255, 215, 0, 0.2));
}

.aby-page-banner p {
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    color: var(--pearl-mid);
    opacity: 0.88;
    letter-spacing: 4px;
    position: relative;
    z-index: 2;
}

/* ===== 内容卡片 ===== */
.aby-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.aby-content-card {
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.aby-content-card .card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(255, 215, 0, 0.25));
}

.aby-content-card h3 {
    font-family: "Playfair Display", "Cinzel", serif;
    font-size: 22px;
    color: var(--pearl-light);
    margin-bottom: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.aby-content-card p {
    font-family: "Cormorant Garamond", serif;
    font-size: 15px;
    color: var(--pearl-mid);
    opacity: 0.8;
    line-height: 1.9;
}

.aby-content-card .card-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--gold-bright);
    font-weight: 600;
    font-size: 14px;
    font-family: "Cinzel", serif;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s;
}

.aby-content-card .card-link::after {
    content: " →";
    transition: margin-left 0.3s;
}

.aby-content-card .card-link:hover {
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.aby-content-card .card-link:hover::after {
    margin-left: 4px;
}

/* ===== 时间线 ===== */
.aby-timeline {
    position: relative;
    padding-left: 52px;
    margin-top: 48px;
}

.aby-timeline::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold-bright), rgba(255, 215, 0, 0.1));
    border-radius: 2px;
}

.aby-timeline-item {
    position: relative;
    padding-bottom: 44px;
}

.aby-timeline-item::before {
    content: "";
    position: absolute;
    left: -44px;
    top: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #FFF9C4, var(--gold-bright) 50%, var(--gold-deep));
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.aby-timeline-year {
    font-family: "Cinzel", "Playfair Display", serif;
    font-size: 20px;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.aby-timeline-content h4 {
    font-family: "Playfair Display", serif;
    font-size: 19px;
    color: var(--pearl-light);
    margin-bottom: 8px;
    font-weight: 600;
}

.aby-timeline-content p {
    font-family: "Cormorant Garamond", serif;
    font-size: 15px;
    color: var(--pearl-mid);
    opacity: 0.8;
    line-height: 1.8;
}

/* ===== 团队卡片 ===== */
.aby-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.aby-team-card {
    border-radius: 50% 50% 18px 18px / 40% 40% 18px 18px;
    padding: 32px 22px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.aby-team-avatar {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: var(--gold-gradient);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cinzel", serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--ocean-deep);
    box-shadow:
        0 0 0 3px rgba(255, 215, 0, 0.15),
        0 8px 24px rgba(255, 215, 0, 0.25);
    position: relative;
}

.aby-team-avatar::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 215, 0, 0.3);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.aby-team-card h4 {
    font-family: "Playfair Display", serif;
    font-size: 19px;
    color: var(--pearl-light);
    margin-bottom: 6px;
    font-weight: 600;
}

.aby-team-card .role {
    font-family: "Cinzel", serif;
    font-size: 12px;
    color: var(--gold-bright);
    margin-bottom: 14px;
    font-weight: 600;
    letter-spacing: 2px;
}

.aby-team-card p {
    font-family: "Cormorant Garamond", serif;
    font-size: 14px;
    color: var(--pearl-mid);
    opacity: 0.75;
    line-height: 1.7;
}

/* ===== 表单 ===== */
.aby-form {
    background: linear-gradient(180deg, rgba(248, 244, 227, 0.05), rgba(255, 215, 0, 0.02));
    padding: 48px;
    border-radius: 28px;
    border: 1px solid rgba(255, 215, 0, 0.18);
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.aby-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

.aby-form-row {
    margin-bottom: 24px;
}

.aby-form-row label {
    display: block;
    font-family: "Playfair Display", "Cinzel", serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--pearl-light);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.aby-form-row label .req {
    color: var(--coral-pink);
    margin-left: 4px;
}

.aby-form-row input,
.aby-form-row textarea,
.aby-form-row select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    font-size: 15px;
    font-family: "Cormorant Garamond", serif;
    background: rgba(5, 25, 35, 0.6);
    color: var(--pearl-light);
    transition: all 0.3s;
    letter-spacing: 0.3px;
}

.aby-form-row input::placeholder,
.aby-form-row textarea::placeholder {
    color: rgba(248, 244, 227, 0.35);
}

.aby-form-row input:focus,
.aby-form-row textarea:focus,
.aby-form-row select:focus {
    outline: none;
    border-color: var(--gold-bright);
    background: rgba(5, 25, 35, 0.8);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.08);
}

.aby-form-row textarea {
    resize: vertical;
    min-height: 140px;
}

.aby-form-submit {
    background: var(--gold-gradient);
    color: var(--ocean-deep);
    border: none;
    padding: 16px 52px;
    border-radius: 32px;
    font-family: "Cinzel", "Playfair Display", serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.aby-form-submit::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.6s;
}

.aby-form-submit:hover::before { left: 100%; }
.aby-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(255, 215, 0, 0.5);
}

/* ===== 联系信息 ===== */
.aby-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-top: 48px;
}

.aby-contact-info {
    padding: 8px 0;
}

.aby-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(248, 244, 227, 0.04), rgba(255, 215, 0, 0.02));
    border-radius: 18px;
    border-left: 3px solid transparent;
    border-image: linear-gradient(180deg, var(--gold-bright), var(--gold-deep)) 1;
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}

.aby-contact-item:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.aby-contact-item .icon {
    font-size: 32px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(255, 215, 0, 0.25));
}

.aby-contact-item h4 {
    font-family: "Playfair Display", "Cinzel", serif;
    font-size: 17px;
    color: var(--pearl-light);
    margin-bottom: 6px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.aby-contact-item p {
    font-family: "Cormorant Garamond", serif;
    font-size: 15px;
    color: var(--pearl-mid);
    opacity: 0.82;
    line-height: 1.7;
}

/* ===== 案例展示 ===== */
.aby-case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    margin-top: 48px;
}

.aby-case-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(180deg, rgba(248, 244, 227, 0.05), rgba(255, 215, 0, 0.02));
    border: 1px solid rgba(255, 215, 0, 0.12);
    backdrop-filter: blur(8px);
}

.aby-case-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 215, 0, 0.12);
}

.aby-case-banner {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    position: relative;
    overflow: hidden;
}

.aby-case-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(5, 25, 35, 0.3) 100%);
}

.aby-case-banner.c1 { background: linear-gradient(135deg, #CD853F, #FFD700, #003554); }
.aby-case-banner.c2 { background: linear-gradient(135deg, #003554, #006494, #F08080); }
.aby-case-banner.c3 { background: linear-gradient(135deg, #051923, #FF7F50, #F8F4E3); }
.aby-case-banner.c4 { background: linear-gradient(135deg, #F08080, #FFD700, #006494); }
.aby-case-banner.c5 { background: linear-gradient(135deg, #FFD700, #E6BE8A, #051923); }
.aby-case-banner.c6 { background: linear-gradient(135deg, #003554, #CD853F, #FF7F50); }

.aby-case-body {
    padding: 28px;
}

.aby-case-body .case-tag {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold-bright);
    padding: 5px 14px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    font-family: "Cinzel", serif;
    letter-spacing: 1px;
}

.aby-case-body h3 {
    font-family: "Playfair Display", "Cinzel", serif;
    font-size: 22px;
    color: var(--pearl-light);
    margin-bottom: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.aby-case-body p {
    font-family: "Cormorant Garamond", serif;
    font-size: 15px;
    color: var(--pearl-mid);
    opacity: 0.82;
    line-height: 1.9;
    margin-bottom: 18px;
}

.aby-case-stats {
    display: flex;
    gap: 32px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.aby-case-stats div {
    font-family: "Cormorant Garamond", serif;
    font-size: 13px;
    color: var(--pearl-mid);
    opacity: 0.7;
    letter-spacing: 0.5px;
}

.aby-case-stats strong {
    display: block;
    font-family: "Cinzel", "Playfair Display", serif;
    font-size: 24px;
    color: var(--gold-bright);
    font-weight: 800;
    margin-bottom: 2px;
}

/* ===== 新闻列表 ===== */
.aby-news-list {
    margin-top: 48px;
}

.aby-news-item {
    background: linear-gradient(135deg, rgba(248, 244, 227, 0.04), rgba(255, 215, 0, 0.02));
    border-radius: 18px;
    padding: 28px;
    margin-bottom: 20px;
    display: flex;
    gap: 28px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.aby-news-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.4s;
}

.aby-news-item:hover {
    transform: translateX(8px);
    border-color: rgba(255, 215, 0, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.aby-news-item:hover::before { opacity: 1; }

.aby-news-date {
    flex-shrink: 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.1), rgba(205, 133, 63, 0.05));
    border-radius: 14px;
    padding: 16px 22px;
    min-width: 90px;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.aby-news-date .day {
    font-family: "Cinzel", "Playfair Display", serif;
    font-size: 32px;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.aby-news-date .month {
    font-family: "Cinzel", serif;
    font-size: 12px;
    color: var(--gold-mid);
    margin-top: 6px;
    letter-spacing: 1.5px;
    opacity: 0.8;
}

.aby-news-content {
    flex: 1;
}

.aby-news-content .news-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--ocean-mid), var(--ocean-light));
    color: var(--gold-bright);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    font-family: "Cinzel", serif;
    letter-spacing: 1px;
}

.aby-news-content h3 {
    font-family: "Playfair Display", "Cinzel", serif;
    font-size: 20px;
    color: var(--pearl-light);
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: color 0.3s;
}

.aby-news-item:hover h3 {
    color: var(--gold-bright);
}

.aby-news-content p {
    font-family: "Cormorant Garamond", serif;
    font-size: 15px;
    color: var(--pearl-mid);
    opacity: 0.78;
    line-height: 1.8;
}

/* ===== CTA 区域 ===== */
.aby-cta {
    background:
        radial-gradient(ellipse at 20% 30%, rgba(255, 127, 80, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, var(--gold-deep) 0%, var(--gold-mid) 30%, var(--gold-bright) 50%, var(--gold-mid) 70%, var(--gold-deep) 100%);
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.aby-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg,
            transparent 0px,
            transparent 40px,
            rgba(255, 255, 255, 0.06) 40px,
            rgba(255, 255, 255, 0.06) 42px);
    pointer-events: none;
}

.aby-cta h2 {
    font-family: "Cinzel", "Playfair Display", serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    color: var(--ocean-deep);
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

.aby-cta p {
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    color: var(--ocean-mid);
    opacity: 0.85;
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
}

.aby-cta .aby-btn {
    background: var(--ocean-deep);
    color: var(--gold-bright);
    border: 1.5px solid var(--ocean-deep);
    position: relative;
    z-index: 2;
}

.aby-cta .aby-btn::before {
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.aby-cta .aby-btn:hover {
    background: var(--ocean-mid);
    color: var(--pearl-light);
    box-shadow: 0 14px 36px rgba(5, 25, 35, 0.3);
}

/* ===== 响应式 ===== */
@media (max-width: 968px) {
    .aby-video-grid, .aby-cat-grid, .aby-team-grid { grid-template-columns: repeat(2, 1fr); }
    .aby-content-grid, .aby-case-grid, .aby-contact-grid, .aby-feature-inner, .aby-footer-grid { grid-template-columns: 1fr; }
    .aby-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .aby-hero-title { font-size: 56px; letter-spacing: 4px; }
    .aby-hero-title .pearl-text { font-size: 36px; }
    .aby-nav ul { overflow-x: auto; justify-content: flex-start; }
    .aby-section-title { font-size: 30px; letter-spacing: 2px; }
    .aby-page-banner h1 { font-size: 36px; letter-spacing: 3px; }
    .aby-form { padding: 28px; }
    .aby-feature-title { font-size: 30px; }
}
