/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0a0e17;
    color: white;
    overflow-x: hidden;
}

/* Gradient animations */
@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-text {
    background: linear-gradient(90deg, #36EEE0, #BA55D3);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.gradient-border {
    position: relative;
    border-radius: 15px;
    padding: 3px;
    background: linear-gradient(90deg, #36EEE0, #BA55D3);
    animation: gradientBG 15s ease infinite;
    background-size: 400% 400%;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    background-color: rgba(10, 14, 23, 0.9);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 28px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #36EEE0;
}

.cta-button {
    background: linear-gradient(90deg, #36EEE0, #BA55D3);
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(54, 238, 224, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(54, 238, 224, 0.5);
}

/* Hero section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 8%;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, rgba(54, 238, 224, 0.1) 0%, rgba(10, 14, 23, 0.95) 70%);
    z-index: -1;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
}

.hero h1 {
    font-size: 72px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

.token-address {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    margin: 30px 0;
    backdrop-filter: blur(5px);
}

.token-address code {
    margin-right: 10px;
    color: #36EEE0;
}

.copy-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Features section */
.features {
    padding: 100px 8%;
    text-align: center;
}

.section-title {
    font-size: 42px;
    margin-bottom: 60px;
}

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

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(54, 238, 224, 0.2), rgba(186, 85, 211, 0.2));
    border-radius: 50%;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #36EEE0;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Tokenomics section */
.tokenomics {
    padding: 100px 8%;
    position: relative;
    overflow: hidden;
}

.tokenomics-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(186, 85, 211, 0.1) 0%, rgba(10, 14, 23, 0.95) 70%);
    z-index: -1;
}

.tokenomics-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.tokenomics-chart {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.chart-container {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    position: relative;
}

.tokenomics-info {
    flex: 1;
    min-width: 300px;
}

.tokenomics-list {
    list-style: none;
}

.tokenomics-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
}

.tokenomics-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 15px;
}

.tokenomics-item:nth-child(1) .tokenomics-color {
    background-color: #36EEE0;
}

.tokenomics-item:nth-child(2) .tokenomics-color {
    background-color: #BA55D3;
}

.tokenomics-item span {
    font-weight: 700;
    margin-right: 10px;
}

/* Calculator section */
.calculator {
    padding: 100px 8%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.02);
}

.calculator-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 60px;
}

.calculator-card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.calculator-info {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: left;
}

.calculator-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #36EEE0;
}

.calculator-info p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.disclaimer {
    margin-top: 30px;
    padding: 15px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.05);
}

.disclaimer p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 16px;
}

.input-group input:focus {
    outline: none;
    border-color: #36EEE0;
}

.calculate-btn {
    background: linear-gradient(90deg, #36EEE0, #BA55D3);
    border: none;
    padding: 12px 25px;
    width: 100%;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.calculate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(54, 238, 224, 0.3);
}

.results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.result-item {
    background-color: rgba(255, 255, 255, 0.07);
    padding: 15px;
    border-radius: 8px;
}

.result-item h4 {
    color: #36EEE0;
    margin-bottom: 5px;
    font-size: 16px;
}

.result-item p {
    font-size: 16px;
}

/* How to buy section */
.how-to-buy {
    padding: 100px 8%;
    text-align: center;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.step-card {
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #36EEE0, #BA55D3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-card h3 {
    margin-top: 20px;
    margin-bottom: 15px;
    color: #36EEE0;
}

.step-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Community section */
.community {
    padding: 100px 8%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.02);
}

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

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.social-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(54, 238, 224, 0.2), rgba(186, 85, 211, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(54, 238, 224, 0.4), rgba(186, 85, 211, 0.4));
}

.social-link span {
    font-weight: 500;
}

/* Footer */
footer {
    padding: 50px 8% 30px;
    text-align: center;
    position: relative;
}

.footer-logo {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #36EEE0;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Animation utilities */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Base styles (already provided) */
.token-stats-banner {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.token-stats-banner .stat-item {
    display: flex;
    align-items: center;
    background: none;
    padding: 0;
}

.token-stats-banner .stat-label {
    margin-right: 5px;
    margin-bottom: 0;
}

a {
    text-decoration: none;
    display: inline-block;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    .token-stats-banner {
        flex-direction: column;
        gap: 8px;
        padding: 15px;
        border-radius: 20px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .token-stats-banner .stat-item {
        justify-content: space-between;
        width: 100%;
        padding: 5px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .token-stats-banner .stat-item:last-child {
        border-bottom: none;
    }
}

@media screen and (max-width: 480px) {
    .token-stats-banner {
        font-size: 14px;
        padding: 12px;
    }
    
    .token-stats-banner .stat-label {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
    }
    
    .token-price-display,
    #volume-banner,
    #marketcap-banner {
        font-weight: 600;
        font-size: 13px;
    }
}

@media screen and (max-width: 768px) {
    .token-stats-banner {
        flex-direction: column;
        gap: 5px;
        padding: 10px;
    }
}

/* Responsive design */
@media screen and (max-width: 768px) {
    nav {
        padding: 20px 5%;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 48px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .tokenomics-container {
        flex-direction: column;
    }
    
    .social-links {
        flex-wrap: wrap;
    }

    .calculator-container {
        flex-direction: column;
    }

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

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .token-address {
        font-size: 12px;
        padding: 8px 15px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-card h3 {
        font-size: 20px;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 15px;
    }
}
