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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background with cosmic nebula */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23051B2C"/><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.6"><animate attributeName="opacity" values="0.3;1;0.3" dur="3s" repeatCount="indefinite"/></circle><circle cx="60" cy="30" r="0.5" fill="%23ffffff" opacity="0.8"><animate attributeName="opacity" values="0.5;1;0.5" dur="2s" repeatCount="indefinite"/></circle><circle cx="80" cy="60" r="1.5" fill="%23ffffff" opacity="0.4"><animate attributeName="opacity" values="0.2;0.8;0.2" dur="4s" repeatCount="indefinite"/></circle><circle cx="30" cy="80" r="0.8" fill="%23ffffff" opacity="0.7"/><circle cx="90" cy="15" r="0.3" fill="%23ffffff" opacity="0.9"/></svg>') repeat,
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #051B2C 0%, #0F1419 30%, #1A1B3A 70%, #0D1117 100%);
    pointer-events: none;
    z-index: -2;
}

html {
    scroll-behavior: smooth;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    border-radius: 4px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #b0b0c0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-menu a:hover {
    color: #ffffff;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Main content */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px 0;
}

/* Hero section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 90vh;
    margin-bottom: 120px;
}

.hero-content h1 {
    font-size: 1.2rem;
    color: #fbbf24;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -2px;
    background: linear-gradient(45deg, #ffffff, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: #b0b0c0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.stat-item {
    font-size: 1.1rem;
    font-weight: 600;
}

.stat-item .label {
    color: #fbbf24;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.mint-btn, .learn-btn {
    padding: 18px 36px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.mint-btn {
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    color: white;
}

.mint-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.mint-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.learn-btn {
    background: transparent;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
}

.learn-btn:hover {
    background: #8b5cf6;
    color: white;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-character {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
    animation: float 6s ease-in-out infinite;
}

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

/* Supply stats */
.supply-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 5px;
}

.stat-label {
    color: #b0b0c0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About section */
.about-section {
    margin-bottom: 120px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 1.1rem;
    color: #b0b0c0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.nft-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.nft-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.nft-card:hover {
    transform: translateY(-5px);
}

.nft-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    margin-bottom: 15px;
}

.nft-card h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fbbf24;
}

.nft-card p {
    color: #b0b0c0;
    font-size: 0.9rem;
}

/* Studio section */
.studio-section {
    margin-bottom: 120px;
}

.studio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.studio-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.studio-subtitle {
    font-size: 1.5rem;
    color: #fbbf24;
    font-style: italic;
    margin-bottom: 30px;
}

.studio-content p {
    font-size: 1.1rem;
    color: #b0b0c0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.follow-btn {
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.studio-image {
    text-align: center;
}

.studio-character {
    max-width: 80%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Roadmap section */
.roadmap-section {
    margin-bottom: 120px;
}

.roadmap-header {
    text-align: center;
    margin-bottom: 60px;
}

.roadmap-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.roadmap-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.roadmap-phase {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    position: relative;
    transition: transform 0.3s ease;
}

.roadmap-phase:hover {
    transform: translateY(-5px);
}

.phase-number {
    position: absolute;
    top: -20px;
    left: 40px;
    background: linear-gradient(45deg, #8b5cf6, #a855f7);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.phase-header {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: #000;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.phase-list {
    list-style: none;
    padding: 0;
}

.phase-list li {
    padding: 10px 0;
    color: #b0b0c0;
    position: relative;
    padding-left: 25px;
    font-size: 1.1rem;
}

.phase-list li::before {
    content: '•';
    color: #fbbf24;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

/* FAQ section */
.faq-section {
    margin-bottom: 120px;
}

.faq-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question {
    padding: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
background: rgba(255, 255, 255, 0.05);
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: #8b5cf6;
}


.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px 25px;
    color: #b0b0c0;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    opacity: 0;
}


.faq-answer.active {
    max-height: 500px;
    opacity: 1;
    padding: 0 25px 25px;
}


.faq-answer ul {
margin: 15px 0;
padding-left: 20px;
}

.faq-answer li {
margin-bottom: 8px;
}

/* Community section */
.community-section {
text-align: center;
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 25px;
padding: 60px;
margin-bottom: 60px;
backdrop-filter: blur(10px);
}

.community-section h2 {
font-size: 3rem;
font-weight: 800;
margin-bottom: 20px;
}

.community-description {
font-size: 1.2rem;
color: #b0b0c0;
margin-bottom: 40px;
}

.social-links {
display: flex;
justify-content: center;
gap: 20px;
}

.social-btn {
width: 60px;
height: 60px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
display: flex;
align-items: center;
justify-content: center;
color: white;
text-decoration: none;
font-size: 1.5rem;
transition: all 0.3s ease;
}

.social-btn:hover {
background: #8b5cf6;
transform: translateY(-3px);
}

/* Footer */
.footer {
text-align: center;
padding: 40px;
color: #666;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        gap: 30px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 10px 20px;
    }

    .container {
        padding: 100px 20px 0;
    }

    .hero-section, .about-grid, .studio-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .supply-stats {
        grid-template-columns: 1fr;
    }

    .community-section {
        padding: 40px 20px;
    }

    .nft-showcase {
        grid-template-columns: 1fr;
    }

    .nft-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        object-position: center;
        border-radius: 10px;
        margin-bottom: 15px;
    }

    .roadmap-phase {
        padding: 30px 20px;
    }

    .phase-number {
        left: 20px;
    }
}