/* Global Styles */
:root {
    --primary-color: #6a5acd; /* Slateblue - Erika flower color */
    --secondary-color: #4b0082; /* Indigo - Deeper purple */
    --accent-color: #9370db; /* Medium purple */
    --background-color: #f8f9fa;
    --text-color: #333;
    --light-text: #f8f9fa;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    
    /* Tokenomics colors */
    --fairlaunch-color: #6a5acd;
    --staking-color: #9370db;
    --liquidity-color: #4b0082;
    --team-color: #ba55d3;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

section {
    padding: 5rem 0;
}

button {
    cursor: pointer;
    border: none;
    border-radius: var(--border-radius);
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: var(--box-shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 15px;
}

.logo h1 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
}

nav ul li a:hover {
    color: var(--primary-color);
}

#connect-wallet {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: background-color 0.3s ease;
}

#connect-wallet:hover {
    background-color: var(--secondary-color);
}

/* Hero Section */
.hero {
    padding-top: 8rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.token-address {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-top: 2rem;
}

.address-box {
    display: flex;
    align-items: center;
    background-color: #f1f3f5;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
}

#token-address {
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: 600;
    flex: 1;
}

.address-dots {
    color: var(--primary-color);
}

#copy-address {
    background: none;
    color: var(--primary-color);
    padding: 5px;
    margin-left: 10px;
}

#copy-address:hover {
    color: var(--secondary-color);
}

.address-note {
    font-size: 0.85rem;
    color: #6c757d;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.token-image-placeholder {
    width: 300px;
    height: 300px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Swap Section */
.swap-section {
    background-color: white;
}

.swap-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.swap-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.swap-info {
    flex: 1;
}

.swap-info h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.raydium-widget {
    flex: 1;
    min-height: 400px;
}

.raydium-placeholder {
    background-color: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.small-text {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 1rem;
}

/* Tokenomics Section */
.tokenomics-section {
    background-color: #f8f9fa;
}

.tokenomics-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.total-supply {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.tokenomics-chart {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
    align-items: center;
}

.chart-container {
    flex: 1;
    min-width: 300px;
    height: 300px;
}

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

.tokenomics-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.color-box {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    margin-right: 1rem;
}

.fairlaunch {
    background-color: var(--fairlaunch-color);
}

.staking {
    background-color: var(--staking-color);
}

.liquidity {
    background-color: var(--liquidity-color);
}

.team {
    background-color: var(--team-color);
}

.item-details h4 {
    margin-bottom: 0.25rem;
}

.item-details p {
    font-size: 0.9rem;
    color: #6c757d;
}

/* About Section */
.about-section {
    background-color: white;
}

.about-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-features {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.feature {
    flex: 1 0 calc(33.333% - 1rem);
    min-width: 200px;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-links, .footer-social {
    flex: 1;
    min-width: 200px;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a, .footer-social a {
    color: var(--light-text);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links ul li a:hover, .footer-social a:hover {
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    font-size: 1.5rem;
}

.footer-disclaimer {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.disclaimer-text {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 3rem;
    }
    
    .swap-container {
        flex-direction: column;
    }
    
    .tokenomics-chart {
        flex-direction: column;
    }
    
    .about-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .feature {
        flex: 1 0 100%;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .token-image-placeholder {
        width: 200px;
        height: 200px;
    }
}
