/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* 网站保护 - 禁用选择和拖拽 */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    line-height: 1.6;
    color: #333;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 200, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 200, 120, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(200, 255, 120, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #87CEEB 0%, #FFE4E1 30%, #98FB98 60%, #DDA0DD 100%);
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #FF6B9D, #C44569, #F8B500);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 4px solid #FFD700;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand h1 {
    color: white;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    text-shadow: 3px 3px 0px #FF1493, -1px -1px 0px #FFD700;
    filter: drop-shadow(0px 0px 10px rgba(255, 215, 0, 0.8));
}

.version {
    background: linear-gradient(45deg, #32CD32, #228B22);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 2px solid #FFD700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-menu a:hover {
    background: rgba(255, 215, 0, 0.8);
    color: #8B4513;
    border-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 8rem 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 105, 180, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(135, 206, 250, 0.4) 0%, transparent 40%),
        linear-gradient(135deg, rgba(255, 182, 193, 0.6), rgba(173, 216, 230, 0.6));
    position: relative;
    overflow: hidden;
}

/* Stars Animation */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.star {
    position: absolute;
    background: #FFD700;
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

.star:nth-child(1) {
    top: 20%;
    left: 10%;
    width: 4px;
    height: 4px;
    animation-delay: 0s;
}

.star:nth-child(2) {
    top: 30%;
    right: 15%;
    width: 6px;
    height: 6px;
    animation-delay: 0.5s;
}

.star:nth-child(3) {
    top: 60%;
    left: 20%;
    width: 3px;
    height: 3px;
    animation-delay: 1s;
}

.star:nth-child(4) {
    top: 50%;
    right: 25%;
    width: 5px;
    height: 5px;
    animation-delay: 1.5s;
}

.star:nth-child(5) {
    top: 80%;
    left: 60%;
    width: 4px;
    height: 4px;
    animation-delay: 2s;
}

.star:nth-child(6) {
    top: 15%;
    left: 70%;
    width: 3px;
    height: 3px;
    animation-delay: 2.5s;
}

@keyframes twinkle {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1); 
        box-shadow: 0 0 0px #FFD700; 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.5); 
        box-shadow: 0 0 20px #FFD700; 
    }
}

.hero-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h3 {
    font-size: 2rem;
    color: #ecf0f1;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: #ecf0f1;
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    max-width: 500px;
    width: 90%;
    height: auto;
}

.platform-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.platform-badge {
    background: linear-gradient(135deg, #FF69B4, #FF1493, #DC143C);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
    border: 3px solid #FFD700;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: bounce 3s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

.platform-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.6);
    animation-play-state: paused;
}

.platform-badge.play-now {
    background: linear-gradient(135deg, #32CD32, #228B22, #006400);
    font-size: 1.3rem;
    padding: 1.2rem 2.5rem;
    border: 4px solid #FFD700;
    box-shadow: 
        0 6px 20px rgba(50, 205, 50, 0.4),
        0 0 30px rgba(255, 215, 0, 0.3);
    animation: playNowPulse 2s ease-in-out infinite;
    cursor: pointer;
}

.platform-badge.play-now:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 
        0 15px 35px rgba(50, 205, 50, 0.6),
        0 0 40px rgba(255, 215, 0, 0.5);
    animation-play-state: paused;
}

@keyframes playNowPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 6px 20px rgba(50, 205, 50, 0.4),
            0 0 30px rgba(255, 215, 0, 0.3);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 
            0 8px 25px rgba(50, 205, 50, 0.6),
            0 0 40px rgba(255, 215, 0, 0.5);
    }
}

.game-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    margin: 2rem auto;
    max-width: 400px;
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.qq-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.qq-label {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.qq-number {
    background: linear-gradient(135deg, #1E90FF, #0066CC);
    color: white;
    font-weight: 700;
    font-size: 1.4rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 3px solid #FFD700;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    user-select: all;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qq-number:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.6);
    background: linear-gradient(135deg, #4169E1, #0047AB);
}

/* QQ群链接样式 */
.qq-number {
    text-decoration: none;
    color: white;
}

.qq-number:visited {
    color: white;
}

/* Overview Section */
.overview {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.level-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.req-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.req-card h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.level-list {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.level-item {
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    font-size: 1.1rem;
}

.level-item.magic {
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
    color: white;
}

.level-item.other {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
}

.level-item:not(.magic):not(.other) {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
}

.note {
    background: #fff3cd;
    color: #856404;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    font-weight: 500;
    text-align: center;
}

/* Job Guide Sections */
.job-guide {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.simple-step {
    background: #e8f5e8;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 5px solid #27ae60;
}

.simple-step p {
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.simple-step strong {
    color: #27ae60;
}

/* Job Locations */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.location-card {
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 4px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-card:hover::before {
    opacity: 1;
}

.location-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.location-card.warrior {
    background: 
        radial-gradient(circle at top left, rgba(255,255,255,0.1) 0%, transparent 50%),
        linear-gradient(135deg, #FF6B6B, #FF5722, #D32F2F);
    border-color: #FFD700;
}

.location-card.magician {
    background: 
        radial-gradient(circle at top left, rgba(255,255,255,0.1) 0%, transparent 50%),
        linear-gradient(135deg, #9C27B0, #673AB7, #3F51B5);
    border-color: #E1BEE7;
}

.location-card.archer {
    background: 
        radial-gradient(circle at top left, rgba(255,255,255,0.1) 0%, transparent 50%),
        linear-gradient(135deg, #4CAF50, #388E3C, #1B5E20);
    border-color: #C8E6C9;
}

.location-card.thief {
    background: 
        radial-gradient(circle at top left, rgba(255,255,255,0.1) 0%, transparent 50%),
        linear-gradient(135deg, #607D8B, #455A64, #263238);
    border-color: #B0BEC5;
}

.location-card.pirate {
    background: 
        radial-gradient(circle at top left, rgba(255,255,255,0.1) 0%, transparent 50%),
        linear-gradient(135deg, #2196F3, #1976D2, #0D47A1);
    border-color: #BBDEFB;
}

.location-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.job-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.placeholder-img {
    background: rgba(255, 255, 255, 0.2);
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 2rem 1rem;
    margin-top: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.placeholder-img span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-style: italic;
}

.placeholder-img:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Real Image Styles (for when you add real images) */
.location-img {
    width: 100%;
    max-width: 200px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Warning Boxes */
.warning-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.warning-box.danger {
    background: #f8d7da;
    border-color: #dc3545;
}

.warning-box.important {
    background: #d1ecf1;
    border-color: #bee5eb;
}

.warning-box h3 {
    color: #856404;
    margin-bottom: 1rem;
}

.warning-box.danger h3 {
    color: #721c24;
}

.warning-box.important h3 {
    color: #0c5460;
}

.warning-box ul {
    margin: 0;
    padding-left: 1.5rem;
}

.warning-box li {
    margin: 0.5rem 0;
    font-weight: 500;
}

/* Step by Step */
.step-by-step {
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin: 2rem 0;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #3498db;
}

.step-num {
    background: #3498db;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-content p {
    color: #5d6d7e;
    margin: 0.5rem 0;
}

/* Map Locations */
.map-locations {
    background: #ecf0f1;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.map-item {
    padding: 0.5rem;
    margin: 0.5rem 0;
    background: white;
    border-radius: 5px;
    border-left: 3px solid #3498db;
}

.map-item strong {
    color: #e74c3c;
}

/* Materials */
.materials {
    background: #fff3cd;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.materials p {
    margin: 0.3rem 0;
    font-weight: 500;
}

.materials strong {
    color: #856404;
}

/* Crystal Info */
.crystal-info {
    background: #e8f4f8;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
    border-left: 4px solid #3498db;
}

.crystal-info p {
    margin: 0.5rem 0;
    font-weight: 500;
}

.crystal-info strong {
    color: #2980b9;
}

/* Gate Locations */
.gate-locations {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.gate-item {
    padding: 0.8rem;
    margin: 0.5rem 0;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.gate-item strong {
    color: #c0392b;
}

/* Fourth Job Methods */
.fourth-methods {
    margin: 2rem 0;
}

.method-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin: 1.5rem 0;
    border-left: 5px solid #f39c12;
}

.method-card h4 {
    color: #d35400;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.method-steps {
    display: grid;
    gap: 1rem;
}

.mini-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
}

.mini-num {
    background: #f39c12;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.mini-step p {
    margin: 0;
    color: #5d6d7e;
}

/* Tip Box */
.tip-box {
    background: #d1ecf1;
    border: 2px solid #bee5eb;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.tip-box h4 {
    color: #0c5460;
    margin-bottom: 0.5rem;
}

.tip-box p {
    color: #0c5460;
    margin: 0;
    font-weight: 500;
}

/* Stone Location */
.stone-location {
    background: #fff3cd;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #ffc107;
}

.stone-location h5 {
    color: #856404;
    margin-bottom: 0.5rem;
}

.stone-location p {
    color: #856404;
    margin: 0;
}

/* Materials Prep */
.materials-prep {
    background: #e8f4f8;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 5px solid #3498db;
}

.materials-prep h3 {
    color: #2980b9;
    margin-bottom: 1rem;
}

/* Detailed Fourth Job Styles */
.detailed-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
    border-left: 4px solid #17a2b8;
}

.detailed-info .warning {
    background: #fff3cd;
    color: #856404;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #ffeaa7;
    margin-top: 1rem;
    font-weight: 600;
}

.sub-steps {
    margin: 1.5rem 0;
}

.sub-step {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
    border-left: 4px solid #28a745;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sub-step h5 {
    color: #28a745;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.location-detail {
    background: #e9ecef;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.location-detail p {
    margin: 0.5rem 0;
}

.location-detail strong {
    color: #dc3545;
}

.money-tips {
    background: #d1ecf1;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 3px solid #17a2b8;
}

.money-tips h6 {
    color: #0c5460;
    margin-bottom: 0.5rem;
}

.money-tips ul {
    margin: 0;
    padding-left: 1.5rem;
}

.boss-info {
    margin: 2rem 0;
}

.boss-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 1.5rem 0;
}

.boss-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.boss-card h6 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.boss-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    backdrop-filter: blur(10px);
}

.boss-details p {
    margin: 0.3rem 0;
    display: flex;
    justify-content: space-between;
}

.boss-tips {
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.boss-tips h6 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.boss-tips ul {
    margin: 0;
    padding-left: 1.2rem;
}

.boss-tips li {
    margin: 0.3rem 0;
    font-size: 0.9rem;
}

.completion-info {
    background: #d4edda;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 2px solid #28a745;
}

.changes-list ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.changes-list li {
    margin: 0.5rem 0;
    color: #155724;
    font-weight: 500;
}

.final-jobs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.final-job {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: 2px solid #ffa500;
    transition: transform 0.3s ease;
}

.final-job:hover {
    transform: scale(1.05);
}

.final-job .job-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.final-job .job-name {
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.final-job .job-desc {
    font-size: 0.8rem;
    color: #A0522D;
    font-style: italic;
}

.cost-comparison {
    margin: 3rem 0;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.comparison-table {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

.method-compare {
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.method-compare.gold {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.method-compare.boss {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.method-compare h5 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.pros-cons {
    display: grid;
    gap: 1rem;
}

.pros, .cons {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.pros h6 {
    color: #d5f4e6;
    margin-bottom: 0.5rem;
}

.cons h6 {
    color: #f8d7da;
    margin-bottom: 0.5rem;
}

.pros ul, .cons ul {
    margin: 0;
    padding-left: 1.2rem;
}

.pros li, .cons li {
    margin: 0.3rem 0;
    font-size: 0.9rem;
}

/* Quiz Database Styles */
.quiz-database {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(116, 185, 255, 0.3);
}

.quiz-database h5 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.quiz-intro {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.quiz-categories {
    display: grid;
    gap: 1.5rem;
}

.quiz-category {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quiz-category h6 {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.5);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.quiz-list {
    display: grid;
    gap: 0.8rem;
}

.quiz-item {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #28a745;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.quiz-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.quiz-item .question {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.quiz-item .answer {
    display: block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    text-align: center;
    font-size: 0.95rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.quiz-tips {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    border: 2px solid rgba(255, 215, 0, 0.5);
    backdrop-filter: blur(10px);
}

.quiz-tips h6 {
    color: #FFD700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.quiz-tips ul {
    margin: 0;
    padding-left: 1.2rem;
}

.quiz-tips li {
    margin: 0.5rem 0;
    line-height: 1.5;
}

.quiz-tips li strong {
    color: #FFD700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive Design for Quiz */
@media (max-width: 768px) {
    .quiz-database {
        padding: 1rem;
    }
    
    .quiz-category {
        padding: 1rem;
    }
    
    .quiz-item {
        padding: 0.8rem;
    }
    
    .quiz-item .question {
        font-size: 0.9rem;
    }
    
    .quiz-item .answer {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    margin: 0.5rem 0;
}

.footer .data-source {
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content h3 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .level-requirements {
        grid-template-columns: 1fr;
    }

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

    .step {
        flex-direction: column;
        text-align: center;
    }

    .mini-step {
        flex-direction: column;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.location-card,
.req-card,
.method-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Game Style Animations */

@keyframes glow {
    0% { 
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 0 20px rgba(50, 205, 50, 0.5);
    }
    100% { 
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 0 30px rgba(50, 205, 50, 0.8);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

@keyframes sparkle {
    0%, 100% { 
        opacity: 0.7; 
        transform: scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2); 
    }
}

/* Job Icons Animation - DISABLED */
.job-icon {
    /* animation: float 4s ease-in-out infinite; */
    /* animation-delay: var(--delay, 0s); */
    /* 移除浮動動畫 */
}

.location-card:hover .job-icon {
    /* animation: sparkle 0.6s ease-in-out; */
    /* 移除滑鼠懸停動畫 */
}

/* 4转方法对比样式 */
.alternative-method {
    background: rgba(255, 215, 0, 0.1);
    border: 2px dashed rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.alternative-method h5 {
    color: #FF8C00;
    margin-bottom: 1rem;
}

.boss-tips {
    background: rgba(255, 107, 107, 0.1);
    border-left: 4px solid #FF6B6B;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
}

.boss-tips h6 {
    color: #FF6B6B;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.recommendation {
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.1), rgba(30, 144, 255, 0.1));
    border: 2px solid rgba(50, 205, 50, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.recommendation h6 {
    color: #32CD32;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.recommendation p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.recommendation strong {
    color: #1E90FF;
    font-weight: 600;
}

/* 网站保护样式 */
body {
    /* 禁用图片拖拽 */
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* 禁用图片右键和拖拽 */
img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

/* 允许QQ群链接点击 */
.qq-number {
    pointer-events: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* 禁用文字高亮选择 */
::selection {
    background: transparent;
}

::-moz-selection {
    background: transparent;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(45deg, #FFB6C1, #87CEEB);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #FF69B4, #32CD32);
    border-radius: 10px;
    border: 2px solid #FFD700;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #FF1493, #228B22);
}