/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Starfield Background */
.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 215, 0, 0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(107, 78, 156, 0.8), transparent),
        radial-gradient(2px 2px at 160px 30px, #fff, transparent),
        radial-gradient(1px 1px at 200px 90px, rgba(255, 215, 0, 0.6), transparent),
        radial-gradient(2px 2px at 240px 20px, #fff, transparent),
        radial-gradient(1px 1px at 280px 60px, rgba(107, 78, 156, 0.6), transparent),
        radial-gradient(1px 1px at 320px 100px, #fff, transparent),
        radial-gradient(2px 2px at 360px 40px, rgba(255, 215, 0, 0.7), transparent);
    background-repeat: repeat;
    background-size: 400px 150px;
    animation: twinkle 3s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

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

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(107, 78, 156, 0.3);
}

.navbar {
    padding: 1rem 0;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #FFD700;
    background: rgba(107, 78, 156, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
main {
    padding-top: 100px;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 0;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-banner {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.hero-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(107, 78, 156, 0.3);
}

.hero-logo-overlay {
    position: absolute;
    top: 20%;
    right: 4%;
    transform: translate(50%, -50%);
    z-index: 2;
}

.hero-overlay-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: float 3s ease-in-out infinite;
}

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

.hero-text h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #FFD700, #6B4E9C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.cta-button.primary {
    background: linear-gradient(45deg, #6B4E9C, #FFD700);
    color: #000;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(107, 78, 156, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.cta-button.secondary:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-3px);
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: rgba(107, 78, 156, 0.1);
}

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

.feature-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(107, 78, 156, 0.3);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

/* Community Section */
.community {
    padding: 4rem 0;
    text-align: center;
}

.community h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.community-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(107, 78, 156, 0.2);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid rgba(107, 78, 156, 0.5);
}

.social-link:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    color: #FFD700;
    transform: translateY(-3px);
}

.social-icon {
    font-size: 1.2rem;
}

/* Page Hero */
.page-hero {
    padding: 4rem 0 2rem;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

/* Content Sections */
.content {
    padding: 2rem 0 4rem;
}

/* About Page Styles */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.content-block {
    margin-bottom: 3rem;
}

.content-block h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stats-card {
    background: rgba(107, 78, 156, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(107, 78, 156, 0.3);
}

.stats-card h3 {
    font-family: 'Orbitron', monospace;
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(107, 78, 156, 0.2);
}

.stat-label {
    color: #ccc;
}

.stat-value {
    color: #fff;
    font-weight: 600;
}

.about-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    display: block;
    border-radius: 50%;
}

/* Token Page Styles */
.token-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.info-card {
    background: rgba(107, 78, 156, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(107, 78, 156, 0.3);
    margin-bottom: 2rem;
}

.info-card h2 {
    font-family: 'Orbitron', monospace;
    color: #FFD700;
    margin-bottom: 2rem;
}

.token-table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.table-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border-left: 3px solid #6B4E9C;
}

.table-label {
    color: #ccc;
    font-weight: 500;
}

.table-value {
    color: #FFD700;
    font-weight: 600;
}

.note {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border-left: 3px solid #FFD700;
}

.note p {
    color: #FFD700;
    margin: 0;
}

.trading-card {
    background: rgba(107, 78, 156, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(107, 78, 156, 0.3);
}

.trading-card h3 {
    font-family: 'Orbitron', monospace;
    color: #FFD700;
    margin-bottom: 1rem;
}

.trading-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.trading-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid #FFD700;
    transition: all 0.3s ease;
}

.trading-button:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateX(5px);
}

.platform-icon {
    font-size: 1.5rem;
}

.contract-address-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(107, 78, 156, 0.3);
}

.contract-address-section h4 {
    font-family: 'Orbitron', monospace;
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contract-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(107, 78, 156, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(107, 78, 156, 0.2);
}

#contractAddress {
    flex: 1;
    font-family: monospace;
    font-size: 0.9rem;
    color: #ccc;
    word-break: break-all;
}

.copy-btn {
    background: transparent;
    border: 1px solid #FFD700;
    color: #FFD700;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 40px;
}

.copy-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.05);
}

.token-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.price-card {
    background: rgba(107, 78, 156, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(107, 78, 156, 0.3);
}

.price-card h3 {
    font-family: 'Orbitron', monospace;
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.price-display {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(107, 78, 156, 0.2);
}

.price-label {
    color: #ccc;
}

.price-value {
    color: #FFD700;
    font-weight: 600;
}

.price-change {
    font-weight: 600;
}

.price-change.positive {
    color: #4CAF50;
}

.price-change.negative {
    color: #f44336;
}

.data-note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 1rem;
    text-align: center;
    font-style: italic;
}

.tokenomics-card {
    background: rgba(107, 78, 156, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(107, 78, 156, 0.3);
}

.tokenomics-card h3 {
    font-family: 'Orbitron', monospace;
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.tokenomics-chart {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chart-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chart-bar {
    height: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.chart-bar.bonding {
    background: linear-gradient(45deg, #6B4E9C, #9C6BDE);
}

.chart-bar.migrating {
    background: linear-gradient(45deg, #FFD700, #FFA500);
}

.chart-label {
    font-size: 0.9rem;
    color: #ccc;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(107, 78, 156, 0.3);
    margin-top: 4rem;
}

footer p {
    color: #888;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.9rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100%;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content,
    .token-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        max-height: 250px;
    }
    
    .hero-overlay-logo {
        width: 80px;
        height: 80px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .trading-buttons {
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-overlay-logo {
        width: 60px;
        height: 60px;
    }
}
