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

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 24px;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.header-socials {
    display: flex;
    gap: 16px;
    align-items: center;
}

.header-social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
}

.header-social-link:hover {
    transform: scale(1.1);
}

.header-social-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: invert(1);
}

.buy-now-btn {
    padding: 12px 28px;
    background: var(--accent-color);
    color: #000;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.buy-now-btn:hover {
    background: #fff;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .header-socials {
        gap: 10px;
    }
    
    .header-social-link {
        width: 32px;
        height: 32px;
    }
    
    .buy-now-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .header-logo img {
        width: 40px;
        height: 40px;
    }
}

:root {
    --accent-color: #39c5bb;
    --accent-hover: #2ba39a;
    --accent-glow: rgba(57, 197, 187, 0.4);
    --bg-dark: #0a0a0a;
    --bg-card: #0f0f0f;
    --bg-card-hover: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #cfcfcf;
    --text-muted: #777777;
    --border-subtle: rgba(255, 255, 255, 0.08);
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    overflow: hidden;
}

.spline-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.spline-background iframe {
    width: 100%;
    height: calc(100% + 50px);
    pointer-events: auto;
    margin-bottom: -50px;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 60px;
}

.hero-text-right {
    text-align: right;
    max-width: 500px;
}

.hero-text-right h1 {
    font-size: 100px;
    font-weight: 700;
    letter-spacing: -2px;
    margin: 0;
    background: linear-gradient(135deg, var(--accent-color), #86e3de);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(57, 197, 187, 0.5);
}

.layer {
    position: absolute;
    inset: 0;
    border-radius: 22px;
}

.layer.back {
    background: var(--accent-color);
    transform: translate(26px, 26px);
    filter: blur(0.2px);
}

.layer.mid {
    background: #111;
    transform: translate(13px, 13px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
}

.layer.front {
    position: relative;
    background: rgba(15, 15, 15, 0.95);
    border-radius: 22px;
    padding: 56px;
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 48px;
    backdrop-filter: blur(10px);
}

.tagline {
    margin-top: 16px;
    font-size: 24px;
    color: var(--text-secondary);
    line-height: 1.4;
    font-weight: 300;
}

.hero-text-right .tagline {
    text-align: right;
}

.actions {
    margin-top: 32px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.hero-text-right .contract-address {
    margin-top: 40px;
    text-align: right;
}

.hero-text-right .ca-box {
    justify-content: flex-end;
}

.btn {
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.25s ease;
    cursor: pointer;
    display: inline-block;
}

.btn.primary {
    background: var(--accent-color);
    color: #000;
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px var(--accent-glow);
}

.btn.dark {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
}

.btn.dark:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.contract-address {
    max-width: 100%;
}

.contract-address .label {
    display: block;
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.ca-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
}

.ca-box span {
    flex: 1;
    font-size: 13px;
    color: var(--text-secondary);
    word-break: break-all;
    font-family: monospace;
}

.ca-box button {
    background: var(--accent-color);
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s;
}

.ca-box button:hover {
    background: var(--accent-hover);
}

.marquee-section {
    background: var(--accent-color);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    padding: 0 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.about-section {
    padding: 120px 24px;
    background: linear-gradient(180deg, #8b5a9e 0%, #6b4a7e 15%, #3d5a6e 35%, #2d6b64 55%, #39c5bb 100%);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-content-wrapper {
    width: 100%;
}

.about-frame {
    position: relative;
    width: 100%;
}

.about-frame .layer.back {
    background: #39c5bb;
}

.about-frame .layer.mid {
    background: #2d6b64;
}

.about-frame .layer.front {
    padding: 56px;
    background: linear-gradient(135deg, rgba(107, 74, 126, 0.95), rgba(61, 90, 110, 0.95));
    border: 1px solid rgba(57, 197, 187, 0.3);
}

.about-text h2 {
    font-size: 42px;
    letter-spacing: -1px;
    margin-bottom: 28px;
    font-weight: 600;
}

.about-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 22px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-images {
    order: -1;
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.image-frame .layer.back {
    background: var(--accent-color);
}

.image-frame .layer.front {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.miku-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.stats-marquee {
    background: var(--accent-color);
    padding: 24px 0;
    overflow: hidden;
}

.stats-track {
    display: flex;
    width: max-content;
}

.stats-content {
    display: flex;
    animation: statsMarquee 30s linear infinite;
    gap: 60px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 32px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    min-width: 220px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

@keyframes statsMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.gallery-section {
    padding: 120px 24px;
    background: linear-gradient(180deg, #0d1a1a 0%, #1a2e2e 50%, #0d1a1a 100%);
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.gallery-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
}

.gallery-subtitle {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 20px;
    color: var(--accent-color);
    text-transform: uppercase;
}

.gallery-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
}

.gallery-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent-color), #9b59b6);
    padding: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-frame:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(57, 197, 187, 0.3);
}

.gallery-frame img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-title,
    .gallery-subtitle {
        font-size: 32px;
    }
}

.ticker-marquee {
    background: var(--accent-color);
    padding: 20px 0;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    width: max-content;
}

.ticker-content {
    display: flex;
    animation: tickerScroll 15s linear infinite;
    gap: 60px;
}

.ticker-content span {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.faq-section {
    padding: 120px 24px;
    background: linear-gradient(180deg, #1a0a2e 0%, #2d1b4e 50%, #1a0a2e 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.faq-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
}

.faq-subtitle {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 20px;
    color: var(--accent-color);
    text-transform: uppercase;
}

.faq-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 50px;
    line-height: 1.6;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span:first-child {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.faq-icon {
    font-size: 20px;
    color: var(--accent-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 24px;
}

.faq-answer p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-title,
    .faq-subtitle {
        font-size: 32px;
    }
    
    .faq-question span:first-child {
        font-size: 16px;
    }
}

.community-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.community-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.community-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.community-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 60px 24px;
}

.community-content h2 {
    font-size: 56px;
    font-weight: 800;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
}

.community-highlight {
    color: var(--accent-color) !important;
    margin-bottom: 20px !important;
}

.community-content p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

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

.social-link {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.social-link:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(57, 197, 187, 0.4);
}

.social-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-link.x-blue {
    background: #1d9bf0;
}

.social-link.x-blue img {
    filter: invert(1);
}

@media (max-width: 768px) {
    .community-content h2 {
        font-size: 36px;
    }
    
    .social-link {
        width: 60px;
        height: 60px;
    }
}

.footer {
    padding: 60px 24px;
    background: #050505;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.social-link:hover {
    color: var(--accent-color);
}

.disclaimer {
    font-size: 12px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        order: -1;
        grid-template-columns: repeat(3, 1fr);
    }
    
    .image-placeholder:first-child {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 100px 16px 60px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-text-right {
        max-width: 100%;
    }
    
    .hero-text-right h1 {
        font-size: 56px;
    }
    
    .layer.front {
        padding: 36px;
        gap: 32px;
    }
    
    .tagline {
        font-size: 18px;
    }
    
    .about-frame .layer.front {
        padding: 36px;
    }
    
    .about-text h2 {
        font-size: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-container h2 {
        font-size: 36px;
    }
    
    .layer.back {
        transform: translate(16px, 16px);
    }
    
    .layer.mid {
        transform: translate(8px, 8px);
    }
}

@media (max-width: 480px) {
    .content-inner h1 {
        font-size: 42px;
    }
    
    .actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .about-images {
        grid-template-columns: 1fr 1fr;
    }
}
