/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --headerFont: 'Londrina Solid', 'Londrina Solid Fallback', sans-serif;
    --mencoMed: 'mencoMed', 'mencoMed Fallback', sans-serif;
    --mencoBold: 'mencoBold', 'mencoBold Fallback', sans-serif;
    --mencoBlack: 'mencoBlack', 'mencoBlack Fallback', sans-serif;
    --londrina: 'Londrina Solid', 'Londrina Solid Fallback', sans-serif;
}

body {
    font-family: var(--mencoBold), 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #000;
    overflow-x: hidden;
}

/* Navigation */
.header {
    transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.header.hidden {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

/* Utility Classes */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 calc(16px + max(0px, 100vw - 375px) / 11.0937);
}

@media screen and (min-width: 1440px) {
    .container {
        padding-left: 112px;
        padding-right: 112px;
    }
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.fixed {
    position: fixed;
}

.top-8 {
    top: 2rem;
}

.right-0 {
    right: 0;
}

.left-0 {
    left: 0;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.pt-6 {
    padding-top: 1.5rem;
}

.w-full {
    width: 100%;
}

.z-50 {
    z-index: 1000;
}

.header-links {
    z-index: 1100 !important;
    background: linear-gradient(135deg, #10b981, #059669);
    border: 1px solid #0c152d;
    border-radius: 10000px;
    padding: 4px;
    transition: opacity 0.3s cubic-bezier(0.39, 0.575, 0.565, 1), transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    position: relative;
    overflow: hidden;
}

.switch {
    display: flex;
    position: relative;
}

.relative {
    position: relative;
}

.header-links-link {
    padding: 8px 12px;
    color: #000;
    font-weight: 400;
    font-size: 14px;
    font-family: var(--headerFont);
    text-transform: uppercase !important;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-links-link:hover {
    color: #000;
}

.header-links-link.active {
    color: #000;
}

.toggle-bg {
    position: absolute;
    top: 4px;
    left: 0px;
    bottom: 4px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 9999px;
    transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    z-index: 1;
    width: 40px;
}

/* CA Button (Left side - same style as dropdown) */
.ca-button {
    color: #000;
    z-index: 1200 !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    left: 1.5rem;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.ca-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #10b981, #059669);
    border: 1px solid #0c152d;
    border-radius: 25px;
    transition: all 0.3s ease;
    z-index: 1;
}

.ca-text {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    position: relative;
    z-index: 2;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    font-family: var(--headerFont);
    text-transform: uppercase !important;
    transition: all 0.3s ease;
}

.ca-button:hover .ca-background {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.ca-button:hover .ca-text {
    transform: translateY(-1px);
}

.ca-button:active {
    transform: scale(0.98);
}

/* Dropdown Button */
.toon-dropdown {
    color: #000;
    z-index: 1200 !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    right: 1.5rem;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.dropdown-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #10b981, #059669);
    border: 1px solid #0c152d;
    border-radius: 25px;
    transition: all 0.3s ease;
    z-index: 1;
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    position: relative;
    z-index: 2;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    font-family: var(--headerFont);
    text-transform: uppercase !important;
    transition: all 0.3s ease;
}

.dropdown-header .arrow {
    transition: transform 0.3s ease;
}

.dropdown-header .arrow path {
    fill: #000;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #10b981, #059669);
    border: 1px solid #0c152d;
    border-radius: 12px;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    min-width: 180px;
    z-index: 1300 !important;
}

.dropdown-line {
    border-bottom: 1px solid #0c152d;
}

.dropdown-line:last-child {
    border-bottom: none;
}

.dropdown-line a {
    display: block;
    padding: 12px 16px;
    color: #000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    font-family: var(--headerFont);
    text-transform: uppercase !important;
    transition: all 0.2s ease;
}



.dropdown-line a span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Dropdown States */
.toon-dropdown:hover .dropdown-background {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.toon-dropdown.open .dropdown-header .arrow {
    transform: rotate(180deg);
}

.toon-dropdown.open .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.toon-dropdown:hover .dropdown-header {
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    background: transparent;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background: transparent;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

.hero-content {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%;
    text-align: center;
}

.h1 {
    font-size: calc(64px + max(0px, 100vw - 375px) / 26.625);
    line-height: 0.9;
    margin: 0;
    font-family: var(--headerFont);
    text-transform: uppercase;
    font-weight: 400;
}

@media screen and (min-width: 1440px) {
    .h1 {
        font-size: 104px;
    }
}

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

.dark {
    color: #0c152d;
}

.goblin-green {
    color: #10b981 !important;
}

/* Mindshare/Marketcap Section */
.mindshare-section {
    background: #000;
    color: white;
    padding: 0;
    text-align: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mindshare-container {
    max-width: 1440px;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    padding: 0 112px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Content area with higher z-index to stay above images */
.mindshare-container > *:not(.mindshare-image) {
    position: relative;
    z-index: 5;
}

/* Ensure all text elements and their children stay above images */
.mindshare-container .pill,
.mindshare-container .h6,
.mindshare-container .display,
.mindshare-container .title,
.mindshare-container .subtitle,
.mindshare-container .stats-row,
.mindshare-container .stat-item,
.mindshare-container .stat-label,
.mindshare-container .stat-value,
.mindshare-container .live-wrapper,
.mindshare-container .live-circle,
.mindshare-container .copy2,
.mindshare-container p,
.mindshare-container span,
.mindshare-container .loading-text,
.mindshare-container .value,
.mindshare-container .green {
    position: relative;
    z-index: 10 !important;
}

/* Additional safety net for all text content */
.mindshare-section * {
    z-index: 5;
}

.mindshare-section .mindshare-image {
    z-index: -1 !important;
}

.pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 14px;
    font-family: var(--headerFont);
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    font-weight: 400;
}

.h6.title {
    font-size: clamp(24px, 4vw, 32px);
    font-family: var(--headerFont);
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.display.green.value {
    font-size: clamp(48px, 8vw, 96px);
    font-family: var(--headerFont);
    font-weight: 400;
    color: #10b981;
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.h6.subtitle {
    font-size: clamp(14px, 2vw, 18px);
    font-family: var(--headerFont);
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.stats-row {
    display: flex;
    gap: 48px;
    margin: 32px 0;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 120px;
}

.stat-label {
    font-size: 14px;
    font-family: var(--headerFont);
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.stat-value {
    font-size: 20px;
    font-family: var(--headerFont);
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
}

.stat-value.positive {
    color: #10b981;
}

.stat-value.negative {
    color: #ef4444;
}

.live-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.live-circle {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-circle 2s infinite;
}

.copy2 {
    font-size: 14px;
    font-family: var(--headerFont);
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.mindshare-image {
    position: absolute;
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    opacity: 0.4;
    transform: translate(-50%, -50%);
    animation: float-goblin 6s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    pointer-events: auto;
    filter: brightness(1.1) contrast(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: -1 !important; /* Negative z-index to ensure images stay behind all content */
}

.mindshare-image:hover {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.2);
    filter: brightness(1.3) contrast(1.2);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    z-index: 10;
}

/* Individual image assignments */
.goblin-1 {
    background-image: url('images/1.avif');
    animation-duration: 5s;
}

.goblin-2 {
    background-image: url('images/2.avif');
    animation-name: float-goblin-alt;
    animation-duration: 7s;
}

.goblin-3 {
    background-image: url('images/3.avif');
    animation-duration: 6.5s;
}

.goblin-4 {
    background-image: url('images/4.avif');
    animation-name: float-goblin-alt;
    animation-duration: 5.5s;
}

.goblin-5 {
    background-image: url('images/5.avif');
    animation-duration: 7.5s;
}

.goblin-6 {
    background-image: url('images/6.avif');
    animation-name: float-goblin-alt;
    animation-duration: 6s;
}

.goblin-7 {
    background-image: url('images/7.avif');
    animation-duration: 8s;
}

.goblin-8 {
    background-image: url('images/8.avif');
    animation-name: float-goblin-alt;
    animation-duration: 6.8s;
}

.goblin-9 {
    background-image: url('images/9.avif');
    animation-duration: 5.2s;
}

.goblin-10 {
    background-image: url('images/10.avif');
    animation-name: float-goblin-alt;
    animation-duration: 7.2s;
}

.goblin-11 {
    background-image: url('images/11.avif');
    animation-duration: 6.3s;
}

.goblin-12 {
    background-image: url('images/12.avif');
    animation-name: float-goblin-alt;
    animation-duration: 5.8s;
}

.goblin-13 {
    background-image: url('images/13.avif');
    animation-duration: 7.8s;
}

.goblin-14 {
    background-image: url('images/14.avif');
    animation-name: float-goblin-alt;
    animation-duration: 6.5s;
}

.goblin-15 {
    background-image: url('images/15.avif');
    animation-duration: 8.3s;
}

.goblin-16 {
    background-image: url('images/16.avif');
    animation-name: float-goblin-alt;
    animation-duration: 7.7s;
}

.loading-text {
    opacity: 0.7;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

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

@keyframes float-goblin {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px) rotateZ(0deg) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(-50%, -50%) translateY(-15px) rotateZ(2deg) scale(1.05);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) translateY(-25px) rotateZ(-3deg) scale(1.1);
        opacity: 0.7;
    }
    75% {
        transform: translate(-50%, -50%) translateY(-10px) rotateZ(1deg) scale(1.05);
        opacity: 0.5;
    }
}

/* Alternating animation for variety */
@keyframes float-goblin-alt {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px) rotateZ(0deg) scale(1);
        opacity: 0.25;
    }
    33% {
        transform: translate(-50%, -50%) translateY(-30px) rotateZ(-4deg) scale(0.95);
        opacity: 0.6;
    }
    66% {
        transform: translate(-50%, -50%) translateY(-5px) rotateZ(2deg) scale(1.15);
        opacity: 0.8;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mindshare-container {
        padding: 0 24px;
    }
    
    .stats-row {
        gap: 24px;
        flex-direction: column;
    }
    
    .stat-item {
        min-width: auto;
    }
    
    .mindshare-image {
        width: 60px;
        height: 60px;
    }
    
    .mindshare-image:hover {
        transform: translate(-50%, -50%) scale(1.1);
    }
    
    /* Reposition images to avoid center content area on mobile */
    .goblin-1 { left: 5% !important; top: 15% !important; }
    .goblin-2 { left: 95% !important; top: 20% !important; }
    .goblin-3 { left: 5% !important; top: 85% !important; }
    .goblin-4 { left: 95% !important; top: 80% !important; }
    .goblin-5 { left: 10% !important; top: 10% !important; }
    .goblin-6 { left: 90% !important; top: 10% !important; }
    .goblin-7 { left: 5% !important; top: 50% !important; }
    .goblin-8 { left: 95% !important; top: 50% !important; }
    .goblin-9 { left: 10% !important; top: 90% !important; }
    .goblin-10 { left: 90% !important; top: 90% !important; }
    .goblin-11 { left: 88% !important; top: 8% !important; }
    .goblin-12 { left: 97% !important; top: 30% !important; }
    .goblin-13 { left: 3% !important; top: 70% !important; }
    .goblin-14 { left: 97% !important; top: 70% !important; }
    .goblin-15 { left: 8% !important; top: 5% !important; }
    .goblin-16 { left: 8% !important; top: 92% !important; }
}

@media (max-width: 480px) {
    .mindshare-container {
        padding: 0 16px;
    }
    
    .stats-row {
        gap: 16px;
    }
    
    .mindshare-image {
        width: 50px;
        height: 50px;
        opacity: 0.15;
    }
    
    /* Hide some images on very small screens to prevent overcrowding */
    .goblin-7, .goblin-8, .goblin-11, .goblin-12, 
    .goblin-13, .goblin-14, .goblin-15, .goblin-16 {
        display: none !important;
    }
    
    /* Keep remaining images at the very edges */
    .goblin-1 { left: 2% !important; top: 10% !important; }
    .goblin-2 { left: 98% !important; top: 15% !important; }
    .goblin-3 { left: 2% !important; top: 90% !important; }
    .goblin-4 { left: 98% !important; top: 85% !important; }
    .goblin-5 { left: 5% !important; top: 5% !important; }
    .goblin-6 { left: 95% !important; top: 5% !important; }
    .goblin-9 { left: 5% !important; top: 95% !important; }
    .goblin-10 { left: 95% !important; top: 95% !important; }
}

/* Content Sections */
.content-section {
    padding: 100px 0;
    background: #000;
}

.content-section:nth-child(even) {
    background: #111;
}

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

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.content-section p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Token Section Redesign */
.tokenInfo {
    flex-direction: column;
    gap: 24px;
    display: flex;
    background: #000;
    padding: 100px 0;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.bio {
    opacity: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bio-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
    justify-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 112px;
    width: 100%;
}

.bio-columns > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

.bio-columns > div:last-child {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.bio-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.h2 {
    font-size: clamp(36px, 6vw, 56px);
    font-family: var(--headerFont);
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 32px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.copy1 {
    font-size: 18px;
    line-height: 1.6;
    color: #ccc;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.blue {
    color: #3b82f6 !important;
}

/* Scrollbar hiding */
html:not(.dev), html:not(.dev) * {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

html:not(.dev) ::-webkit-scrollbar, html:not(.dev)::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
}

/* Stats Right Column */
.stats-right {
    display: flex;
    flex-direction: column;
    gap: 50px;
    background-color: #000;
    border-radius: 16px;
    padding: calc(24px + max(0px, 100vw - 375px) / 50);
    text-align: center;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 500px;
    margin-top: 48px;
}

.stats-line {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stats-title {
    font-size: clamp(40px, 10vw, 65px);
    font-family: var(--headerFont);
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin: 0;
    text-align: center;
}

.h6 {
    font-size: 24px;
    font-family: var(--headerFont);
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin: 0;
    text-align: center;
}

@media screen and (min-width: 1440px) {
    .stats-right {
        padding: 60px 80px;
        max-width: 600px;
        margin-top: 42px;
    }
}

@media (max-width: 768px) {
    .bio-columns {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 24px;
        justify-items: center;
        align-items: center;
    }
    
    .bio-columns > div:first-child {
        align-items: center;
        text-align: center;
    }
    
    .bio-columns > div:last-child {
        align-items: center;
    }
    
    .tokenInfo {
        padding: 60px 0;
    }
    
    .stats-right {
        gap: 40px;
        padding: 32px;
        max-width: 400px;
        margin-top: 0;
    }
    
    .stats-title {
        font-size: clamp(42px, 12vw, 64px);
    }
    
    .h6 {
        font-size: 22px;
    }
    

}

/* Scroll Effects */
.hero-section.hidden {
    opacity: 0;
    transform: translateY(-50px);
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        top: 1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .toon-dropdown {
        right: 1rem;
    }
    
    .header-links-link {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .toggle-bg {
        width: auto;
    }
    
    .toon-dropdown .dropdown-header {
        padding: 10px 18px;
        font-size: 12px;
    }
    
    .dropdown-content {
        min-width: 160px;
    }
    
    .marketcap-section {
        padding: 80px 0;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .section-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .header {
        top: 0.5rem;
        flex-direction: column;
        gap: 1rem;
        padding-top: 1rem;
    }
    
    .toon-dropdown {
        position: relative;
        right: auto;
    }
    
    .header-links {
        flex-wrap: wrap;
    }
    
    .header-links-link {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .toggle-bg {
        width: auto;
    }
    
    .toon-dropdown .dropdown-header {
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .dropdown-content {
        min-width: 140px;
    }
    
    .h1 {
        font-size: calc(32px + max(0px, 100vw - 375px) / 26.625);
        line-height: 0.9;
    }
}

/* Additional styling for modern look */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Smooth scrolling enhancements */
@media (prefers-reduced-motion: no-preference) {
    .nav-link {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .buy-button {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
} 

/* CRITICAL FIX: Force all goblin images behind text content - MUST BE AT END OF FILE */
.mindshare-section .mindshare-image.goblin-1,
.mindshare-section .mindshare-image.goblin-2,
.mindshare-section .mindshare-image.goblin-3,
.mindshare-section .mindshare-image.goblin-4,
.mindshare-section .mindshare-image.goblin-5,
.mindshare-section .mindshare-image.goblin-6,
.mindshare-section .mindshare-image.goblin-7,
.mindshare-section .mindshare-image.goblin-8,
.mindshare-section .mindshare-image.goblin-9,
.mindshare-section .mindshare-image.goblin-10,
.mindshare-section .mindshare-image.goblin-11,
.mindshare-section .mindshare-image.goblin-12,
.mindshare-section .mindshare-image.goblin-13,
.mindshare-section .mindshare-image.goblin-14,
.mindshare-section .mindshare-image.goblin-15,
.mindshare-section .mindshare-image.goblin-16 {
    z-index: -10 !important;
    position: absolute !important;
}



.mindshare-section .mindshare-image.goblin-1:hover,
.mindshare-section .mindshare-image.goblin-2:hover,
.mindshare-section .mindshare-image.goblin-3:hover,
.mindshare-section .mindshare-image.goblin-4:hover,
.mindshare-section .mindshare-image.goblin-5:hover,
.mindshare-section .mindshare-image.goblin-6:hover,
.mindshare-section .mindshare-image.goblin-7:hover,
.mindshare-section .mindshare-image.goblin-8:hover,
.mindshare-section .mindshare-image.goblin-9:hover,
.mindshare-section .mindshare-image.goblin-10:hover,
.mindshare-section .mindshare-image.goblin-11:hover,
.mindshare-section .mindshare-image.goblin-12:hover,
.mindshare-section .mindshare-image.goblin-13:hover,
.mindshare-section .mindshare-image.goblin-14:hover,
.mindshare-section .mindshare-image.goblin-15:hover,
.mindshare-section .mindshare-image.goblin-16:hover {
    z-index: -5 !important;
}

/* Force all text elements to top priority */
#marketcap .pill,
#marketcap .h6,
#marketcap .title,
#marketcap .subtitle,
#marketcap .display,
#marketcap .green,
#marketcap .value,
#marketcap .loading-text,
#marketcap .stats-row,
#marketcap .stat-item,
#marketcap .stat-label,
#marketcap .stat-value,
#marketcap .live-wrapper,
#marketcap .live-circle,
#marketcap .copy2,
#marketcap p,
#marketcap span,
#marketcap div:not(.mindshare-image) {
    z-index: 999 !important;
    position: relative !important;
} 

/* ==============================================
   NFT CAROUSEL SECTION STYLES 
   ============================================== */

/* Partners Section Layout */
.partners {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 80px 0;
    overflow: hidden;
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    margin: 40px 20px;
}

/* Gradient Overlays */
.gradient-left,
.gradient-right {
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.gradient-left {
    left: 0;
    background: linear-gradient(90deg, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0.8) 50%, rgba(10, 10, 10, 0) 100%);
}

.gradient-right {
    right: 0;
    background: linear-gradient(-90deg, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0.8) 50%, rgba(10, 10, 10, 0) 100%);
}

/* NFT Container */
.nft-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

/* Title Styling */
.partners .h2 {
    color: #10b981;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

/* Partners Content */
.partners-content {
    position: relative;
    margin-top: 20px;
}

/* NFT Relative Container */
.nft-relative {
    position: relative;
}

/* NFT Flexbox Utilities */
.nft-flex {
    display: flex;
}

.nft-justify-center {
    justify-content: center;
}

.nft-gap-4 {
    gap: 1rem;
}

/* Partner Marquee */
.partner-marquee {
    display: flex;
    gap: 10px;
    animation: scroll-marquee 50s linear infinite;
    width: max-content;
    will-change: transform;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-210px * 16)); /* Exactly 16 images worth of movement for perfect loop */
    }
}

/* Grid Spot */
.grid-spot {
    flex-shrink: 0;
}

/* Partner Container */
.partner-container {
    width: 200px;
    height: 250px;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

/* Collab Image */
.collabImage {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border: 2px solid rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.collabImage:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: #10b981;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
}

/* NFT Image Utilities */
.nft-w-full {
    width: 100%;
}

.nft-h-full {
    height: 100%;
}

.nft-absolute {
    position: absolute;
}

.nft-inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.nft-object-cover {
    object-fit: cover;
}

/* Appear Animation */
.appear {
    opacity: 1;
    animation: fadeInUp 0.6s ease-out;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .partners {
        margin: 20px 10px;
        padding: 60px 0;
    }
    
    .partners .h2 {
        margin-bottom: 30px;
    }
    
    .partner-container {
        width: 160px;
        height: 200px;
    }
    
    .gradient-left,
    .gradient-right {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .partners {
        margin: 15px 5px;
        padding: 40px 0;
    }
    
    .partners .h2 {
        margin-bottom: 25px;
    }
    
    .partner-container {
        width: 140px;
        height: 180px;
    }
    
    .collabImage-content {
        padding: 15px 12px 12px;
    }
    
    .collabImage-content .h6 {
        font-size: 1rem;
    }
}

/* Pause animation on hover */
.partner-marquee:hover {
    animation-play-state: paused;
} 

/* Community Section */
#community {
    background: #000000;
    padding: 80px 0;
    border-radius: 20px;
    margin: 40px 20px;
    position: relative;
    overflow: hidden;
}

#community::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 0;
    position: relative;
    z-index: 2;
}

.community-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 40px;
    font-weight: 400;
}

.community-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-family: var(--headerFont);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

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

.twitter-button {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: var(--headerFont);
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.3);
    cursor: pointer;
    transform: translateY(0);
}

.twitter-button::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.5s;
}

.twitter-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(29, 161, 242, 0.5);
    background: linear-gradient(135deg, #0d8bd9, #1da1f2);
    border-color: rgba(255, 255, 255, 0.3);
}

.twitter-button:hover::before {
    left: 100%;
}

.twitter-button:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

.twitter-button svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.twitter-button:hover svg {
    animation: bounce 0.6s ease;
}

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

.cta-text {
    margin-top: 20px;
    color: #888;
    font-size: 0.95rem;
    font-style: italic;
}

/* Community Responsive */
@media (max-width: 968px) {
    .community-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .community-stats {
        justify-content: center;
    }
    
    .stat-item {
        text-align: center;
    }
}

@media (max-width: 768px) {
    #community {
        margin: 20px 10px;
        padding: 60px 0;
    }
    
    .community-content {
        padding: 20px 15px 0;
        gap: 30px;
    }
    
    .community-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .community-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .twitter-button {
        padding: 16px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .community-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .community-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .twitter-button {
        padding: 14px 24px;
        gap: 10px;
    }
    
    .twitter-button svg {
        width: 20px;
        height: 20px;
    }
} 

/* Footer */
.footer {
    background: #000000;
    padding: 20px 20px;
}

.footer .footer-legal {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-copyright.copy3 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 400;
}

.footer-legal-links {
    display: flex;
    gap: 30px;
}

.footer-legal-link.copy3 {
    color: #fff;
    font-size: 0.9rem;
    cursor: default;
}

@media (max-width: 768px) {
    .footer .footer-legal {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-legal-links {
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer-legal-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-copyright.copy3 {
        font-size: 0.8rem;
    }
    
    .footer-legal-link.copy3 {
        font-size: 0.8rem;
    }
} 

/* Coming Soon State */
.coming-soon-text {
    background: linear-gradient(45deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% {
        filter: brightness(1);
        transform: scale(1);
    }
    100% {
        filter: brightness(1.2);
        transform: scale(1.02);
    }
} 

/* CA Button Responsive */
@media (max-width: 768px) {
    .ca-button {
        left: 1rem;
    }
    
    .ca-text {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .ca-button {
        left: 0.5rem;
    }
    
    .ca-text {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .toon-dropdown {
        right: 0.5rem;
    }
} 