/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    background: linear-gradient(135deg, #059669 0%, #047857 50%, #065f46 100%);
    color: white;
    overflow-x: hidden;
    position: relative;
}

/* Chinese Pattern Background */
.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 30%, rgba(239, 68, 68, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.background-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 215, 0, 0.05) 2px, rgba(255, 215, 0, 0.05) 4px),
        repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(255, 215, 0, 0.05) 2px, rgba(255, 215, 0, 0.05) 4px),
        repeating-linear-gradient(30deg, transparent, transparent 3px, rgba(239, 68, 68, 0.02) 3px, rgba(239, 68, 68, 0.02) 6px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    width: 60px;
    height: 60px;
    /* object-fit: contain; */
    animation: bounce 2s infinite;
    /* border-radius: 50%; */
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); */
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.logo-text {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 2rem;
    font-weight: 900;
    color: #fbbf24;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.token-symbol {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 1.2rem;
    color: #fbbf24;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.4);
    padding: 5px 10px;
    border-radius: 20px;
    border: 2px solid #fbbf24;
}

.nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Ma Shan Zheng', cursive;
    letter-spacing: 1px;
}

.nav-link:hover {
    background: rgba(255, 215, 0, 0.25);
    color: #fbbf24;
    transform: translateY(-2px);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fbbf24;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before {
    width: 100%;
}

/* Contract Section */
.contract-section {
    padding: 30px 0;
    text-align: center;
}

.contract-section .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contract-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #1f2937;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 2px solid #fbbf24;
    transition: all 0.3s ease;
}

.contract-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.contract-icon {
    font-size: 1.2rem;
}

.contract-address {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 1rem;
    color: #1f2937;
}

.copy-btn {
    background: #fbbf24;
    border: none;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #f59e0b;
    transform: scale(1.1);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    color: #1f2937;
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #fbbf24;
}

.social-link:hover {
    background: #fbbf24;
    color: #1f2937;
    transform: translateY(-3px);
}

.social-link.twitter {
    background: #1f2937;
    color: white;
}

.social-link.telegram {
    background: #10b981;
    color: white;
}

/* Welcome Section */
.welcome-section {
    padding: 60px 0;
    text-align: center;
}

.hero-logo {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.hero-logo-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    animation: bounce 2s infinite, float 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.hero-logo-image:hover {
    transform: scale(1.1);
    /* box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4); */
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.welcome-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.welcome-description {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* Token Info Section */
.token-info-section {
    padding: 60px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-box {
    background: rgba(255, 255, 255, 0.95);
    color: #1f2937;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid #fbbf24;
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.info-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.info-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: #1f2937;
    font-family: 'Courier New', monospace;
}

/* Section Titles */
.section-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: #fbbf24;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

/* Tokenomics Section */
.tokenomics-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.15);
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.tokenomics-item {
    background: rgba(255, 255, 255, 0.95);
    color: #1f2937;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid #fbbf24;
    transition: all 0.3s ease;
}

.tokenomics-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.tokenomics-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.tokenomics-item h3 {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f2937;
}

.tokenomics-item p {
    font-size: 1.2rem;
    font-weight: 900;
    color: #1f2937;
    font-family: 'Courier New', monospace;
}

/* How to Buy Section */
.how-to-buy-section {
    padding: 80px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    background: rgba(255, 255, 255, 0.95);
    color: #1f2937;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid #fbbf24;
    transition: all 0.3s ease;
    position: relative;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #fbbf24;
    color: #1f2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    border: 3px solid white;
}

.step h3 {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
    margin-top: 20px;
}

.step p {
    font-size: 1.1rem;
    color: #1f2937;
    line-height: 1.6;
}

/* Community Section */
.community-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.15);
}

.community-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.community-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #1f2937;
    text-decoration: none;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid #fbbf24;
    transition: all 0.3s ease;
    min-width: 150px;
}

.community-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    background: #fbbf24;
    color: #1f2937;
}

.community-icon {
    font-size: 3rem;
}

.community-link span {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.4);
    padding: 30px 0;
    text-align: center;
    border-top: 2px solid #fbbf24;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        justify-content: center;
    }
    
    .logo-image {
        width: 50px;
        height: 50px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .hero-logo-image {
        width: 150px;
        height: 150px;
    }
    
    .welcome-title {
        font-size: 2.5rem;
    }
    
    .welcome-description {
        font-size: 1rem;
    }
    
    .contract-section .container {
        flex-direction: column;
    }
    
    .contract-box {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .tokenomics-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .tokenomics-item p {
        font-size: 1rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .community-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .hero-logo-image {
        width: 120px;
        height: 120px;
    }
    
    .welcome-title {
        font-size: 2rem;
    }
    
    .contract-box {
        padding: 10px 15px;
    }
    
    .contract-address {
        font-size: 0.9rem;
    }
    
    .info-box {
        padding: 20px;
    }
    
    .tokenomics-item {
        padding: 20px;
    }
    
    .tokenomics-item p {
        font-size: 0.9rem;
    }
    
    .step {
        padding: 30px 20px;
    }
}
