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

:root {
    --primary-purple: #8B2FC9;
    --dark-purple: #1a0033;
    --light-purple: #b84bff;
    --pink: #FF69B4;
    --cyan: #00D9FF;
    --dark-bg: #0a0015;
    --card-bg: rgba(139, 47, 201, 0.1);
    --border-glow: rgba(0, 217, 255, 0.5);
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-purple) 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent);
    background-size: 200% 200%;
    animation: twinkle 4s ease-in-out infinite;
    opacity: 0.5;
    z-index: 0;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 0, 21, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--border-glow);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--pink), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid var(--cyan);
    color: var(--cyan);
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--cyan);
    color: var(--dark-bg);
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
    margin-right: 2rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 2px solid var(--border-glow);
    color: #ffffff;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.lang-btn:hover {
    background: var(--primary-purple);
    border-color: var(--pink);
    transform: translateY(-2px);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--pink), var(--primary-purple));
    border-color: var(--pink);
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.5);
}

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

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--pink);
    text-shadow: 0 0 10px var(--pink);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyan);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--pink), var(--light-purple), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 105, 180, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(0, 217, 255, 0.8));
    }
}

.subtitle {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan);
}

.hero-image {
    margin: 2rem 0;
}

.mascot {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(139, 47, 201, 0.6));
    animation: float 3s ease-in-out infinite;
}

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

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink), var(--primary-purple));
    color: white;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.8);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--cyan);
    color: var(--cyan);
}

.btn-secondary:hover {
    background: var(--cyan);
    color: var(--dark-bg);
    box-shadow: 0 0 20px var(--cyan);
}

.key-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.info-card {
    background: var(--card-bg);
    border: 2px solid var(--border-glow);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    min-width: 200px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.info-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--pink);
    margin-bottom: 0.5rem;
}

.info-label {
    font-size: 1rem;
    color: var(--cyan);
}

section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--pink), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.token-card {
    background: var(--card-bg);
    border: 2px solid var(--border-glow);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.token-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 47, 201, 0.4);
    border-color: var(--pink);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.token-card h3 {
    color: var(--pink);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.token-card ul {
    list-style: none;
}

.token-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.token-card li:last-child {
    border-bottom: none;
}

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

.advantage-card {
    background: linear-gradient(135deg, rgba(139, 47, 201, 0.2), rgba(255, 105, 180, 0.1));
    border: 2px solid var(--pink);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 105, 180, 0.4);
}

.advantage-card h3 {
    color: var(--cyan);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.advantage-card ul {
    list-style: none;
}

.advantage-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.advantage-card li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--pink);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--pink), var(--cyan));
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--pink), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.8);
    z-index: 2;
}

.timeline-content {
    background: var(--card-bg);
    border: 2px solid var(--border-glow);
    border-radius: 15px;
    padding: 2rem;
    width: 45%;
    backdrop-filter: blur(10px);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 55%;
}

.timeline-content h3 {
    color: var(--pink);
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    padding: 0.5rem 0;
}

.contact {
    text-align: center;
}

.contact-text {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--pink);
}

.contact-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--cyan);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.social-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-btn.telegram {
    background: linear-gradient(135deg, #0088cc, #00aaff);
    color: white;
}

.social-btn.twitter {
    background: linear-gradient(135deg, #1DA1F2, #00c3ff);
    color: white;
}

.social-btn.discord {
    background: linear-gradient(135deg, #5865F2, #7289da);
    color: white;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.contract-info {
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contract-info h3 {
    color: var(--pink);
    margin-bottom: 1rem;
}

.contract-address {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contract-address input {
    flex: 1;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--border-glow);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
}

.btn-copy {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--pink), var(--primary-purple));
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-copy:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
}

.warning {
    color: #ffcc00;
    font-size: 0.9rem;
}

footer {
    background: rgba(10, 0, 21, 0.9);
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid var(--border-glow);
}

.disclaimer {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #999;
}

/* Ecosystem Section Styles */
.ecosystem {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-purple) 100%);
    padding: 5rem 0;
}

.ecosystem-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--cyan);
    margin-bottom: 3rem;
}

.eco-section-title {
    font-size: 2rem;
    color: var(--pink);
    margin-bottom: 2rem;
    text-align: center;
}

.ecosystem-stages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.eco-stage {
    background: var(--card-bg);
    border: 2px solid var(--border-glow);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.eco-stage:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 47, 201, 0.4);
    border-color: var(--pink);
}

.eco-stage-number {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--pink), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    opacity: 0.2;
}

.eco-stage-content h4 {
    color: var(--cyan);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.eco-stage-content p {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.mining-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mining-card {
    background: linear-gradient(135deg, rgba(139, 47, 201, 0.2), rgba(255, 105, 180, 0.1));
    border: 2px solid var(--pink);
    border-radius: 20px;
    padding: 2rem;
}

.mining-card h4 {
    color: var(--cyan);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.mining-card ul {
    list-style: none;
    padding: 0;
}

.mining-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.mining-card li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--pink);
}

.formula-box {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--cyan);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}

.formula-box p {
    color: var(--cyan);
    font-size: 1.1rem;
    font-weight: bold;
}

.gamefi-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gamefi-description, .gamefi-loop {
    background: var(--card-bg);
    border: 2px solid var(--border-glow);
    border-radius: 15px;
    padding: 2rem;
}

.gamefi-description h4, .gamefi-loop h4 {
    color: var(--pink);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.gamefi-description ul {
    list-style: none;
    padding: 0;
}

.gamefi-description li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.gamefi-description li::before {
    content: '🎮';
    position: absolute;
    left: 0;
}

.loop-table {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 1rem;
}

.loop-item {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.loop-item:last-child {
    border-bottom: none;
}

.loop-item strong {
    color: var(--pink);
    display: block;
    margin-bottom: 0.5rem;
}

.future-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.future-module {
    background: linear-gradient(135deg, rgba(139, 47, 201, 0.2), rgba(0, 217, 255, 0.1));
    border: 2px solid var(--cyan);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.future-module:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.future-module h5 {
    color: var(--pink);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.future-module p {
    font-size: 0.9rem;
    margin: 0.3rem 0;
}

.future-module .module-value {
    color: var(--cyan);
    font-weight: bold;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 0, 21, 0.95);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .mascot {
        max-width: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .key-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
        margin-right: 0;
    }
    
    .contract-address {
        flex-direction: column;
    }
}
