* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Serif SC', serif;
    background-color: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1000;
    border-bottom: 2px solid #b8860b;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 28px;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 5px;
}

.nav-links a:hover {
    color: #ffd700;
    background: rgba(184, 134, 11, 0.2);
}

.play-btn {
    background: linear-gradient(180deg, #b8860b 0%, #8b6914 100%);
    border: 2px solid #ffd700;
    color: #fff;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(184,134,11,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 64px;
    color: #ffd700;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.8), 0 0 30px rgba(255, 215, 0, 0.5);
    margin-bottom: 30px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.tag {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.3) 0%, rgba(139, 105, 20, 0.3) 100%);
    border: 1px solid #b8860b;
    padding: 10px 20px;
    border-radius: 20px;
    color: #ffd700;
    font-size: 14px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    }
}

.hero-desc {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.hero-btn {
    padding: 15px 40px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    border: 2px solid;
}

.download-btn {
    background: linear-gradient(180deg, #dc143c 0%, #8b0000 100%);
    border-color: #ff4444;
    color: #fff;
}

.download-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(220, 20, 60, 0.6);
}

.recharge-btn {
    background: linear-gradient(180deg, #b8860b 0%, #8b6914 100%);
    border-color: #ffd700;
    color: #fff;
}

.recharge-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.scroll-down {
    margin-top: 30px;
    text-align: center;
    cursor: pointer;
}

.scroll-down .arrow {
    font-size: 48px;
    color: #ffd700;
    animation: blink 1.5s infinite;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.4;
        transform: translateY(10px);
    }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    animation: float 10s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.section-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 48px;
    color: #ffd700;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #b8860b, transparent);
}

.features {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #121212 50%, #0a0a0a 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(180deg, rgba(184, 134, 11, 0.1) 0%, rgba(139, 105, 20, 0.05) 100%);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(184, 134, 11, 0.2);
    border-color: #b8860b;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #ffd700;
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.philosophy {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
}

.philosophy-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.philosophy-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 30px rgba(220, 20, 60, 0.2);
}

.philosophy-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.philosophy-text h3 {
    color: #ffd700;
    font-size: 24px;
    margin-bottom: 10px;
}

.philosophy-text p {
    color: #ccc;
    font-size: 16px;
}

.promise-box {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.2) 0%, rgba(139, 105, 20, 0.1) 100%);
    border: 2px solid #b8860b;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.promise-box p {
    color: #ffd700;
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.promise-box p:last-child {
    margin-bottom: 0;
    color: #fff;
}

.announcement {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0a120a 50%, #0a0a0a 100%);
}

.announcement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.announcement-card {
    background: rgba(0, 100, 0, 0.1);
    border: 1px solid rgba(0, 150, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.announcement-card:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 30px rgba(0, 150, 0, 0.2);
}

.announcement-header {
    background: linear-gradient(90deg, #006400 0%, #004d00 100%);
    padding: 15px 20px;
    color: #fff;
    font-weight: bold;
    border-bottom: 1px solid rgba(0, 150, 0, 0.5);
}

.announcement-content {
    padding: 20px;
}

.announcement-content p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-label {
    color: #ccc;
}

.info-value {
    color: #00ff00;
    font-weight: bold;
    font-size: 18px;
}

.class-section {
    margin-top: 60px;
}

.class-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 36px;
    color: #ffd700;
    text-align: center;
    margin-bottom: 20px;
}

.class-desc {
    color: #ccc;
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.class-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.class-card.warrior {
    border: 2px solid #dc143c;
}

.class-card.mage {
    border: 2px solid #00bfff;
}

.class-card.wizard {
    border: 2px solid #9370db;
}

.class-card:hover {
    transform: translateY(-10px);
}

.class-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.class-card h4 {
    font-size: 28px;
    margin-bottom: 15px;
    font-family: 'Ma Shan Zheng', cursive;
}

.warrior h4 {
    color: #ff4444;
}

.mage h4 {
    color: #00bfff;
}

.wizard h4 {
    color: #9370db;
}

.class-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.welfare {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0a1a 50%, #0a0a0a 100%);
}

.castle-section {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.15) 0%, rgba(139, 105, 20, 0.05) 100%);
    border: 2px solid #b8860b;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin-bottom: 50px;
}

.castle-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 40px;
    color: #ffd700;
    margin-bottom: 20px;
}

.castle-desc {
    color: #ccc;
    font-size: 16px;
    line-height: 1.8;
}

.welfare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.welfare-card {
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.welfare-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(184, 134, 11, 0.2);
}

.welfare-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.welfare-header {
    color: #ffd700;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.welfare-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.guide {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0a0a12 50%, #0a0a0a 100%);
}

.guide-desc {
    color: #ccc;
    text-align: center;
    font-size: 16px;
    margin-bottom: 50px;
    line-height: 1.8;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.guide-card {
    background: rgba(0, 100, 150, 0.1);
    border: 1px solid rgba(0, 150, 200, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.guide-card:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 30px rgba(0, 150, 200, 0.2);
}

.guide-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.guide-header {
    color: #00bfff;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

.guide-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.map-showcase {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 15px;
    padding: 40px;
}

.map-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.map-item {
    text-align: center;
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 10px;
}

.map-item:hover {
    background: rgba(184, 134, 11, 0.1);
    transform: scale(1.1);
}

.map-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.map-item span {
    color: #ffd700;
    font-size: 14px;
}

.footer {
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,1) 100%);
    padding: 50px 0;
    border-top: 2px solid #b8860b;
}

.footer-content {
    text-align: center;
}

.footer-logo span {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 32px;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-copyright p {
    color: #666;
    font-size: 12px;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-desc {
        font-size: 14px;
    }
    
    .hero-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .philosophy-item {
        flex-direction: column;
        text-align: center;
    }
    
    .philosophy-text h3 {
        font-size: 20px;
    }
    
    .features-grid, .welfare-grid {
        grid-template-columns: 1fr;
    }
    
    .announcement-grid, .classes-grid, .guide-grid {
        grid-template-columns: 1fr;
    }
    
    .map-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}