/* ================================
   SUSIS PUMPKIN COIN - Main Styles
   ================================ */

/* CSS Variables */
:root {
    /* Colors */
    --primary-orange: #FF8C00;
    --secondary-orange: #FFA500;
    --accent-orange: #FFB84D;
    --light-orange: #FFCC80;
    --dark-teal: #1a3a3a;
    --darker-teal: #0f2525;
    --bg-dark: #0a1a1a;
    --bg-darker: #050f0f;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-accent: #FFB84D;

    /* Spacing */
    --section-padding: 100px 20px;
    --container-max-width: 1200px;

    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Shadows */
    --shadow-small: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 8px 16px rgba(0, 0, 0, 0.4);
    --shadow-large: 0 16px 32px rgba(0, 0, 0, 0.5);
    --glow-orange: 0 0 20px rgba(255, 140, 0, 0.5);
}

/* Light Mode Variables */
[data-theme="light"] {
    --dark-teal: #e8f4f4;
    --darker-teal: #d0e8e8;
    --bg-dark: #f5f5f5;
    --bg-darker: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #444444;
}

/* Reset & Base Styles */
* {
    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-darker);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-pumpkin {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--primary-orange), var(--secondary-orange));
    border-radius: 50% 50% 48% 52%;
    opacity: 0.05;
    animation: float 20s infinite ease-in-out;
}

.floating-pumpkin:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.floating-pumpkin:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
    animation-duration: 30s;
}

.floating-pumpkin:nth-child(3) {
    bottom: 20%;
    left: 70%;
    animation-delay: 10s;
    animation-duration: 35s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(5deg); }
    50% { transform: translateY(-60px) rotate(-5deg); }
    75% { transform: translateY(-30px) rotate(5deg); }
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-orange);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    box-shadow: var(--shadow-medium);
}

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

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

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-orange);
}

.nav-logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-primary);
}

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

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

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

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

.nav-controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 5px;
    background: var(--dark-teal);
    padding: 5px;
    border-radius: 25px;
    border: 2px solid var(--dark-teal);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.lang-btn:hover {
    color: var(--primary-orange);
}

.lang-btn.active {
    background: var(--primary-orange);
    color: var(--bg-darker);
    box-shadow: var(--shadow-small);
}

.theme-toggle {
    background: var(--dark-teal);
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-bounce);
}

.theme-toggle:hover {
    transform: rotate(180deg);
    box-shadow: var(--glow-orange);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-orange);
    transition: var(--transition-smooth);
}

/* Ticker Banner */
.ticker-banner {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--primary-orange);
    color: var(--bg-darker);
    padding: 10px 0;
    overflow: hidden;
    z-index: 999;
    font-weight: 700;
}

.ticker-content {
    display: flex;
    animation: scroll-ticker 30s linear infinite;
}

.ticker-item {
    white-space: nowrap;
    padding: 0 50px;
    font-size: 1rem;
}

@keyframes scroll-ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding: 150px 20px 80px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, var(--darker-teal) 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.achtung-badge {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--bg-darker);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: var(--glow-orange);
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.hero-title-main {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-title-sub {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.hero-tagline {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-accent);
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-bounce);
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--bg-darker);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--glow-orange), var(--shadow-large);
}

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

.btn-secondary:hover {
    background: var(--primary-orange);
    color: var(--bg-darker);
    transform: translateY(-3px) scale(1.05);
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--dark-teal);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 5px;
}

.hero-image {
    z-index: 2;
}

.pumpkin-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pumpkin-mascot {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--glow-orange), var(--shadow-large);
    transition: var(--transition-smooth);
}

.animate-float {
    animation: float-mascot 6s ease-in-out infinite;
}

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

.pumpkin-mascot:hover {
    transform: scale(1.05) rotate(5deg);
}

/* Section Styles */
section {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Glass Effect */
.glass-effect {
    background: rgba(26, 58, 58, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.glass-effect:hover {
    background: rgba(26, 58, 58, 0.5);
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

/* About Section */
.about-section {
    background: var(--bg-dark);
}

/* Real Pumpkin Showcase */
.pumpkin-showcase {
    max-width: 600px;
    margin: 0 auto 60px;
    text-align: center;
}

.showcase-image {
    position: relative;
    display: inline-block;
}

.real-pumpkin {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--glow-orange), var(--shadow-large);
    transition: var(--transition-smooth);
    animation: float-mascot 6s ease-in-out infinite;
}

.real-pumpkin:hover {
    transform: scale(1.05) rotate(-3deg);
}

.showcase-caption {
    margin-top: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.feature-card {
    padding: 40px 30px;
    text-align: center;
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.feature-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Tokenomics Section */
.tokenomics-section {
    background: var(--bg-darker);
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.tokenomics-card {
    padding: 40px;
}

.tokenomics-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 30px;
}

.token-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--dark-teal);
}

.info-label {
    font-weight: 600;
    color: var(--text-secondary);
}

.info-value {
    font-weight: 700;
    color: var(--text-primary);
}

.ticker-highlight {
    color: var(--primary-orange);
    font-size: 1.3rem;
}

.contract-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
}

.contract-address {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    word-break: break-all;
}

.copy-btn {
    background: var(--primary-orange);
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 1.2rem;
}

.copy-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--glow-orange);
}

/* Distribution Chart */
.distribution-chart {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chart-item {
    width: 100%;
}

.chart-bar {
    position: relative;
    height: 50px;
    background: var(--color);
    border-radius: 10px;
    width: var(--percentage);
    display: flex;
    align-items: center;
    padding-left: 20px;
    box-shadow: var(--shadow-small);
    animation: expand 1s ease-out;
}

@keyframes expand {
    from { width: 0; }
    to { width: var(--percentage); }
}

.chart-label {
    font-weight: 700;
    color: var(--bg-darker);
    font-size: 1.1rem;
}

/* How to Buy Section */
.howto-section {
    background: var(--bg-dark);
}

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

.step-card {
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    color: var(--bg-darker);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.step-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.step-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

.exchange-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-exchange {
    background: var(--dark-teal);
    color: var(--text-primary);
    border: 2px solid var(--primary-orange);
}

.btn-exchange:hover {
    background: var(--primary-orange);
    color: var(--bg-darker);
}

/* Community Section */
.community-section {
    background: var(--bg-dark);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.social-card {
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    transition: var(--transition-bounce);
}

.social-icon.twitter {
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
}

.social-icon.telegram {
    background: linear-gradient(135deg, #0088cc, #006699);
}

.social-icon.discord {
    background: linear-gradient(135deg, #5865F2, #4752C4);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-card:hover .social-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: var(--glow-orange);
}

.social-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.social-text {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.social-cta {
    color: var(--primary-orange);
    font-weight: 700;
}

/* Meme Gallery */
.meme-gallery {
    margin-top: 60px;
}

.gallery-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-orange);
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-teal);
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 1.2rem;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 140, 0, 0.9);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.share-btn {
    background: var(--bg-darker);
    color: var(--primary-orange);
    padding: 12px 24px;
    border: 2px solid var(--primary-orange);
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-bounce);
}

.share-btn:hover {
    background: var(--primary-orange);
    color: var(--bg-darker);
    transform: scale(1.1);
}

.download-btn {
    background: var(--bg-darker);
    color: var(--primary-orange);
    padding: 12px 24px;
    border: 2px solid var(--primary-orange);
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-bounce);
}

.download-btn:hover {
    background: var(--primary-orange);
    color: var(--bg-darker);
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 60px 20px 20px;
    border-top: 2px solid var(--primary-orange);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-orange);
}

.footer-logo h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.footer-logo p {
    color: var(--text-secondary);
    font-style: italic;
}

.footer-links,
.footer-community {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4,
.footer-community h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.footer-links a,
.footer-community a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover,
.footer-community a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-disclaimer {
    background: rgba(255, 140, 0, 0.1);
    border: 2px solid var(--primary-orange);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.disclaimer-text {
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--dark-teal);
    color: var(--text-secondary);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: var(--text-secondary);
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition-bounce);
}

.footer-social a:hover {
    color: var(--primary-orange);
    transform: translateY(-3px) scale(1.2);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: var(--bg-darker);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: var(--shadow-medium);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-orange), var(--shadow-large);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
    }

    .pumpkin-mascot {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background: var(--bg-darker);
        flex-direction: column;
        padding: 30px;
        border-left: 2px solid var(--primary-orange);
        transition: right 0.3s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-controls {
        gap: 10px;
    }

    .language-switcher {
        padding: 3px;
    }

    .lang-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .hero-title-main {
        font-size: 2.5rem;
    }

    .hero-title-sub {
        font-size: 1.8rem;
    }

    .hero-tagline {
        font-size: 1.3rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .ticker-banner {
        font-size: 0.9rem;
    }

    .hero-title-main {
        font-size: 2rem;
    }

    .hero-title-sub {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .pumpkin-mascot {
        max-width: 300px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
        font-size: 1.2rem;
    }
}

/* Animation Utilities */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.8s ease forwards;
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}
