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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0d0e10;
    color: #b6b0c0;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Space Grotesk', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px 60px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #b6b0c0;
}

.gradient-text {
    background: linear-gradient(135deg, #6160b2 0%, #60a2bb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #b6b0c0;
    margin-bottom: 15px;
}

.hero-description {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #686769;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-description em {
    font-style: italic;
}

.hero-image {
    max-width: 450px;
    margin: 0 auto 40px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: #fff;
    color: #0d0e10;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #b6b0c0;
    border: 2px solid #686769;
}

.btn-secondary:hover {
    border-color: #60a2bb;
    color: #60a2bb;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 18px;
    line-height: 1;
}

/* Ticker */
.ticker-wrapper {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
}

.ticker {
    display: flex;
    width: fit-content;
    animation: scroll 30s linear infinite;
}

.ticker-content {
    display: flex;
    gap: 30px;
    align-items: center;
    white-space: nowrap;
    font-size: 0.85rem;
    color: #686769;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

/* Special Section */
.special-section {
    text-align: center;
    padding: 80px 20px;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #686769;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.special-section h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 30px;
}

.cert-badge {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(97, 96, 178, 0.1);
    border: 2px solid #6160b2;
    border-radius: 50px;
    color: #60a2bb;
    font-weight: 600;
    margin-top: 20px;
}

/* About Section */
.about-section {
    padding: 60px 20px;
    text-align: center;
}

.about-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 60px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    text-align: left;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #b6b0c0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #6160b2;
    transform: translateY(-5px);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6160b2 0%, #60a2bb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

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

/* Disclaimer */
.disclaimer {
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.disclaimer h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #b6b0c0;
}

.disclaimer p {
    color: #686769;
    line-height: 1.6;
}

/* Chart Section */
.chart-section {
    padding: 80px 20px;
}

.chart-container {
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: 16px;
    overflow: hidden;
}

.chart-container img {
    width: 100%;
    height: auto;
    display: block;
}

.contract-address {
    text-align: center;
}

.address-box {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid #6160b2;
    border-radius: 50px;
    max-width: 100%;
}

.address-label {
    font-weight: 700;
    color: #60a2bb;
}

.address-text {
    font-family: 'Space Grotesk', monospace;
    color: #b6b0c0;
    font-size: 0.9rem;
}

.copy-btn {
    background: transparent;
    border: none;
    color: #60a2bb;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    color: #fff;
    transform: scale(1.1);
}

/* Platforms Section */
.platforms-section {
    padding: 80px 20px;
    text-align: center;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #6160b2 0%, #60a2bb 100%);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 30px;
}

.platforms-section h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.platforms-subtitle {
    color: #686769;
    margin-bottom: 40px;
}

.tabs {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab {
    padding: 10px 30px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #686769;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.tab.active {
    background: rgba(97, 96, 178, 0.2);
    border-color: #6160b2;
    color: #60a2bb;
}

.tab-icon {
    padding: 10px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #686769;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab:hover, .tab-icon:hover {
    border-color: #6160b2;
    color: #60a2bb;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.platform-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.platform-card:hover {
    border-color: #6160b2;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(97, 96, 178, 0.2);
}

.platform-card.coming-soon {
    opacity: 0.6;
}

.coming-soon-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(192, 64, 154, 0.2);
    color: #c0409a;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.platform-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.platform-card h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 8px;
}

.platform-type {
    font-size: 0.75rem;
    color: #686769;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platform-arrow {
    font-size: 20px;
    margin-top: auto;
    align-self: flex-end;
    opacity: 0.5;
    transition: all 0.3s ease;
    color: #60a2bb;
}

.platform-card:hover .platform-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 20px;
    text-align: center;
}

.gallery-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: #6160b2;
    box-shadow: 0 10px 30px rgba(97, 96, 178, 0.3);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.btn-view-more {
    background: transparent;
    color: #b6b0c0;
    border: 2px solid #686769;
    padding: 12px 40px;
}

.btn-view-more:hover {
    border-color: #60a2bb;
    color: #60a2bb;
}

/* Footer */
.footer {
    padding: 60px 20px 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

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

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #686769;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(97, 96, 178, 0.2);
    color: #60a2bb;
    transform: translateY(-3px);
}

.copyright {
    color: #686769;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.tagline {
    color: #686769;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px 40px;
    }

    .about-content {
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .platforms-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .address-box {
        flex-wrap: wrap;
        justify-content: center;
    }

    .address-text {
        font-size: 0.7rem;
    }
}

@media (min-width: 769px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Toast notification for copy */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #6160b2;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
}
