/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid #333;
    margin-bottom: 80px;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 5px;
    letter-spacing: -0.02em;
}

.ticker {
    font-size: 1rem;
    color: #666;
    font-weight: 300;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0;
}

.lang-btn {
    background: transparent;
    border: 1px solid #333;
    color: #666;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    font-weight: 400;
    border-radius: 0;
}

.lang-btn:first-child {
    border-radius: 4px 0 0 4px;
}

.lang-btn:last-child {
    border-radius: 0 4px 4px 0;
    border-left: none;
}

.lang-btn:hover {
    color: #fff;
    background: #111;
}

.lang-btn.active {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Main Content */
.main-content {
    margin-bottom: 80px;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 120px;
    padding: 60px 0;
}

.main-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 80px;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-align: center;
}

.contract-address {
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.label {
    color: #666;
    font-weight: 400;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.address {
    background: #000;
    color: #fff;
    padding: 15px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    word-break: break-all;
    margin-bottom: 20px;
    border: 1px solid #333;
}

.copy-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.copy-btn:hover {
    background: #f0f0f0;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.character-img {
    max-width: 500px;
    height: auto;
    border-radius: 8px;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 120px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
    color: #666;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 400;
}

.feature-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Community Section */
.community {
    text-align: center;
    margin-bottom: 120px;
    padding: 60px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.community h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 300;
}

.community p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.community-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.community-link:hover {
    background: #f0f0f0;
}

/* Gallery Section */
.gallery {
    margin-bottom: 120px;
}

.gallery h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #fff;
    font-weight: 300;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer */
.footer {
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .contract-address {
        flex-direction: column;
        align-items: stretch;
    }
    
    .address {
        min-width: auto;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #00ff88, #00d4ff);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #00d4ff, #00ff88);
}
