/* ============================================
   侏罗纪棋牌探险营 - 主样式表
   CSS前缀: jur-
   设计风格: 侏罗纪史前探险风 (Jurassic Adventure)
   ============================================ */

/* === 字体导入 === */
@import url('https://fonts.googleapis.com/css2?family=Creepster&family=Noto+Serif+SC:wght@400;600;700&display=swap');

/* === CSS变量 === */
:root {
    --jur-primary: #2D4A1E;
    --jur-secondary: #4F6F4C;
    --jur-accent: #FF6347;
    --jur-highlight: #F5DEB3;
    --jur-bg-dark: #1C2E15;
    --jur-text-primary: #E0E6D8;
    --jur-text-secondary: #A0A89C;
    --jur-radius: 8px;
    --jur-shadow: 5px 5px 15px rgba(0,0,0,0.5);
    --jur-font-title: 'Creepster', cursive;
    --jur-font-body: 'Noto Serif SC', serif;
    --jur-max-width: 1200px;
    --jur-padding: 24px;
}

/* === 全局重置 === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--jur-font-body);
    background-color: var(--jur-bg-dark);
    color: var(--jur-text-primary);
    line-height: 1.8;
    overflow-x: hidden;
}

a {
    color: var(--jur-highlight);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: var(--jur-accent);
    text-shadow: 0 0 8px rgba(255, 99, 71, 0.6);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--jur-font-title);
    color: var(--jur-highlight);
    line-height: 1.3;
    margin-bottom: 16px;
}

h1 { font-size: 2.8em; }
h2 { font-size: 2.2em; }
h3 { font-size: 1.8em; }
h4 { font-size: 1.4em; }

p {
    margin-bottom: 16px;
    color: var(--jur-text-primary);
}

/* === 头部导航 === */
.jur-header {
    background-color: rgba(28, 46, 21, 0.95);
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--jur-secondary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
}

.jur-header__inner {
    max-width: var(--jur-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.jur-header__logo {
    font-family: var(--jur-font-title);
    font-size: 1.6em;
    color: var(--jur-highlight);
    text-shadow: 0 0 10px rgba(245, 222, 179, 0.4);
    white-space: nowrap;
}

.jur-header__logo a {
    color: inherit;
}

.jur-header__auth-number {
    font-family: var(--jur-font-body);
    font-size: 0.6em;
    color: var(--jur-text-secondary);
    display: block;
}

.jur-navigation {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.jur-navigation__item {
    list-style: none;
}

.jur-navigation__link {
    display: block;
    padding: 8px 12px;
    color: var(--jur-text-primary);
    font-family: var(--jur-font-title);
    font-size: 1.05em;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    white-space: nowrap;
}

.jur-navigation__link:hover,
.jur-navigation__link--active {
    color: var(--jur-accent);
    text-shadow: 0 0 8px rgba(255, 99, 71, 0.6);
}

/* 汉堡菜单 */
.jur-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
}

.jur-hamburger__line {
    width: 28px;
    height: 3px;
    background-color: var(--jur-highlight);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* === 面包屑 === */
.jur-breadcrumb {
    max-width: var(--jur-max-width);
    margin: 16px auto;
    padding: 0 var(--jur-padding);
    font-size: 0.9em;
    color: var(--jur-text-secondary);
}

.jur-breadcrumb a {
    color: var(--jur-text-secondary);
}

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

.jur-breadcrumb__separator {
    margin: 0 8px;
    color: var(--jur-secondary);
}

/* === 通用模块容器 === */
.jur-section {
    padding: 60px var(--jur-padding);
}

.jur-section__inner {
    max-width: var(--jur-max-width);
    margin: 0 auto;
}

.jur-section--dark {
    background-color: var(--jur-bg-dark);
}

.jur-section--green {
    background-color: var(--jur-primary);
}

.jur-section--volcano {
    background: linear-gradient(135deg, #8B2500 0%, var(--jur-accent) 50%, #8B2500 100%);
}

.jur-section__title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.jur-section__title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--jur-accent);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* === 卡片 === */
.jur-card {
    background-color: rgba(45, 74, 30, 0.8);
    border: 1px solid var(--jur-secondary);
    border-radius: var(--jur-radius);
    box-shadow: var(--jur-shadow);
    padding: 24px;
    margin-bottom: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jur-card:hover {
    transform: translateY(-4px);
    box-shadow: 5px 5px 25px rgba(0,0,0,0.7);
}

.jur-card--featured {
    border-color: var(--jur-accent);
    box-shadow: 0 0 20px rgba(255, 99, 71, 0.4);
}

.jur-card__title {
    font-family: var(--jur-font-title);
    color: var(--jur-highlight);
    margin-bottom: 12px;
    font-size: 1.5em;
}

.jur-card__image {
    border-radius: var(--jur-radius);
    margin-bottom: 16px;
    overflow: hidden;
}

.jur-card__image img {
    width: 100%;
    transition: transform 0.4s ease;
}

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

.jur-card__text {
    color: var(--jur-text-primary);
    font-size: 0.95em;
}

/* === 网格布局 === */
.jur-grid {
    display: grid;
    gap: 24px;
}

.jur-grid--2 { grid-template-columns: repeat(2, 1fr); }
.jur-grid--3 { grid-template-columns: repeat(3, 1fr); }
.jur-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* === 按钮 === */
.jur-button {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--jur-font-title);
    font-size: 1.2em;
    color: var(--jur-text-primary);
    background: linear-gradient(135deg, var(--jur-accent), #D4533B);
    border: 2px solid var(--jur-highlight);
    border-radius: var(--jur-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 0 15px rgba(245, 222, 179, 0.3);
}

.jur-button:hover {
    background: linear-gradient(135deg, #FF7F6B, var(--jur-accent));
    box-shadow: 0 0 25px rgba(245, 222, 179, 0.6);
    transform: translateY(-2px);
    color: #fff;
}

.jur-button--secondary {
    background: linear-gradient(135deg, var(--jur-primary), var(--jur-secondary));
    border-color: var(--jur-secondary);
    box-shadow: 0 0 10px rgba(79, 111, 76, 0.3);
}

/* === Hero区 (模块1) === */
.jur-module-1 {
    min-height: 100vh;
    background-image: url('../images/jur-hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.jur-module-1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28,46,21,0.6) 0%, rgba(28,46,21,0.8) 100%);
    z-index: 1;
}

.jur-module-1__content {
    position: relative;
    z-index: 2;
    max-width: var(--jur-max-width);
    padding: var(--jur-padding);
}

.jur-module-1__title {
    font-size: 3.5em;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.8);
    margin-bottom: 20px;
    animation: jur-fadeInDown 1s ease;
}

.jur-module-1__subtitle {
    font-size: 1.4em;
    color: var(--jur-text-secondary);
    margin-bottom: 30px;
    animation: jur-fadeInUp 1s ease 0.3s both;
}

/* === 恐龙蛋模块 (模块2) === */
.jur-module-2 {
    padding: 60px var(--jur-padding);
    background-color: var(--jur-primary);
}

.jur-egg-card {
    text-align: center;
    padding: 30px;
    background: rgba(28, 46, 21, 0.6);
    border-radius: var(--jur-radius);
    border: 1px solid var(--jur-secondary);
    box-shadow: var(--jur-shadow);
    transition: all 0.4s ease;
    cursor: pointer;
}

.jur-egg-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(245, 222, 179, 0.3);
}

.jur-egg-card__image {
    width: 200px;
    height: 200px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
}

.jur-egg-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === 排行榜模块 (模块3) === */
.jur-module-3 {
    padding: 60px var(--jur-padding);
    background-color: var(--jur-primary);
}

.jur-leaderboard {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(28, 46, 21, 0.7);
    border-radius: var(--jur-radius);
    border: 2px solid var(--jur-secondary);
    box-shadow: var(--jur-shadow);
    overflow: hidden;
}

.jur-leaderboard__row {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(79, 111, 76, 0.3);
    transition: background 0.3s ease;
}

.jur-leaderboard__row:hover {
    background: rgba(79, 111, 76, 0.2);
}

.jur-leaderboard__row--top {
    background: rgba(245, 222, 179, 0.1);
    border-left: 4px solid var(--jur-highlight);
}

.jur-leaderboard__rank {
    font-family: var(--jur-font-title);
    font-size: 1.8em;
    color: var(--jur-highlight);
    width: 60px;
    text-align: center;
}

.jur-leaderboard__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 16px;
    border: 2px solid var(--jur-secondary);
}

.jur-leaderboard__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jur-leaderboard__info {
    flex: 1;
}

.jur-leaderboard__name {
    font-family: var(--jur-font-title);
    color: var(--jur-text-primary);
    font-size: 1.1em;
}

.jur-leaderboard__title-badge {
    font-size: 0.8em;
    color: var(--jur-accent);
}

.jur-leaderboard__score {
    font-family: var(--jur-font-title);
    font-size: 1.4em;
    color: var(--jur-highlight);
}

/* === 恐龙图鉴 (模块4) === */
.jur-module-4 {
    padding: 60px var(--jur-padding);
    background-color: var(--jur-bg-dark);
}

.jur-dino-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--jur-radius);
    box-shadow: var(--jur-shadow);
    cursor: pointer;
}

.jur-dino-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(28, 46, 21, 0.95));
}

.jur-dino-card__name {
    font-family: var(--jur-font-title);
    color: var(--jur-highlight);
    font-size: 1.4em;
}

.jur-dino-card__trait {
    color: var(--jur-accent);
    font-size: 0.9em;
}

/* === 化石发掘记录 (模块5) === */
.jur-module-5 {
    padding: 60px var(--jur-padding);
    background-color: var(--jur-primary);
}

.jur-fossil-record {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(28, 46, 21, 0.5);
    border-left: 4px solid var(--jur-highlight);
    border-radius: 0 var(--jur-radius) var(--jur-radius) 0;
    margin-bottom: 20px;
}

.jur-fossil-record__icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: var(--jur-bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6em;
}

.jur-fossil-record__date {
    font-size: 0.85em;
    color: var(--jur-text-secondary);
}

/* === 视频模块 (模块6) === */
.jur-module-6 {
    padding: 60px var(--jur-padding);
    background-color: var(--jur-bg-dark);
}

.jur-video-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(45, 74, 30, 0.5);
    border: 3px solid var(--jur-secondary);
    border-radius: var(--jur-radius);
    overflow: hidden;
    box-shadow: var(--jur-shadow);
}

.jur-responsive-video {
    width: 100%;
    display: block;
}

.jur-video-caption {
    padding: 16px 20px;
    text-align: center;
    color: var(--jur-text-secondary);
    font-style: italic;
}

/* === 探险家档案 (模块7) === */
.jur-module-7 {
    padding: 60px var(--jur-padding);
    background-color: var(--jur-primary);
}

.jur-profile {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.jur-profile__avatar-section {
    text-align: center;
    flex-shrink: 0;
}

.jur-profile__avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--jur-highlight);
    margin-bottom: 12px;
}

.jur-profile__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jur-badge-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.jur-badge {
    padding: 6px 14px;
    background: rgba(245, 222, 179, 0.15);
    border: 1px solid var(--jur-highlight);
    border-radius: 20px;
    font-size: 0.85em;
    color: var(--jur-highlight);
    font-family: var(--jur-font-title);
}

/* === 侏罗纪摄影展 (模块8) === */
.jur-module-8 {
    padding: 60px var(--jur-padding);
    background-color: var(--jur-bg-dark);
}

.jur-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--jur-radius);
    box-shadow: var(--jur-shadow);
}

.jur-carousel__track {
    display: flex;
    transition: transform 0.5s ease;
}

.jur-carousel__slide {
    min-width: 100%;
    position: relative;
}

.jur-carousel__slide img {
    width: 100%;
    display: block;
}

.jur-carousel__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(28, 46, 21, 0.9));
    color: var(--jur-text-primary);
    font-style: italic;
}

.jur-carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(28, 46, 21, 0.7);
    color: var(--jur-highlight);
    border: 2px solid var(--jur-secondary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.jur-carousel__btn:hover {
    background: var(--jur-accent);
    border-color: var(--jur-accent);
}

.jur-carousel__btn--prev { left: 12px; }
.jur-carousel__btn--next { right: 12px; }

/* === 火山观测站 (模块9) === */
.jur-module-9 {
    padding: 60px var(--jur-padding);
    background: linear-gradient(135deg, #5C1A00 0%, var(--jur-accent) 50%, #5C1A00 100%);
    position: relative;
    overflow: hidden;
}

.jur-volcano-meter {
    max-width: 600px;
    margin: 24px auto;
    height: 30px;
    background: rgba(0,0,0,0.4);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--jur-highlight);
}

.jur-volcano-meter__fill {
    height: 100%;
    background: linear-gradient(90deg, #FF6347, #FFD700, #FF4500);
    border-radius: 15px;
    transition: width 1s ease;
    animation: jur-pulse 2s ease-in-out infinite;
}

/* === 新手装备 (模块10) === */
.jur-module-10 {
    padding: 60px var(--jur-padding);
    background-color: var(--jur-primary);
}

.jur-equip-card {
    text-align: center;
    padding: 24px;
    background: rgba(28, 46, 21, 0.6);
    border-radius: var(--jur-radius);
    border: 1px solid var(--jur-secondary);
    box-shadow: var(--jur-shadow);
    transition: all 0.3s ease;
}

.jur-equip-card:hover {
    border-color: var(--jur-highlight);
    box-shadow: 0 0 20px rgba(245, 222, 179, 0.2);
}

.jur-equip-card__icon {
    font-size: 3em;
    margin-bottom: 12px;
}

/* === FAQ模块 === */
.jur-faq {
    max-width: 800px;
    margin: 0 auto;
}

.jur-faq__item {
    margin-bottom: 16px;
    background: rgba(45, 74, 30, 0.5);
    border: 1px solid var(--jur-secondary);
    border-radius: var(--jur-radius);
    overflow: hidden;
}

.jur-faq__question {
    padding: 16px 20px;
    cursor: pointer;
    font-family: var(--jur-font-title);
    color: var(--jur-highlight);
    font-size: 1.1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.jur-faq__question:hover {
    background: rgba(79, 111, 76, 0.3);
}

.jur-faq__arrow {
    transition: transform 0.3s ease;
    font-size: 0.8em;
}

.jur-faq__item--open .jur-faq__arrow {
    transform: rotate(180deg);
}

.jur-faq__answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--jur-text-primary);
}

.jur-faq__item--open .jur-faq__answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* === 页脚 === */
.jur-footer {
    background-color: rgba(20, 32, 14, 0.98);
    border-top: 3px solid var(--jur-secondary);
    padding: 50px var(--jur-padding) 20px;
}

.jur-footer__inner {
    max-width: var(--jur-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.jur-footer__col-title {
    font-family: var(--jur-font-title);
    color: var(--jur-highlight);
    font-size: 1.2em;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 8px;
}

.jur-footer__col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--jur-accent);
}

.jur-footer__links {
    list-style: none;
}

.jur-footer__links li {
    margin-bottom: 8px;
}

.jur-footer__links a {
    color: var(--jur-text-secondary);
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.jur-footer__links a:hover {
    color: var(--jur-accent);
}

.jur-footer__contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--jur-text-secondary);
    font-size: 0.9em;
}

.jur-footer__bottom {
    max-width: var(--jur-max-width);
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(79, 111, 76, 0.3);
    text-align: center;
    color: var(--jur-text-secondary);
    font-size: 0.85em;
}

.jur-footer__slogan {
    font-family: var(--jur-font-title);
    color: var(--jur-highlight);
    font-size: 1.1em;
    margin-top: 10px;
}

/* === 内链样式 === */
.jur-internal-link {
    color: var(--jur-accent);
    border-bottom: 1px dashed var(--jur-accent);
    transition: all 0.3s ease;
}

.jur-internal-link:hover {
    color: var(--jur-highlight);
    border-bottom-color: var(--jur-highlight);
}

/* === 内容页布局 === */
.jur-content-page {
    max-width: var(--jur-max-width);
    margin: 0 auto;
    padding: 40px var(--jur-padding);
}

.jur-content-page__hero {
    width: 100%;
    border-radius: var(--jur-radius);
    margin-bottom: 30px;
    box-shadow: var(--jur-shadow);
    overflow: hidden;
}

.jur-content-page__hero img {
    width: 100%;
}

.jur-content-page h2 {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(79, 111, 76, 0.3);
}

.jur-content-page h3 {
    margin-top: 24px;
    color: var(--jur-accent);
}

/* === 表格 === */
.jur-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(45, 74, 30, 0.4);
    border-radius: var(--jur-radius);
    overflow: hidden;
}

.jur-table th {
    background: rgba(28, 46, 21, 0.8);
    color: var(--jur-highlight);
    font-family: var(--jur-font-title);
    padding: 14px 16px;
    text-align: left;
}

.jur-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(79, 111, 76, 0.2);
}

.jur-table tr:hover td {
    background: rgba(79, 111, 76, 0.15);
}

/* === 联系表单 === */
.jur-form {
    max-width: 600px;
}

.jur-form__group {
    margin-bottom: 20px;
}

.jur-form__label {
    display: block;
    margin-bottom: 6px;
    color: var(--jur-highlight);
    font-family: var(--jur-font-title);
}

.jur-form__input,
.jur-form__textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(28, 46, 21, 0.6);
    border: 1px solid var(--jur-secondary);
    border-radius: var(--jur-radius);
    color: var(--jur-text-primary);
    font-family: var(--jur-font-body);
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.jur-form__input:focus,
.jur-form__textarea:focus {
    outline: none;
    border-color: var(--jur-accent);
    box-shadow: 0 0 8px rgba(255, 99, 71, 0.3);
}

.jur-form__textarea {
    min-height: 120px;
    resize: vertical;
}

/* === 团队展示 === */
.jur-team-card {
    text-align: center;
    padding: 24px;
    background: rgba(28, 46, 21, 0.6);
    border-radius: var(--jur-radius);
    border: 1px solid var(--jur-secondary);
    box-shadow: var(--jur-shadow);
}

.jur-team-card__avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid var(--jur-highlight);
}

.jur-team-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jur-team-card__name {
    font-family: var(--jur-font-title);
    color: var(--jur-highlight);
    font-size: 1.2em;
    margin-bottom: 4px;
}

.jur-team-card__role {
    color: var(--jur-accent);
    font-size: 0.9em;
    margin-bottom: 12px;
}

/* === 恐龙蛋孵化器页面 === */
.jur-hatchery {
    text-align: center;
    padding: 40px 0;
}

.jur-hatchery__eggs {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.jur-hatchery__egg {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid var(--jur-secondary);
    transition: all 0.4s ease;
    position: relative;
}

.jur-hatchery__egg:hover {
    border-color: var(--jur-highlight);
    box-shadow: 0 0 30px rgba(245, 222, 179, 0.4);
    transform: scale(1.1);
}

.jur-hatchery__egg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jur-hatchery__result {
    display: none;
    padding: 30px;
    background: rgba(45, 74, 30, 0.7);
    border: 2px solid var(--jur-highlight);
    border-radius: var(--jur-radius);
    margin-top: 30px;
    animation: jur-fadeInUp 0.5s ease;
}

.jur-hatchery__result--active {
    display: block;
}

/* === 动画 === */
@keyframes jur-fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes jur-fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes jur-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes jur-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

@keyframes jur-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(245, 222, 179, 0.3); }
    50% { box-shadow: 0 0 25px rgba(245, 222, 179, 0.6); }
}

/* === 雨滴效果 === */
.jur-rain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.jur-rain__drop {
    position: absolute;
    width: 2px;
    background: linear-gradient(transparent, rgba(224, 230, 216, 0.3));
    animation: jur-rainfall linear infinite;
}

@keyframes jur-rainfall {
    0% { transform: translateY(-100vh); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

/* === 客服浮窗 === */
.jur-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.jur-chat-widget__btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--jur-accent);
    border: 2px solid var(--jur-highlight);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    box-shadow: 0 4px 15px rgba(255, 99, 71, 0.4);
    transition: all 0.3s ease;
    animation: jur-glow 3s ease-in-out infinite;
}

.jur-chat-widget__btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 25px rgba(255, 99, 71, 0.6);
}

/* === Cookie横幅 === */
.jur-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(28, 46, 21, 0.98);
    border-top: 2px solid var(--jur-secondary);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.jur-cookie-banner--visible {
    transform: translateY(0);
}

.jur-cookie-banner__text {
    color: var(--jur-text-secondary);
    font-size: 0.9em;
    flex: 1;
}

.jur-cookie-banner__btn {
    padding: 8px 24px;
    background: var(--jur-accent);
    color: #fff;
    border: none;
    border-radius: var(--jur-radius);
    cursor: pointer;
    font-family: var(--jur-font-title);
    white-space: nowrap;
}

/* === 响应式设计 === */
@media (max-width: 1023px) {
    .jur-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .jur-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .jur-footer__inner { grid-template-columns: repeat(2, 1fr); }
    .jur-profile { flex-direction: column; align-items: center; text-align: center; }
    h1 { font-size: 2.2em; }
    h2 { font-size: 1.8em; }
}

@media (max-width: 767px) {
    .jur-navigation {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(28, 46, 21, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        z-index: 999;
    }

    .jur-navigation--open {
        display: flex;
    }

    .jur-navigation__link {
        font-size: 1.3em;
        padding: 12px 20px;
    }

    .jur-hamburger {
        display: flex;
        z-index: 1001;
    }

    .jur-grid--2,
    .jur-grid--3,
    .jur-grid--4 {
        grid-template-columns: 1fr;
    }

    .jur-footer__inner {
        grid-template-columns: 1fr;
    }

    .jur-module-1__title {
        font-size: 2em;
    }

    .jur-module-1__subtitle {
        font-size: 1.1em;
    }

    h1 { font-size: 1.8em; }
    h2 { font-size: 1.5em; }
    h3 { font-size: 1.3em; }

    .jur-hatchery__egg {
        width: 140px;
        height: 140px;
    }

    .jur-carousel__btn {
        width: 36px;
        height: 36px;
        font-size: 1em;
    }

    .jur-cookie-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* === 滚动动画 === */
.jur-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.jur-animate--visible {
    opacity: 1;
    transform: translateY(0);
}

/* === 打印样式 === */
@media print {
    .jur-header, .jur-footer, .jur-chat-widget, .jur-cookie-banner {
        display: none;
    }
    body {
        background: #fff;
        color: #333;
    }
}
