/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
    -webkit-scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #fce7f3 25%, #e0f2fe 75%, #ffffff 100%);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Global smooth animations */
*,
*::before,
*::after {
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Mobile touch optimizations */
@media (max-width: 768px) {
    /* Ensure proper section spacing */
    .hero-section {
        margin-bottom: 3rem;
    }
    
    .contract-section,
    .features-section,
    .community-section,
    .platform-section,
    .how-to-buy-section,
    .tokenomics-section,
    .ticker-gallery-section {
        margin-bottom: 3rem;
    }
    
    /* Add extra spacing to prevent overlap between community and platform sections */
    .community-section {
        margin-bottom: 4rem;
    }
    
    /* Prevent any overlapping with transforms */
    .feature-card:hover,
    .how-to-buy-card:hover,
    .tokenomics-card:hover,
    .platform-link:hover {
        transform: translateY(-2px) scale(1.01); /* Reduced transform to prevent overlap */
    }
    
    /* Larger touch targets for mobile */
    .copy-btn,
    .link-btn,
    .platform-link {
        min-height: 44px; /* iOS recommended touch target */
    }
    
    /* Improve text readability on mobile */
    .contract-warning {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

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

/* Professional Shadow Effects */
.shadow-whimsical {
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 3px 10px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.shadow-whimsical-lg {
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.shadow-whimsical-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.shadow-whimsical-hover:hover {
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 12px 25px rgba(0, 0, 0, 0.15),
        0 4px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Professional Cartoonish Shadows */
.cartoon-shadow {
    box-shadow: 
        0 6px 0 rgba(0, 0, 0, 0.2),
        0 8px 25px rgba(0, 0, 0, 0.15);
}

.cartoon-shadow-lg {
    box-shadow: 
        0 8px 0 rgba(0, 0, 0, 0.2),
        0 12px 30px rgba(0, 0, 0, 0.15),
        0 4px 10px rgba(0, 0, 0, 0.1);
}

.cartoon-shadow-hover {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cartoon-shadow-hover:hover {
    box-shadow: 
        0 4px 0 rgba(0, 0, 0, 0.2),
        0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(2px);
}

/* Smooth Professional Animations */
.smooth-bounce {
    animation: smoothBounce 3s ease-in-out infinite;
    will-change: transform;
}

@keyframes smoothBounce {
    0%, 100% { 
        transform: translateY(0px) scale(1);
    }
    50% { 
        transform: translateY(-8px) scale(1.02);
    }
}

.smooth-pulse {
    animation: smoothPulse 2.5s ease-in-out infinite;
    will-change: transform, box-shadow;
}

@keyframes smoothPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.smooth-float {
    animation: smoothFloat 4s ease-in-out infinite;
}

@keyframes smoothFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    25% { 
        transform: translateY(-5px) rotate(1deg);
    }
    75% { 
        transform: translateY(-3px) rotate(-1deg);
    }
}

/* Animations */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rainbow {
    0% { color: #ec4899; }
    25% { color: #0ea5e9; }
    50% { color: #ec4899; }
    75% { color: #000000; }
    100% { color: #ec4899; }
}

/* Header */
.header {
    position: relative;
    z-index: 10;
    padding: 3rem 0;
    text-align: center;
    animation: fadeInDown 1s ease-out;
}

.main-title {
    font-family: 'Fredoka One', cursive;
    font-size: 4.5rem;
    background: linear-gradient(45deg, #ec4899, #0ea5e9, #ec4899);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    text-shadow: 0 4px 8px rgba(236, 72, 153, 0.3);
    animation: rainbow 3s ease-in-out infinite;
}

.token-symbol {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.subtitle {
    font-size: 1.3rem;
    color: #374151;
    font-weight: 600;
    animation: fadeInDown 1.5s ease-out;
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 10;
    padding: 2rem 0;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.hero-cat {
    font-size: 6rem;
    margin-bottom: 3rem;
    color: #ec4899;
    text-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-cat .cat-image {
    width: 14rem;
    height: 14rem;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 1rem;
}

.hero-cat .cat-image:hover {
    transform: scale(1.03);
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2.8rem;
    color: #000000;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: 1.4rem;
    color: #1f2937;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 600;
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Contract Section */
.contract-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    padding: 2.5rem;
    margin-bottom: 4rem;
    border: 4px solid #fce7f3;
    animation: fadeInUp 1.2s ease-out;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 0 rgba(0, 0, 0, 0.1),
        0 15px 30px rgba(0, 0, 0, 0.15),
        0 6px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.contract-section:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 0 rgba(0, 0, 0, 0.1),
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: #000000;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contract-box {
    background: #000000;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    box-shadow: 
        0 6px 0 rgba(0, 0, 0, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 3px 10px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contract-address {
    color: #0ea5e9;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: bold;
    word-break: break-all;
    flex: 1;
}

.copy-btn {
    background: #ec4899;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 4px 0 rgba(190, 24, 93, 0.8),
        0 6px 15px rgba(236, 72, 153, 0.3),
        0 2px 8px rgba(236, 72, 153, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.copy-btn:hover {
    background: #be185d;
    transform: translateY(-2px);
    box-shadow: 
        0 6px 0 rgba(190, 24, 93, 0.8),
        0 8px 20px rgba(236, 72, 153, 0.4),
        0 4px 12px rgba(236, 72, 153, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.copy-btn:active {
    transform: translateY(2px);
    box-shadow: 
        0 2px 0 rgba(190, 24, 93, 0.8),
        0 4px 10px rgba(236, 72, 153, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.contract-warning {
    text-align: center;
    color: #6b7280;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Audit Section */
.audit-section {
    margin-top: 2rem;
    text-align: center;
}

.audit-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    color: #1f2937;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.audit-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #10b981, #34d399);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 6px 0 rgba(5, 150, 105, 0.8),
        0 8px 20px rgba(16, 185, 129, 0.3),
        0 3px 10px rgba(16, 185, 129, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.audit-link:hover {
    background: linear-gradient(45deg, #059669, #10b981);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 8px 0 rgba(5, 150, 105, 0.8),
        0 12px 30px rgba(16, 185, 129, 0.4),
        0 5px 15px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.audit-link:active {
    transform: translateY(2px);
    box-shadow: 
        0 2px 0 rgba(5, 150, 105, 0.8),
        0 4px 10px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Features Section */
.features-section {
    margin-bottom: 4rem;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    padding: 2.5rem;
    text-align: center;
    border: 4px solid;
    animation: fadeInUp 1.4s ease-out;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 6px 0 rgba(0, 0, 0, 0.08),
        0 12px 25px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feature-card.diamond {
    border-color: #e0f2fe;
}

.feature-card.rocket {
    border-color: #fce7f3;
}

.feature-card.crown {
    border-color: #e0f2fe;
}

.feature-card:hover {
    transform: translateY(-3px) rotate(1deg);
    box-shadow: 
        0 8px 0 rgba(0, 0, 0, 0.1),
        0 16px 32px rgba(0, 0, 0, 0.18),
        0 6px 16px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #ec4899;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: smoothPulse 2.5s ease-in-out infinite;
}

.feature-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-description {
    color: #374151;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Community Section */
.community-section {
    background: linear-gradient(45deg, rgba(236, 72, 153, 0.15), rgba(14, 165, 233, 0.15));
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    padding: 2.5rem;
    margin-bottom: 4rem;
    border: 4px solid rgba(255, 255, 255, 0.5);
    animation: fadeInUp 1.6s ease-out;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.link-btn {
    display: block;
    padding: 1.2rem 2rem;
    border-radius: 1.5rem;
    text-decoration: none;
    color: white;
    font-weight: 900;
    font-size: 1.2rem;
    text-align: center;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 6px 0 rgba(0, 0, 0, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.2),
        0 3px 10px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.link-btn.telegram {
    background: #0ea5e9;
    box-shadow: 
        0 6px 0 rgba(8, 145, 178, 0.8),
        0 8px 20px rgba(14, 165, 233, 0.3),
        0 3px 10px rgba(14, 165, 233, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.link-btn.twitter {
    background: #1da1f2;
    box-shadow: 
        0 6px 0 rgba(21, 132, 196, 0.8),
        0 8px 20px rgba(29, 161, 242, 0.3),
        0 3px 10px rgba(29, 161, 242, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.link-btn.pancake {
    background: #ff6b35;
    box-shadow: 
        0 6px 0 rgba(204, 68, 34, 0.8),
        0 8px 20px rgba(255, 107, 53, 0.3),
        0 3px 10px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.link-btn:hover {
    transform: translateY(-3px) rotate(1deg);
    box-shadow: 
        0 8px 0 rgba(0, 0, 0, 0.25),
        0 12px 25px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.link-btn:active {
    transform: translateY(2px) rotate(0deg);
    transition: all 0.1s ease;
    box-shadow: 
        0 3px 0 rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.link-btn.telegram:hover {
    background: #0284c7;
}

.link-btn.twitter:hover {
    background: #1a91da;
}

.link-btn.pancake:hover {
    background: #e55a2b;
}

/* Platform Links Section */
.platform-section {
    background: linear-gradient(45deg, rgba(14, 165, 233, 0.1), rgba(236, 72, 153, 0.1));
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    padding: 2.5rem;
    margin-bottom: 4rem;
    border: 4px solid rgba(255, 255, 255, 0.5);
    animation: fadeInUp 1.7s ease-out;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.platform-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.platform-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    border-radius: 1.5rem;
    text-decoration: none;
    color: #1f2937;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 3px solid #f8fafc;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 4px 0 rgba(0, 0, 0, 0.05),
        0 6px 15px rgba(0, 0, 0, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.platform-link:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: #0ea5e9;
    box-shadow: 
        0 6px 0 rgba(0, 0, 0, 0.08),
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 3px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.platform-logo {
    width: 48px;
    height: 48px;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.platform-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
}

.platform-name {
    font-family: 'Fredoka One', cursive;
    font-size: 1.1rem;
    color: #000000;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.platform-link.coingecko:hover {
    border-color: #8dc351;
}

.platform-link.dexscreener:hover {
    border-color: #00d4aa;
}

.platform-link.bscscan:hover {
    border-color: #f0b90b;
}

.platform-link.dextools:hover {
    border-color: #05a3c2;
}

.platform-link.ave:hover {
    border-color: #6366f1;
}

.platform-link.geckoterminal:hover {
    border-color: #00d4aa;
}

/* How to Buy Section */
.how-to-buy-section {
    background: linear-gradient(45deg, rgba(14, 165, 233, 0.1), rgba(236, 72, 153, 0.1));
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    padding: 2.5rem;
    margin-bottom: 4rem;
    border: 4px solid rgba(255, 255, 255, 0.6);
    animation: fadeInUp 1.8s ease-out;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.how-to-buy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.how-to-buy-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    border: 3px solid #fce7f3;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 4px 0 rgba(0, 0, 0, 0.05),
        0 6px 15px rgba(0, 0, 0, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.how-to-buy-card:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: #ec4899;
    box-shadow: 
        0 6px 0 rgba(0, 0, 0, 0.08),
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 3px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.how-to-buy-icon {
    font-size: 3rem;
    color: #0ea5e9;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: iconBounce 2.5s ease-in-out infinite;
}

.how-to-buy-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.how-to-buy-description {
    color: #374151;
    font-weight: 600;
    line-height: 1.5;
    font-size: 1rem;
}

.pancakeswap-link {
    text-align: center;
    margin-top: 2rem;
}

/* Tokenomics Section */
.tokenomics-section {
    background: linear-gradient(45deg, rgba(14, 165, 233, 0.1), rgba(236, 72, 153, 0.1));
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    padding: 2.5rem;
    margin-bottom: 4rem;
    border: 4px solid rgba(255, 255, 255, 0.6);
    animation: fadeInUp 2s ease-out;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.tokenomics-image-container {
    text-align: center;
    margin: 2rem 0 3rem 0;
}

.tokenomics-image {
    max-width: 40%;
    height: auto;
    max-height: 180px;
    border-radius: 1.5rem;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.15),
        0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tokenomics-image:hover {
    transform: scale(1.02);
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tokenomics-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    border: 3px solid #fce7f3;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 4px 0 rgba(0, 0, 0, 0.05),
        0 6px 15px rgba(0, 0, 0, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.tokenomics-card:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: #ec4899;
    box-shadow: 
        0 6px 0 rgba(0, 0, 0, 0.08),
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 3px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.tokenomics-icon {
    font-size: 3rem;
    color: #ec4899;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: iconBounce 2.5s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

.tokenomics-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.tokenomics-description {
    color: #374151;
    font-weight: 600;
    line-height: 1.5;
    font-size: 1rem;
}

/* Ticker Gallery Section */
.ticker-gallery-section {
    background: linear-gradient(45deg, rgba(236, 72, 153, 0.1), rgba(14, 165, 233, 0.1));
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    padding: 2.5rem;
    margin-bottom: 4rem;
    border: 4px solid rgba(255, 255, 255, 0.6);
    animation: fadeInUp 2.2s ease-out;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

.ticker-container {
    margin-top: 2rem;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.ticker-track {
    display: inline-flex;
    animation: scroll-left 45s linear infinite;
    gap: 2rem;
    will-change: transform;
}

.ticker-item {
    flex: 0 0 auto;
    width: 200px;
    height: 200px;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.15),
        0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.ticker-item:hover {
    transform: scale(1.05);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.2),
        0 6px 15px rgba(0, 0, 0, 0.15);
    animation-play-state: paused;
}

.ticker-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ticker-item:hover .ticker-image {
    transform: scale(1.1);
}

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

/* Pause animation on hover over the container */
.ticker-container:hover .ticker-track {
    animation-play-state: paused;
}

/* Team Section */
.team-section {
    background: linear-gradient(45deg, rgba(14, 165, 233, 0.1), rgba(236, 72, 153, 0.1));
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    padding: 2.5rem;
    margin-bottom: 4rem;
    border: 4px solid rgba(255, 255, 255, 0.6);
    animation: fadeInUp 2s ease-out;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    border: 3px solid rgba(255, 255, 255, 0.7);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 12px 0 rgba(0, 0, 0, 0.3),
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.team-member:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 16px 0 rgba(0, 0, 0, 0.3),
        0 20px 45px rgba(0, 0, 0, 0.25),
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.team-image {
    margin-bottom: 1.5rem;
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 8px 0 rgba(0, 0, 0, 0.2),
        0 10px 25px rgba(0, 0, 0, 0.15),
        0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover .member-photo {
    transform: scale(1.05);
    box-shadow: 
        0 12px 0 rgba(0, 0, 0, 0.25),
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 6px 15px rgba(0, 0, 0, 0.15);
}

.member-name {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.member-role {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.member-socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ec4899, #8b5cf6);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.4rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 6px 0 rgba(139, 92, 246, 0.4),
        0 8px 20px rgba(236, 72, 153, 0.3),
        0 3px 10px rgba(139, 92, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.social-link:hover {
    transform: translateY(-4px) scale(1.1);
    background: linear-gradient(45deg, #be185d, #7c3aed);
    box-shadow: 
        0 8px 0 rgba(139, 92, 246, 0.4),
        0 12px 30px rgba(236, 72, 153, 0.4),
        0 5px 15px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-top: 4px solid #fce7f3;
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ec4899;
    box-shadow: 
        0 4px 0 rgba(236, 72, 153, 0.3),
        0 6px 15px rgba(236, 72, 153, 0.2),
        0 2px 8px rgba(236, 72, 153, 0.1);
    animation: smooth-pulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.footer-logo-link:hover {
    transform: scale(1.1);
}

.footer-logo-link:hover .footer-logo {
    border-color: #be185d;
    box-shadow: 
        0 6px 0 rgba(190, 24, 93, 0.4),
        0 8px 20px rgba(236, 72, 153, 0.3),
        0 4px 12px rgba(236, 72, 153, 0.2);
}

.footer-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-main {
    color: #000000;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.footer-sub {
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-support {
    color: #4b5563;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.support-email {
    color: #ec4899;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.support-email:hover {
    color: #0ea5e9;
    text-decoration: underline;
}

.footer-disclaimer {
    color: #9ca3af;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .main-content {
        padding: 1rem 0;
        overflow-x: hidden; /* Prevent horizontal scroll */
    }
    
    .main-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-cat .cat-image {
        width: 12rem;
        height: 12rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .contract-box {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contract-address {
        font-size: 0.9rem;
        word-break: break-all;
        padding: 1rem;
    }
    
    .copy-btn {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin: 0 auto;
        max-width: 400px;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
    }
    
    .platform-links-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 350px;
    }
    
    .platform-link {
        padding: 1.2rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Add extra spacing between community and platform sections on tablet */
    .community-section {
        margin-bottom: 4.5rem;
    }
    
    .how-to-buy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .how-to-buy-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tokenomics-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .ticker-item {
        width: 150px;
        height: 150px;
        border-radius: 1rem;
    }
    
    .ticker-track {
        gap: 1rem;
        animation: scroll-left 35s linear infinite;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .main-content {
        padding: 0.5rem 0;
        overflow-x: hidden; /* Prevent horizontal scroll */
    }
    
    /* Ensure clear section separation */
    .header {
        margin-bottom: 2rem;
    }
    
    .main-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .token-symbol {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-logo {
        width: 28px;
        height: 28px;
    }
    
    .subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.4;
        padding: 0 0.5rem;
    }
    
    .hero-cat .cat-image {
        width: 8rem;
        height: 8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contract-section,
    .community-section,
    .platform-section,
    .how-to-buy-section,
    .tokenomics-section,
    .ticker-gallery-section {
        padding: 1rem;
        margin-bottom: 2.5rem;
    }
    
    /* Ensure sections don't overlap */
    .features-section {
        margin-bottom: 2.5rem;
    }
    
    /* Add extra spacing between community and platform sections */
    .community-section {
        margin-bottom: 3.5rem;
    }
    
    /* Reduce hover transforms on mobile to prevent overlap */
    .feature-card:hover,
    .how-to-buy-card:hover,
    .tokenomics-card:hover,
    .platform-link:hover {
        transform: translateY(-1px) scale(1.005); /* Minimal transform */
    }
    
    .contract-address {
        font-size: 0.8rem;
        padding: 0.8rem;
        line-height: 1.4;
    }
    
    .copy-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .feature-card {
        padding: 1.2rem;
        max-width: 100%;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    .links-grid {
        max-width: 250px;
        gap: 0.8rem;
    }
    
    .link-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .platform-links-grid {
        max-width: 280px;
        gap: 0.8rem;
    }
    
    .platform-link {
        padding: 1rem;
        max-width: 100%;
    }
    
    .platform-logo {
        width: 40px;
        height: 40px;
        margin-bottom: 0.6rem;
    }
    
    .platform-image {
        width: 28px;
        height: 28px;
    }
    
    .platform-name {
        font-size: 1rem;
    }
    
    .how-to-buy-card {
        padding: 1.2rem;
        max-width: 100%;
    }
    
    .how-to-buy-icon {
        font-size: 2.5rem;
    }
    
    .how-to-buy-title {
        font-size: 1.1rem;
    }
    
    .how-to-buy-description {
        font-size: 0.9rem;
    }
    
    .tokenomics-card {
        padding: 1.2rem;
        max-width: 100%;
    }
    
    .tokenomics-icon {
        font-size: 2.5rem;
    }
    
    .tokenomics-title {
        font-size: 1.1rem;
    }
    
    .tokenomics-description {
        font-size: 0.9rem;
    }
    
    .tokenomics-image {
        max-width: 80%;
        max-height: 120px;
    }
    
    .ticker-item {
        width: 100px;
        height: 100px;
        border-radius: 0.6rem;
    }
    
    .ticker-track {
        gap: 0.6rem;
        animation: scroll-left 25s linear infinite;
    }
    
    .ticker-container {
        margin-top: 0.8rem;
    }
    
    /* Team Section Mobile */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-member {
        text-align: center;
    }
    
    .team-image {
        margin-bottom: 1rem;
    }
    
    .member-photo {
        width: 120px;
        height: 120px;
    }
    
    .member-name {
        font-size: 1.3rem;
    }
    
    .member-role {
        font-size: 0.9rem;
    }
    
    .member-socials {
        gap: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .footer {
        padding: 1.5rem 0;
        margin-top: 3rem; /* Ensure clear separation from last section */
    }
    
    .footer-main {
        font-size: 1rem;
    }
    
    .footer-sub {
        font-size: 0.9rem;
    }
    
    .footer-disclaimer {
        font-size: 0.8rem;
    }
}
