:root {
    --primary-color: #4CDA86;
    --primary-dark: #3bc470;
    --primary-light: #6ee49b;
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --bg-card: rgba(26, 26, 26, 0.8);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;
    --border-color: rgba(76, 218, 134, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(circle at 20% 80%, rgba(76, 218, 134, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(76, 218, 134, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(76, 218, 134, 0.05) 0%, transparent 50%);
}

.particles-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, var(--primary-color), transparent),
        radial-gradient(2px 2px at 40% 70%, var(--primary-color), transparent),
        radial-gradient(1px 1px at 90% 40%, var(--primary-color), transparent),
        radial-gradient(1px 1px at 50% 60%, var(--primary-color), transparent);
    background-size: 200px 200px, 300px 300px, 150px 150px, 250px 250px;
    animation: float 20s infinite linear;
    opacity: 0.3;
}

.floating-logos {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

.pump-logo {
    position: absolute;
    width: 30px;
    height: 30px;
    opacity: 0.15;
    animation: floatLogo 15s infinite linear;
    filter: blur(0.5px);
}

.pump-logo:nth-child(2n) {
    animation-duration: 20s;
    animation-delay: -5s;
    width: 25px;
    height: 25px;
    opacity: 0.1;
}

.pump-logo:nth-child(3n) {
    animation-duration: 18s;
    animation-delay: -10s;
    width: 35px;
    height: 35px;
    opacity: 0.2;
}

.pump-logo:nth-child(4n) {
    animation-duration: 25s;
    animation-delay: -15s;
    width: 20px;
    height: 20px;
    opacity: 0.08;
}

@keyframes floatLogo {
    0% {
        transform: translateX(-100px) translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.15;
    }
    90% {
        opacity: 0.15;
    }
    100% {
        transform: translateX(100vw) translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: 
        linear-gradient(rgba(76, 218, 134, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(76, 218, 134, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

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

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1) rotate(10deg);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.wallet-connect-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--bg-dark);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(76, 218, 134, 0.3);
}

.wallet-connect-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(76, 218, 134, 0.4);
}


.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 4rem;
}

.hero-logo {
    margin-bottom: 2rem;
}

.animated-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    animation: logoFloat 6s ease-in-out infinite, logoGlow 3s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 30px rgba(76, 218, 134, 0.5));
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 30px rgba(76, 218, 134, 0.5)); }
    100% { filter: drop-shadow(0 0 50px rgba(76, 218, 134, 0.8)); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.hero-tagline {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(76, 218, 134, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-description strong {
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(76, 218, 134, 0.3);
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3em;
    text-shadow: 0 0 15px rgba(76, 218, 134, 0.5);
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.cta-primary {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(76, 218, 134, 0.3);
}

.cta-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(76, 218, 134, 0.4);
}

.cta-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.contract-address-hero {
    margin-top: 2rem;
    text-align: center;
}

.contract-address-hero .ca-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.ca-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    max-width: 500px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.ca-display:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(76, 218, 134, 0.3);
}

.ca-text {
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    word-break: break-all;
    flex: 1;
    text-align: center;
    padding: 0;
    margin: 0;
}

.ca-copy-btn {
    background: rgba(76, 218, 134, 0.1);
    border: 1px solid rgba(76, 218, 134, 0.2);
    color: var(--primary-color);
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.ca-copy-btn:hover {
    background: rgba(76, 218, 134, 0.2);
    border-color: rgba(76, 218, 134, 0.4);
    transform: scale(1.05);
}

.ca-copy-btn .copy-icon {
    font-size: 1.1rem;
}

.ticker-container {
    width: 100%;
    max-width: 1000px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
}

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

.ticker-item {
    text-align: center;
}

.ticker-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ticker-price, .ticker-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.ticker-change {
    font-size: 0.9rem;
    font-weight: 600;
}

.ticker-change.positive {
    color: var(--primary-color);
}

.ticker-change.negative {
    color: #ff4444;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 4rem;
}

.moon-calculator {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(76, 218, 134, 0.05), transparent);
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 4rem;
}

.calculator-input, .calculator-output {
    padding: 2.5rem;
}

.calculator-input h3, .calculator-output h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.slider-container {
    margin-bottom: 2rem;
}

.slider-container label {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

#investment-slider {
    width: 100%;
    height: 8px;
    border-radius: 20px;
    background: var(--bg-card);
    outline: none;
    margin-bottom: 1rem;
    -webkit-appearance: none;
}

#investment-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 0 20px rgba(76, 218, 134, 0.5);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    #investment-slider::-webkit-slider-thumb {
        width: 35px;
        height: 35px;
    }
    
    #investment-slider::-moz-range-thumb {
        width: 35px;
        height: 35px;
    }
}

#investment-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(76, 218, 134, 0.8);
}

#investment-slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 20px rgba(76, 218, 134, 0.5);
}

.slider-value {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(76, 218, 134, 0.5);
}

.current-stats {
    margin-top: 2rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.stat-label {
    color: var(--text-secondary);
}

.stat-value {
    color: var(--text-primary);
    font-weight: 600;
}

.stat-value.target {
    color: var(--primary-color);
    font-weight: 700;
}

.rocket-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
}

.rocket {
    font-size: 4rem;
    animation: rocketFloat 3s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.rocket:hover {
    transform: scale(1.2) rotate(15deg);
}

@keyframes rocketFloat {
    0%, 100% { transform: translateY(0px) rotate(-10deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.moon {
    font-size: 3rem;
    position: absolute;
    top: -20px;
    right: -20px;
    opacity: 0.7;
    animation: moonGlow 4s ease-in-out infinite;
}

@keyframes moonGlow {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.progress-track {
    width: 200px;
    height: 10px;
    background: var(--bg-card);
    border-radius: 20px;
    margin: 2rem 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    width: 0%;
    transition: width 0.5s ease;
    box-shadow: 0 0 20px rgba(76, 218, 134, 0.3);
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    width: 200px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(76, 218, 134, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.result-item:hover {
    transform: translateY(-3px);
    background: rgba(76, 218, 134, 0.1);
}

.result-icon {
    font-size: 2rem;
}

.result-info {
    display: flex;
    flex-direction: column;
}

.result-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(76, 218, 134, 0.3);
}

.result-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.meme-response {
    background: rgba(76, 218, 134, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.meme-response p {
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
}

.warning-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
    opacity: 0.8;
}

/* Tokenomics Section */
.tokenomics {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(76, 218, 134, 0.03), transparent);
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.tokenomics-card {
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tokenomics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 4px 4px 0 0;
}

.tokenomics-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
    text-shadow: 0 0 20px rgba(76, 218, 134, 0.5);
}

.tokenomics-card h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.tokenomics-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.tokenomics-details {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(76, 218, 134, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(76, 218, 134, 0.1);
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(76, 218, 134, 0.08);
    border-color: rgba(76, 218, 134, 0.2);
    transform: translateY(-2px);
}

.detail-icon {
    font-size: 2rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 218, 134, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.detail-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.detail-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
}

.tokenomics-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
}

.tokenomics-warning h4 {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.tokenomics-warning p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.tokenomics-chart {
    padding: 2.5rem;
}

.tokenomics-chart h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.chart-container {
    margin-bottom: 2rem;
}

.pie-chart {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--primary-color);
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 30px rgba(76, 218, 134, 0.3);
}

.slice-label {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.chart-legend {
    display: grid;
    gap: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    flex-shrink: 0;
}

.chart-footnote {
    background: rgba(76, 218, 134, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.chart-footnote p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.tokenomics-quotes .quote-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.tokenomics-quotes .quote-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.tokenomics-quotes .quote-text {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.tokenomics-quotes .quote-author {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Connect Wallet Popup Styles */
.popup-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.popup-trade-btn {
    background: var(--primary-color);
    color: var(--bg-dark);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(76, 218, 134, 0.3);
    flex: 1;
    min-width: 180px;
    max-width: 220px;
}

.popup-trade-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 218, 134, 0.4);
}

.popup-wisdom-btn {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
}

.popup-wisdom-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.learn-more-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.learn-more-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    transform: rotate(90deg);
}

.popup-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.popup-footer {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0;
    font-style: italic;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .popup-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .popup-trade-btn,
    .popup-wisdom-btn {
        width: 100%;
        max-width: 280px;
        min-width: auto;
    }
}

/* Community Section */
.community {
    padding: 8rem 0;
    background: linear-gradient(135deg, transparent, rgba(76, 218, 134, 0.05));
}

.community-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.community-card {
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.community-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 4px 4px 0 0;
}

.community-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
    text-shadow: 0 0 20px rgba(76, 218, 134, 0.5);
}

.community-card h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.community-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.community-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(76, 218, 134, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(76, 218, 134, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(76, 218, 134, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item span:last-child {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.community-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    background: linear-gradient(135deg, #1DA1F2, var(--primary-color));
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.3);
    position: relative;
    overflow: hidden;
}

.community-join-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.community-join-btn:hover::before {
    left: 100%;
}

.community-join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(29, 161, 242, 0.4);
}

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

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.community-join-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.community-quotes {
    padding: 2.5rem;
}

.community-quotes h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.quote-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.quote-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.quote-text {
    font-style: italic;
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    position: relative;
}

.quote-text::before {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
    position: absolute;
    left: -1rem;
    top: -0.5rem;
}

.quote-text::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
}

.quote-author {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: right;
    display: block;
    margin-top: 0.5rem;
}

.whitepaper {
    padding: 8rem 0;
}

.whitepaper-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.whitepaper-preview {
    padding: 3rem;
}

.whitepaper-preview h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.whitepaper-preview p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.whitepaper-preview ul {
    list-style: none;
    margin-bottom: 2rem;
}

.whitepaper-preview li {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.whitepaper-preview li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.whitepaper-version {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.executive-summary h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.executive-summary p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.whitepaper-highlights {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.highlight-section h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.highlight-section ul {
    list-style: none;
    margin: 0;
}

.highlight-section li {
    color: var(--text-secondary);
    margin: 0.5rem 0;
    padding-left: 1rem;
    position: relative;
}

.highlight-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.mathematical-proof h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.proof-box {
    background: rgba(76, 218, 134, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    text-align: center;
}

.proof-box p {
    color: var(--text-primary);
    margin: 0.5rem 0;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-color);
    color: var(--bg-dark);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.download-btn:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(76, 218, 134, 0.3);
}

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

.download-subtitle {
    font-size: 0.8rem;
    opacity: 0.8;
}

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

.quick-stats {
    padding: 2rem;
}

.stats-header h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.stats-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.comparison-table {
    display: grid;
    gap: 0.5rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 80px 80px;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    align-items: center;
}

.comparison-row.header {
    background: rgba(76, 218, 134, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.comparison-row:not(.header) {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-secondary);
}

.comparison-row.winner {
    background: rgba(76, 218, 134, 0.15);
    color: var(--primary-color);
    font-weight: 600;
}

.team-info {
    padding: 2rem;
}

.team-info h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.team-member {
    color: var(--text-secondary);
    margin: 1rem 0;
    line-height: 1.5;
}

.team-member strong {
    color: var(--text-primary);
}

.disclaimer {
    padding: 2rem;
}

.disclaimer h4 {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.disclaimer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.disclaimer .tagline {
    color: var(--primary-color);
    font-style: italic;
    font-weight: 600;
    text-align: center;
}

.footer {
    background: var(--bg-darker);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-tagline {
    color: var(--text-secondary);
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0.5rem 0;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Trading Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    0% {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.token-info {
    margin-bottom: 2rem;
}

.token-details {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(76, 218, 134, 0.05);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.token-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
}

.token-text h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 0 0 0.5rem 0;
}

.contract-address {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0;
}

.ca-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.ca-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ca-input-box {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem;
}

.ca-code {
    background: transparent;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: var(--text-primary);
    border: none;
    word-break: break-all;
    line-height: 1.2;
    margin: 0;
}

.copy-btn {
    background: var(--primary-color);
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    color: var(--bg-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 8px;
    min-width: 80px;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(76, 218, 134, 0.2);
}

.copy-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(76, 218, 134, 0.3);
}

.copy-btn.copied {
    background: #28a745;
    box-shadow: 0 2px 10px rgba(40, 167, 69, 0.2);
}

.copy-btn.copied .copy-text {
    display: none;
}

.copy-btn.copied .copy-icon {
    transform: scale(1.2);
}

.copy-icon {
    transition: transform 0.3s ease;
}

.copy-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trading-options h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.trading-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.trade-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trade-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(76, 218, 134, 0.2);
    border-color: var(--primary-color);
}

.trade-btn-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.trade-btn:hover .platform-logo {
    transform: scale(1.1);
}

.trade-btn-content {
    flex: 1;
}

.trade-btn-title {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.trade-btn-desc {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.trade-btn-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.trade-btn:hover .trade-btn-arrow {
    transform: translateX(5px);
}

.pump-btn:hover {
    background: linear-gradient(135deg, rgba(196, 255, 64, 0.1), rgba(76, 218, 134, 0.1));
}

.jupiter-btn:hover {
    background: linear-gradient(135deg, rgba(64, 196, 255, 0.1), rgba(76, 218, 134, 0.1));
}

.trading-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.trading-warning h4 {
    color: #ffc107;
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
}

.trading-warning ul {
    margin: 0;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.trading-warning li {
    margin: 0.5rem 0;
    line-height: 1.4;
}

.degen-quotes {
    text-align: center;
    padding: 1.5rem;
    background: rgba(76, 218, 134, 0.05);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.quote {
    font-style: italic;
    color: var(--text-secondary);
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.quote:first-child {
    color: var(--primary-color);
    font-weight: 600;
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .cta-primary, .cta-secondary, .wallet-connect-btn, .copy-btn, .trade-btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .social-link {
        min-height: 44px;
    }
    
    
    /* Reduce animations on mobile for performance */
    .particles-bg::before {
        animation-duration: 40s;
    }
    
    .rocket {
        animation-duration: 6s;
    }
    
    .animated-logo {
        animation-duration: 8s;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav {
        padding: 0.75rem 1rem;
    }
    
    .logo {
        width: 32px;
        height: 32px;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .wallet-connect-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 6rem 1rem 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .contract-address-hero {
        margin-top: 1.5rem;
        padding: 0 1rem;
    }
    
    .ca-display {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
        max-width: 100%;
    }
    
    .ca-text {
        font-size: 0.75rem;
        word-break: break-all;
        text-align: center;
    }
    
    .ca-copy-btn {
        align-self: center;
        min-width: 60px;
    }
    
    .animated-logo {
        width: 80px;
        height: 80px;
    }
    
    .ticker-container {
        padding: 1rem;
        margin: 0 1rem;
        border-radius: 12px;
    }
    
    .ticker {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0;
    }
    
    .ticker-item {
        padding: 1rem;
        text-align: center;
        background: rgba(76, 218, 134, 0.05);
        border-radius: 8px;
        border: 1px solid rgba(76, 218, 134, 0.1);
    }
    
    .ticker-label {
        font-size: 0.8rem;
    }
    
    .ticker-price, .ticker-value {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .calculator-input, .calculator-output {
        padding: 1rem;
    }
    
    .slider-value {
        font-size: 1.4rem;
    }
    
    .result-item {
        padding: 0.75rem;
    }
    
    .community-card {
        padding: 2rem 1rem;
    }
    
    .community-icon {
        font-size: 3rem;
    }
    
    .community-card h3 {
        font-size: 1.5rem;
    }
    
    .community-card p {
        font-size: 1rem;
    }
    
    .community-join-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .community-quotes {
        padding: 1.5rem;
    }
    
    .tokenomics-card {
        padding: 1.5rem;
    }
    
    .tokenomics-chart {
        padding: 1.5rem;
    }
    
    .tokenomics-icon {
        font-size: 3rem;
    }
    
    .tokenomics-card h3 {
        font-size: 1.5rem;
    }
    
    .pie-chart {
        width: 120px;
        height: 120px;
    }
    
    .detail-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .detail-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .detail-value {
        font-size: 1.1rem;
    }
    
    .whitepaper-preview {
        padding: 1.5rem;
    }
    
    .whitepaper-sidebar .glass {
        padding: 1.5rem;
    }
    
    .comparison-row {
        padding: 0.5rem;
        grid-template-columns: 1fr 60px 60px;
        gap: 0.5rem;
        font-size: 0.85rem;
    }
    
    .highlight-section {
        margin-bottom: 2rem;
    }
    
    .highlight-section li {
        font-size: 0.9rem;
        margin: 0.4rem 0;
    }
    
    .mathematical-proof {
        padding: 1rem;
    }
    
    .proof-box {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .download-btn {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .modal-content {
        width: 98%;
        margin: 1rem;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .ca-code {
        font-size: 0.65rem;
        padding: 0.5rem;
    }
    
    .copy-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.7rem;
    }
}

/* Medium phones and small tablets */
@media (max-width: 640px) {
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .calculator-container {
        gap: 1.5rem;
    }
    
    .rocket {
        font-size: 2.5rem;
    }
    
    .community-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .community-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .community-join-btn {
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
    }
    
    .trading-buttons {
        gap: 0.75rem;
    }
    
    .trade-btn {
        padding: 1rem;
    }
}

/* Tablets and large phones */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .ticker-container {
        padding: 1.25rem;
        margin: 0 1rem;
    }
    
    .ticker {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .ticker-item {
        background: rgba(76, 218, 134, 0.05);
        border-radius: 8px;
        border: 1px solid rgba(76, 218, 134, 0.1);
        padding: 1.25rem;
    }
    
    .ticker-label {
        font-size: 0.85rem;
    }
    
    .ticker-price, .ticker-value {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .rocket-animation {
        min-height: 200px;
        margin: 2rem 0;
    }
    
    .rocket {
        font-size: 3rem;
    }
    
    .moon {
        font-size: 2rem;
        top: -10px;
        right: -10px;
    }
    
    .progress-track {
        width: 150px;
    }
    
    .progress-labels {
        width: 150px;
    }
    
    .result-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .calculator-input, .calculator-output {
        padding: 1.5rem;
    }
    
    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tokenomics-card {
        padding: 2rem;
    }
    
    .tokenomics-chart {
        padding: 2rem;
    }
    
    .pie-chart {
        width: 150px;
        height: 150px;
    }
    
    .community-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .community-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .whitepaper-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    /* Trading Modal Mobile Styles */
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .token-details {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contract-address {
        align-items: center;
    }
    
    .ca-row {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    
    .ca-input-box {
        text-align: center;
    }
    
    .ca-code {
        font-size: 0.7rem;
        text-align: center;
    }
    
    .copy-btn {
        width: 100%;
        min-width: auto;
    }
    
    .trade-btn {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.2rem;
    }
    
    .trade-btn-content {
        order: 2;
    }
    
    .trade-btn-icon {
        order: 1;
        font-size: 2rem;
    }
    
    .platform-logo {
        width: 35px;
        height: 35px;
    }
    
    .trade-btn-arrow {
        order: 3;
        transform: rotate(90deg);
    }
    
    .trade-btn:hover .trade-btn-arrow {
        transform: rotate(90deg) translateY(5px);
    }
}