:root {
    --primary-color: #50AD54;
    --secondary-color: #3d8a40;
    --accent-color: #FFFFFF;
    --dark-bg: #000000;
    --card-bg: #0f0f0f;
    --text-primary: #FFFFFF;
    --text-secondary: #888888;
    --gradient-1: linear-gradient(135deg, #50AD54 0%, #3d8a40 100%);
    --gradient-2: linear-gradient(135deg, #50AD54 0%, #FFFFFF 100%);
    --chopp-green: #50AD54;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rubik', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.7;
}

/* Particles Background */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at top, rgba(80, 173, 84, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at bottom, rgba(80, 173, 84, 0.05) 0%, transparent 50%),
                #000000;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    padding: 1.2rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(80, 173, 84, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--chopp-green);
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(80, 173, 84, 0.4);
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.nav-logo:hover {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 25px rgba(80, 173, 84, 0.8);
}

.nav-title {
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    letter-spacing: 2px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShine 3s ease-in-out infinite;
}

@keyframes titleShine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.chart-btn {
    background: var(--pump-green);
    color: #000000;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
}

.chart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 236, 166, 0.4);
    background: var(--secondary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
}

.hero-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid var(--chopp-green);
    box-shadow: 
        0 0 40px rgba(80, 173, 84, 0.4),
        0 20px 60px rgba(0, 0, 0, 0.8);
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-text {
    text-align: left;
}

.main-title {
    font-family: 'Bangers', cursive;
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin: 0;
    letter-spacing: 3px;
    color: var(--chopp-green);
    text-shadow: 
        0 0 30px rgba(80, 173, 84, 0.5),
        0 4px 10px rgba(0, 0, 0, 0.8);
    line-height: 1;
}

@keyframes titleWave {
    0%, 100% { 
        transform: scale(1);
    }
    50% { 
        transform: scale(1.02);
    }
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    margin: 0.5rem 0 0 0;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-subtitle::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--chopp-green);
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

.hero-tagline {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--chopp-green);
    color: #000000;
    box-shadow: 0 4px 15px rgba(80, 173, 84, 0.3);
    font-weight: 700;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(80, 173, 84, 0.4);
    background: #5ec462;
}

.btn-secondary {
    background: transparent;
    color: var(--chopp-green);
    border: 1px solid var(--chopp-green);
    font-weight: 600;
}

.btn-secondary:hover {
    background: rgba(80, 173, 84, 0.1);
    border-color: #5ec462;
    color: #5ec462;
    transform: translateY(-2px);
}

.contract-address {
    background: rgba(80, 173, 84, 0.05);
    padding: 1.2rem;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid rgba(80, 173, 84, 0.3);
    margin-top: 1rem;
}

.contract-address code {
    color: var(--chopp-green);
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

/* Animations */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.spin {
    animation: spin 10s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Sections */
.section {
    padding: var(--spacing-xl) 2rem;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Bangers', cursive;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 2px;
    color: var(--chopp-green);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--chopp-green);
    border-radius: 2px;
}

/* Reality Check Section - New Comparison Display */
.example-comparison {
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid rgba(80, 173, 84, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.comparison-side {
    text-align: center;
}

.comparison-img {
    width: 100%;
    max-width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(80, 173, 84, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.comparison-side:hover .comparison-img {
    transform: scale(1.03);
    border-color: var(--chopp-green);
    box-shadow: 0 15px 40px rgba(80, 173, 84, 0.3);
}

.comparison-label {
    margin-top: 1.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
}

.label-good {
    background: rgba(80, 173, 84, 0.15);
    color: var(--chopp-green);
    border: 1px solid rgba(80, 173, 84, 0.3);
}

.label-bad {
    background: rgba(255, 0, 0, 0.15);
    color: #ff4444;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.vs-divider {
    font-family: 'Bangers', cursive;
    font-size: 3rem;
    color: var(--text-secondary);
    font-weight: 700;
}

.comparison-caption {
    text-align: center;
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
    padding: 1.5rem;
    margin-top: 2rem;
    background: rgba(80, 173, 84, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--chopp-green);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(80, 173, 84, 0.15);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: var(--chopp-green);
    box-shadow: 0 20px 40px rgba(80, 173, 84, 0.15);
    background: rgba(15, 15, 15, 0.8);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Smooth animations for hover states */
.about-card,
.tokenomics-card,
.step-card,
.social-card,
.upload-area,
.comparison-img {
    will-change: transform;
}

/* Fade in animation */
.fade-in {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Compare Your Own Section */
.compare-section {
    background: rgba(80, 173, 84, 0.02);
    padding: var(--spacing-xl) 2rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.upload-container {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(80, 173, 84, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.upload-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}

.upload-box {
    position: relative;
}

.upload-area {
    border: 2px dashed rgba(80, 173, 84, 0.3);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(80, 173, 84, 0.03);
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.upload-area:hover {
    border-color: var(--chopp-green);
    background: rgba(80, 173, 84, 0.08);
    transform: translateY(-2px);
}

.upload-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.upload-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.upload-hint {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.preview-area {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(80, 173, 84, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.preview-area img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn:hover {
    background: rgb(255, 0, 0);
    transform: scale(1.1) rotate(90deg);
}

.upload-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.vs-text {
    font-family: 'Bangers', cursive;
    font-size: 3rem;
    color: var(--chopp-green);
    text-shadow: 0 0 15px rgba(80, 173, 84, 0.6);
}

.vs-emoji {
    font-size: 2.5rem;
    animation: emojiWiggle 2s ease-in-out infinite;
}

@keyframes emojiWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.comparison-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.comparison-actions .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.share-tips {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(80, 173, 84, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--chopp-green);
}

.share-tips p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.share-tips strong {
    color: var(--chopp-green);
}

/* Roast Generator */
.roast-generator {
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: center;
    padding: 2.5rem;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.roast-generator h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    color: #ff4444;
    margin-bottom: 1.5rem;
}

.roast-display {
    min-height: 60px;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 68, 68, 0.05);
    border-radius: 8px;
    border-left: 3px solid #ff4444;
    font-size: 1.05rem;
    color: var(--text-primary);
    font-style: italic;
    display: none;
}

.roast-display.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Meme Origin Section */
.meme-section {
    background: rgba(255, 107, 157, 0.02);
}

.meme-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.tiktok-embed {
    display: flex;
    justify-content: center;
    align-items: center;
}

.meme-description {
    text-align: left;
}

.meme-story h3 {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    color: var(--chopp-green);
    margin-bottom: 1rem;
}

.big-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.meme-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.meme-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--card-bg);
    padding: 1.2rem;
    border-radius: 8px;
    border: 1px solid rgba(80, 173, 84, 0.15);
}

.stat-emoji {
    font-size: 2rem;
}

.stat-text {
    flex: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.stat-value {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.05rem;
}

.btn-tiktok {
    background: var(--chopp-green);
    color: #000000;
    padding: 1rem 2rem;
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: 700;
    border-radius: 8px;
}

.btn-tiktok:hover {
    background: #5ec462;
    transform: translateY(-2px);
}

/* Tokenomics Section */
.tokenomics-section {
    background: rgba(153, 69, 255, 0.02);
}

.tokenomics-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.tokenomics-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(80, 173, 84, 0.15);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.tokenomics-card:hover {
    transform: translateY(-5px);
    border-color: var(--chopp-green);
    box-shadow: 0 15px 30px rgba(80, 173, 84, 0.15);
}

.stat-emoji {
    font-size: 2.5rem;
}

.token-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    color: var(--chopp-green);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.dev-section {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(80, 173, 84, 0.15);
}

.dev-section h3 {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    color: var(--chopp-green);
    margin-bottom: 0.5rem;
}

.dev-section p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.dev-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--chopp-green);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    color: #000000;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.dev-link:hover {
    background: #5ec462;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(80, 173, 84, 0.3);
}

.dev-icon {
    font-size: 2rem;
}

.arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.dev-link:hover .arrow {
    transform: translateX(5px);
}

/* Chart Section */
.chart-section {
    background: rgba(20, 241, 149, 0.02);
}

.chart-container {
    max-width: 1200px;
    margin: 0 auto;
}

.chart-header {
    text-align: center;
    margin-bottom: 2rem;
}

.chart-header h3 {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    color: var(--chopp-green);
    margin-bottom: 0.5rem;
}

.chart-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.dexscreener-embed {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(80, 173, 84, 0.2);
}

.chart-links {
    text-align: center;
    margin-top: 2rem;
}

.chart-link-btn {
    display: inline-block;
    background: var(--chopp-green);
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.chart-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(80, 173, 84, 0.3);
    background: #5ec462;
}

/* Trade Section */
.trade-section {
    background: rgba(153, 69, 255, 0.02);
}

.buy-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(80, 173, 84, 0.15);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--chopp-green);
    box-shadow: 0 15px 30px rgba(80, 173, 84, 0.15);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: var(--chopp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    color: #000000;
    box-shadow: 0 4px 15px rgba(80, 173, 84, 0.4);
    border: 2px solid var(--dark-bg);
}

.step-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--text-primary);
    font-weight: 700;
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.step-link {
    color: var(--pump-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step-link:hover {
    color: var(--secondary-color);
}

.trade-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.buy-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid;
}

.jupiter-btn {
    background: var(--chopp-green);
    border-color: var(--chopp-green);
    color: #000000;
    font-weight: 700;
}

.jupiter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(80, 173, 84, 0.3);
    background: #5ec462;
}

.raydium-btn {
    background: transparent;
    border-color: var(--chopp-green);
    color: var(--chopp-green);
    font-weight: 700;
}

.raydium-btn:hover {
    background: rgba(80, 173, 84, 0.1);
    color: #5ec462;
    border-color: #5ec462;
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 2.5rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-title {
    font-size: 1.3rem;
    letter-spacing: 1px;
    font-weight: 700;
}

.btn-subtitle {
    font-size: 0.85rem;
    opacity: 0.7;
    font-weight: 400;
}

/* Community Section */
.community-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.social-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(80, 173, 84, 0.15);
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    position: relative;
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: var(--chopp-green);
    box-shadow: 0 15px 30px rgba(80, 173, 84, 0.15);
}

.social-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.social-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.social-cta {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.social-badge {
    display: inline-block;
    background: rgba(80, 173, 84, 0.15);
    color: var(--chopp-green);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    border: 1px solid rgba(80, 173, 84, 0.3);
}

.meme-callout {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(80, 173, 84, 0.2);
    margin-top: 3rem;
}

.meme-callout h3 {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    color: var(--chopp-green);
    margin-bottom: 1rem;
}

.meme-callout p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hashtags {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hashtags span {
    background: rgba(80, 173, 84, 0.1);
    color: var(--chopp-green);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    border: 1px solid rgba(80, 173, 84, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9rem;
}

.hashtags span:hover {
    background: rgba(80, 173, 84, 0.2);
    border-color: var(--chopp-green);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #000000;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(80, 173, 84, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.footer-logo span {
    font-family: 'Bangers', cursive;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: var(--chopp-green);
}

.footer-disclaimer {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 1.5rem 0;
    max-width: 800px;
    margin: 1.5rem auto;
    line-height: 1.6;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 968px) {
    .meme-content {
        grid-template-columns: 1fr;
    }

    .trade-buttons {
        grid-template-columns: 1fr;
    }

    .buy-steps {
        grid-template-columns: 1fr;
    }

    .comparison-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vs-divider {
        font-size: 2.5rem;
        padding: 0.5rem 0;
    }

    .upload-grid {
        grid-template-columns: 1fr;
    }

    .upload-vs {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .comparison-img {
        max-width: 100%;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-header {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .contract-address code {
        font-size: 0.7rem;
        word-break: break-all;
    }

    .tokenomics-grid {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll animations */
.slide-in {
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease forwards;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}