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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: linear-gradient(to bottom, #0a0b1a 0%, #0f1023 50%, #0a0b1a 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 11, 26, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    width: 40px;
    height: 40px;
}

.logo span {
    font-size: 18px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 16px;
    list-style: none;
}

.nav-links li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    cursor: pointer;
}

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

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

.hero-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hero-content {
    max-width: 896px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 50px;
    margin-bottom: 32px;
    animation: pulse 2s infinite;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #9333ea;
    border-radius: 50%;
    margin-right: 8px;
}

.badge span {
    font-size: 14px;
    color: #c084fc;
}

.logo-spin {
    width: 128px;
    height: 128px;
    margin: 0 auto 32px;
    animation: spin 10s linear infinite;
}

.logo-spin img {
    width: 100%;
    height: 100%;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero h2 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(to right, #c084fc, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: underline;
    text-decoration-color: rgba(147, 51, 234, 0.5);
    text-decoration-thickness: 4px;
    text-underline-offset: 8px;
}

.hero p {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero p .highlight {
    color: #c084fc;
    font-weight: 600;
}

.btn-primary {
    display: inline-block;
    padding: 20px 32px;
    background: linear-gradient(to right, #7c3aed, #6d28d9);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.5);
}

/* Stats Section */
.stats {
    max-width: 1152px;
    margin: 0 auto;
    padding: 48px 20px;
}

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

.stat-card {
    background: linear-gradient(to bottom right, #1a1b2e, #16172a);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: rgba(147, 51, 234, 0.3);
    box-shadow: 0 8px 20px rgba(147, 51, 234, 0.1);
}

.stat-icon {
    display: inline-flex;
    padding: 12px;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 8px;
    margin-bottom: 16px;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    stroke: #c084fc;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-value .suffix {
    color: #c084fc;
}

.stat-label {
    font-size: 14px;
    color: #9ca3af;
}

/* Banners */
.banners {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner {
    background: linear-gradient(to right, rgba(147, 51, 234, 0.2), rgba(236, 72, 153, 0.2));
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.banner-content svg {
    width: 24px;
    height: 24px;
    stroke: #c084fc;
}

.banner-content span {
    font-weight: 600;
}

.btn-ghost {
    padding: 8px 16px;
    background: transparent;
    color: #d8b4fe;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
}

.btn-ghost:hover {
    color: #e9d5ff;
}

.info-banner {
    background: linear-gradient(to bottom right, rgba(88, 28, 135, 0.3), rgba(91, 33, 182, 0.3));
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    margin: 24px 0;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(147, 51, 234, 0.2);
    border-radius: 50px;
    margin-bottom: 16px;
}

.info-badge svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    stroke: #d8b4fe;
}

.info-badge span {
    font-size: 12px;
    font-weight: 600;
    color: #d8b4fe;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-banner p {
    font-size: 18px;
    margin-bottom: 8px;
}

.info-banner .sol-amount {
    color: #10b981;
    font-weight: 700;
}

.info-banner .subtitle {
    font-size: 14px;
    color: #9ca3af;
}

.bounce-arrow {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    animation: bounce 2s infinite;
}

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

.bounce-arrow svg {
    width: 24px;
    height: 24px;
    stroke: #c084fc;
}

.users-count {
    text-align: center;
    padding: 32px 0;
    color: #9ca3af;
    font-size: 18px;
}

.users-count .count {
    color: white;
    font-weight: 700;
}

/* Live Activity */
.live-activity {
    max-width: 1152px;
    margin: 0 auto;
    padding: 64px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-title p {
    color: #9ca3af;
}

.table-container {
    background: linear-gradient(to bottom right, #1a1b2e, #16172a);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

thead th {
    padding: 16px 24px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
}

tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}

tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

tbody tr.new-row {
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

tbody td {
    padding: 16px 24px;
    font-size: 14px;
}

.wallet-address {
    color: #d1d5db;
    font-family: 'Courier New', monospace;
}

.sol-amount {
    color: #10b981;
    font-weight: 600;
}

.tx-link {
    display: inline-flex;
    align-items: center;
    color: #c084fc;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s;
}

.tx-link:hover {
    color: #d8b4fe;
}

.tx-link svg {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.date-time {
    color: #9ca3af;
}

.fee-wallet {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #9ca3af;
}

.fee-wallet button {
    background: none;
    border: none;
    color: #c084fc;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}

.fee-wallet button:hover {
    color: #d8b4fe;
}

/* Listings & Partners */
.listings {
    max-width: 1152px;
    margin: 0 auto;
    padding: 64px 20px;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.listing-card {
    background: linear-gradient(to bottom right, #1a1b2e, #16172a);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.listing-card:hover {
    border-color: rgba(147, 51, 234, 0.3);
    box-shadow: 0 8px 20px rgba(147, 51, 234, 0.1);
    transform: translateY(-4px);
}

.listing-card img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 12px;
}

.listing-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.listing-status {
    font-size: 12px;
    color: #c084fc;
}

/* Features */
.features {
    max-width: 1152px;
    margin: 0 auto;
    padding: 64px 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: linear-gradient(to bottom right, #1a1b2e, #16172a);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(147, 51, 234, 0.3);
    box-shadow: 0 8px 20px rgba(147, 51, 234, 0.1);
    transform: translateY(-4px);
}

.feature-icon {
    display: inline-flex;
    padding: 16px;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 8px;
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: #c084fc;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: #9ca3af;
    line-height: 1.8;
}

/* How It Works */
.how-it-works {
    max-width: 1152px;
    margin: 0 auto;
    padding: 64px 20px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.step-card {
    position: relative;
    background: linear-gradient(to bottom right, #1a1b2e, #16172a);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s;
}

.step-card:hover {
    border-color: rgba(147, 51, 234, 0.3);
}

.step-icon-wrapper {
    position: relative;
    display: inline-flex;
    margin-bottom: 24px;
}

.step-glow {
    position: absolute;
    inset: 0;
    background: rgba(147, 51, 234, 0.2);
    border-radius: 50%;
    filter: blur(20px);
}

.step-icon {
    position: relative;
    padding: 16px;
    background: linear-gradient(to bottom right, #7c3aed, #6d28d9);
    border-radius: 50%;
}

.step-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: #9333ea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    color: #9ca3af;
    line-height: 1.8;
}

.cta-section {
    text-align: center;
}

.features-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.features-list span {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #9ca3af;
}

.features-list .dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    margin-right: 8px;
}

/* FAQ */
.faq {
    max-width: 896px;
    margin: 0 auto;
    padding: 64px 20px;
}

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

.faq-item {
    background: linear-gradient(to bottom right, #1a1b2e, #16172a);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(147, 51, 234, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    user-select: none;
}

.faq-icon {
    width: 20px;
    height: 20px;
    stroke: #9ca3af;
    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;
    color: #9ca3af;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    margin-top: 16px;
}

.faq-answer p {
    margin-bottom: 16px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: white;
    font-weight: 600;
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 48px 20px;
    margin-top: 64px;
}

.footer-container {
    max-width: 1152px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.footer-logo img {
    width: 48px;
    height: 48px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.footer-links button {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s;
}

.footer-links button:hover {
    color: #c084fc;
}

.footer-links .separator {
    color: #4b5563;
}

.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: #9ca3af;
}

.footer-copyright p {
    margin-bottom: 8px;
}

.footer-love {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.footer-love svg {
    width: 16px;
    height: 16px;
    fill: #ef4444;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1,
    .hero h2 {
        font-size: 36px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .table-wrapper {
        overflow-x: scroll;
    }
    
    thead th,
    tbody td {
        padding: 12px 16px;
        font-size: 12px;
    }
    
    .features-list {
        flex-direction: column;
    }
}