* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    position: relative;
    margin: 0;
    padding: 0;
}

/* Navigation Dots */
.nav-dots {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.nav-dot.active {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.3);
}

/* Scroll Container */
.scroll-container {
    height: 100vh;
    width: 100vw;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    position: relative;
    margin: 0;
    padding: 0;
}

/* Hide scrollbar but keep functionality */
.scroll-container::-webkit-scrollbar {
    display: none;
}

.scroll-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Sections */
.section {
    width: 100%;
    height: 100vh;
    position: relative;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Images */
.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s ease;
    will-change: transform, opacity;
    pointer-events: none; /* Background images should not be clickable */
}

/* Background Layers for Landing Page */
.background-layer-1 {
    z-index: 1;
    pointer-events: none; /* Background should not be clickable */
}

.background-layer-2 {
    z-index: 2;
    pointer-events: none; /* Front layer should not be clickable */
}


/* Smooth left-to-right movement animation for chair */
@keyframes smoothMove {
    0%, 100% {
        transform: translateX(0) scale(1);
    }
    50% {
        transform: translateX(15px) scale(1);
    }
}

/* Chair Wrapper */
.chair-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; /* Make wrapper non-clickable */
}

/* Chair Container - wraps image and hint */
.chair-container {
    position: relative;
    display: inline-block;
    pointer-events: auto;
    max-width: 100%;
    max-height: 100%;
    z-index: 3;
}

/* Clickable Chair - Only the actual image pixels are clickable */
.chair-image {
    position: relative;
    width: auto;
    height: auto;
    max-width: 100vw;
    max-height: 100vh;
    object-fit: contain;
    object-position: center;
    animation: smoothMove 6s ease-in-out infinite;
    transition: transform 0.3s ease, filter 0.3s ease;
    display: block;
    pointer-events: auto; /* Make image clickable */
}

.clickable-chair {
    cursor: pointer;
    /* pointer-events is handled by .chair-image */
}

.chair-image:hover {
    transform: scale(1.05);
    filter: brightness(1.15) drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

/* Chair Message */
.chair-message {
    position: fixed;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
    z-index: 10000;
    pointer-events: none;
    text-align: center;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
    white-space: nowrap;
}

.chair-message.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1.05);
}

/* Section Close Button (for menu sections) */
.section-close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    font-size: 36px;
    font-weight: 300;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    line-height: 1;
    padding: 0;
    z-index: 1001;
    pointer-events: auto;
}

.section-close-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 1);
    transform: rotate(90deg) scale(1.1);
}

.click-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.click-menu.show .menu-item {
    pointer-events: auto;
}

.menu-item {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    pointer-events: auto !important;
    white-space: nowrap;
    text-align: center;
    animation: pulse 2s ease-in-out infinite;
    user-select: none;
    position: relative;
    z-index: 1001;
}

.menu-item:hover {
    transform: scale(1.1);
    text-shadow: 
        2px 2px 6px rgba(0, 0, 0, 0.7),
        0 0 15px rgba(0, 0, 0, 0.5);
}

.menu-left {
    text-align: left;
    flex: 1;
}

.menu-middle {
    text-align: center;
    flex: 1;
}

.menu-right {
    text-align: right;
    flex: 1;
}

.chair-container:hover .click-menu,
.chair-image:hover ~ .click-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%);
    pointer-events: all;
}

.click-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all;
}

/* Desktop Menu Toggle Button */
/* Buy Now Button */
.buy-now-button,
.menu-toggle-desktop {
    position: fixed !important;
    background: rgba(0, 0, 0, 0.6) !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    color: #ffffff !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 18px;
    font-weight: 900;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer !important;
    z-index: 99999 !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(10px);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 200px;
    height: 50px;
    text-align: center;
    pointer-events: auto !important;
    box-sizing: border-box;
}

.buy-now-button {
    bottom: 100px !important;
    left: 40px !important;
}

.buy-now-button:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

.menu-toggle-desktop {
    bottom: 40px !important;
    left: 40px !important;
}

.menu-toggle-desktop:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

/* Global Menu */
.global-menu {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    flex-wrap: wrap;
    max-width: 95%;
    padding: 0 20px;
}

.global-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.global-menu.show .global-menu-item {
    pointer-events: auto !important;
}

.global-menu-item {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    padding: 8px 15px;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(0, 0, 0, 0.5);
    pointer-events: auto !important;
    position: relative;
    z-index: 1001;
    user-select: none;
    background: none;
    backdrop-filter: none;
    white-space: nowrap;
}

.global-menu-item:hover {
    text-shadow: 
        2px 2px 6px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(0, 0, 0, 0.7);
    transform: scale(1.05);
}

/* Mobile Burger Menu */
.burger-menu {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    cursor: pointer;
    z-index: 1002;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.burger-menu span {
    width: 24px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 1);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.mobile-menu-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.mobile-menu-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    text-align: center;
    pointer-events: auto;
    z-index: 1002;
}

.mobile-menu-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 48px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    line-height: 50px;
    transition: transform 0.3s ease;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
}

.mobile-menu-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.mobile-menu-item {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    cursor: pointer;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    pointer-events: auto !important;
    position: relative;
    z-index: 1003;
    user-select: none;
}

.mobile-menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
}

.mobile-social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.mobile-social-btn {
    display: block;
    transition: transform 0.3s ease;
}

.mobile-social-btn:hover {
    transform: scale(1.15);
}

.mobile-social-btn img {
    width: 50px;
    height: auto;
    display: block;
}

/* Mobile Buy Now Button */
.mobile-buy-now-button {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 300px;
    margin: 0 auto 30px auto;
    text-align: center;
    pointer-events: auto;
    z-index: 1003;
    position: relative;
}

.mobile-buy-now-button:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

/* Pulse animation for menu items */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Parallax effect on scroll */
.section.active .background-image {
    transform: scale(1);
    opacity: 1;
}

.section:not(.active) .background-image {
    transform: scale(1.05);
    opacity: 0.8;
}

/* Parallax effect for layered backgrounds - layer 2 can move slightly different */
.section.active .background-layer-2 {
    transform: scale(1);
    opacity: 1;
}

.section:not(.active) .background-layer-2 {
    transform: scale(1.03);
    opacity: 0.8;
}

.section.active .chair-image {
    opacity: 1;
}

.section:not(.active) .chair-image {
    opacity: 0.8;
    animation: none; /* Stop animation when section is not active */
}

.section:not(.active) .chair-image:hover {
    transform: scale(1);
    filter: none;
}

/* Content Container */
.content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    pointer-events: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    pointer-events: none;
}

/* Ensure carousel container is clickable even within content */
.content .tweet-carousel-container {
    pointer-events: auto !important;
}

/* Exchanges Content - Page 4 */
.content.exchanges-content {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 80px;
    pointer-events: auto;
    width: 100%;
    max-width: 1400px;
    padding: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.exchanges-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    flex: 1;
    max-width: 50%;
    justify-content: center;
}

.exchange-section-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-align: center;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clickable-exchange-title {
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.clickable-exchange-title:hover {
    transform: translateY(-5px) scale(1.1);
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(0, 0, 0, 0.7);
}

.exchange-images-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, max-height 0.4s ease, margin-top 0.4s ease, padding 0.4s ease;
    margin-top: 0;
    padding: 0;
}

.exchange-images-row.show {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    margin-top: 30px;
    overflow: visible;
    padding: 20px 0;
}

.exchange-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    padding: 20px;
    margin: -20px;
}

.exchange-image-wrapper:hover {
    transform: translateY(-10px) scale(1.05);
}

.content.exchanges-content .exchange-image {
    width: 220px;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.content.exchanges-content .exchange-image:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.5));
}

/* Ensure section is positioning context for absolute children */
#charles.section {
    position: relative;
}

/* About Content Section - Override for left alignment */
#charles .content.about-content {
    position: absolute !important;
    left: 80px !important;
    top: 0 !important;
    bottom: 0 !important;
    margin: auto 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    padding: 0 !important;
    width: auto !important;
    max-width: 800px;
    height: auto !important;
    z-index: 20;
}

.about-content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    max-width: 800px;
    pointer-events: auto;
    width: 100%;
    margin: 0;
    position: relative;
}

.about-header {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 
        1px 1px 3px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
}

.watch-story-button {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 15px 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}

.watch-story-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* YouTube Popup Overlay */
.youtube-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.youtube-popup-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.youtube-popup-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.youtube-popup-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100001;
    line-height: 1;
    padding: 0;
    backdrop-filter: blur(10px);
}

.youtube-popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.youtube-popup-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.youtube-popup-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Smooth fade transitions between sections */
.section {
    opacity: 1;
    transition: opacity 0.6s ease;
}

/* Enhanced smooth scrolling */
@supports (scroll-snap-type: y mandatory) {
    .scroll-container {
        scroll-snap-type: y mandatory;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-dots {
        right: 15px;
        gap: 10px;
    }
    
    .nav-dot {
        width: 10px;
        height: 10px;
    }
    
    .content {
        padding: 20px;
    }
}

/* Loading animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.section {
    animation: fadeIn 0.8s ease-in;
}

/* Smooth transitions for background changes */
.section .background-image {
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 1s ease;
}

/* Logo Container */
.logo-container {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 100;
    animation: fadeIn 0.8s ease-in;
}

.logo {
    height: 60px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Social Media Buttons */
.social-buttons {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 100;
    display: flex;
    flex-direction: row;
    gap: 15px;
    animation: fadeIn 0.8s ease-in;
}

.social-btn {
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.social-btn img {
    width: 50px;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Arrow Down Button */
.arrow-down,
.arrow-up {
    position: absolute;
    bottom: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100;
    padding: 15px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    animation: bounce 2s infinite;
}

.arrow-down {
    right: 60px;
}

.arrow-up {
    right: 170px;
}

.arrow-down:hover {
    transform: translateY(5px);
    opacity: 0.8;
}

.arrow-up:hover {
    transform: translateY(-5px);
    opacity: 0.8;
}

.arrow-down img,
.arrow-up img {
    width: 100px;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.arrow-down:hover img,
.arrow-up:hover img {
    transform: scale(1.1);
}

/* Hide arrow on last section */
.section:last-child .arrow-down {
    display: none;
}

/* Bounce animation for arrow */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive adjustments for logo and arrow */
@media (max-width: 1024px) {
    .arrow-down img,
    .arrow-up img {
        width: 80px;
    }
    
    .social-btn img {
        width: 45px;
    }
}

@media (max-width: 768px) {
    .logo-container {
        top: 20px;
        left: 20px;
    }
    
    .logo {
        height: 40px;
    }
    
    .social-buttons {
        top: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .social-btn img {
        width: 40px;
    }
    
    /* Hide desktop buttons on mobile */
    .buy-now-button,
    .menu-toggle-desktop {
        display: none !important;
    }
    
    /* Show burger menu on mobile */
    .burger-menu {
        display: flex;
    }
    
    /* Hide social buttons on mobile (they're in burger menu) */
    .social-buttons {
        display: none;
    }
    
    .arrow-down,
    .arrow-up {
        bottom: 25px;
        padding: 10px;
    }
    
    .arrow-down {
        right: 30px;
    }
    
    .arrow-up {
        right: 140px;
    }
    
    .arrow-down img,
    .arrow-up img {
        width: 60px;
    }
}

/* Stats Container */
.stats-container {
    position: fixed;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 40px;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.stats-container.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.stats-container.hide {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(20px);
}

.stat-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-frame {
    width: 350px;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.stat-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    width: 75%;
}

.stat-label {
    font-family: 'Fredoka One', cursive;
    font-size: 22px;
    font-weight: 400;
    color: #4a4a4a;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.stat-value {
    font-family: 'Fredoka One', cursive;
    font-size: 28px;
    font-weight: 400;
    color: #777777;
    word-break: break-word;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Exchanges Container */
.exchanges-container {
    position: fixed;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 30px;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 90%;
}

.exchanges-container.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.exchanges-container.hide {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(20px);
}

.exchange-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exchange-image {
    width: 200px;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
    cursor: pointer;
}

.exchange-image:hover {
    transform: scale(1.1);
}

/* Socials Container */
.socials-container {
    position: fixed;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 30px;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.socials-container.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.socials-container.hide {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(20px);
}

.social-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link {
    display: block;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: scale(1.15);
}

.social-link img {
    width: 80px;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

@media (max-width: 1024px) {
    .stat-frame {
        width: 280px;
    }
    
    .stat-label {
        font-size: 20px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .stats-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .stat-frame {
        width: 220px;
    }
    
    .stat-label {
        font-size: 16px;
    }
    
    .stat-value {
        font-size: 20px;
    }
    
    .stats-container {
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .global-menu-item {
        font-size: 22px;
    }
    
    .global-menu {
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .menu-toggle-desktop {
        display: none;
    }
    
    .buy-now-button {
        display: none;
    }
    
    .global-menu {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .click-menu {
        display: none;
    }
    
    .social-buttons {
        display: none; /* Hide social buttons on mobile - they're in burger menu */
    }
    
    /* Page 2 - About NikePig: Center content and use background from left */
    #charles .background-image {
        background-position: left center !important;
        background-size: cover;
    }
    
    .content.about-content {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        justify-content: center;
        align-items: center;
        padding: 20px;
        width: 90%;
        max-width: 600px;
        text-align: center;
    }
    
    .about-content {
        align-items: center;
        text-align: center;
    }
    
    .about-header {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .about-text {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0;
    }
    
    .watch-story-button {
        font-size: 16px;
        padding: 12px 30px;
        margin: 0 auto;
    }
    
    .youtube-popup-container {
        width: 95%;
        max-width: 100%;
    }
    
    .youtube-popup-close {
        top: -35px;
        width: 35px;
        height: 35px;
        font-size: 28px;
    }
}

/* Tokenomics Container - Right Side */
.tokenomics-container {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 20;
    align-items: flex-end;
}

.tokenomics-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tokenomics-frame {
    width: 250px;
    height: auto;
    display: block;
}

.tokenomics-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}

.tokenomics-label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #4a4a4a;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tokenomics-value {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #2a2a2a;
}

/* Tweet Carousel - Left Side Mid */
.tweet-carousel-container {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 400px;
    max-width: 35vw;
    display: flex;
    flex-direction: column;
    gap: 20px;
    pointer-events: auto;
}

.tweet-main-display {
    position: relative;
    width: 100%;
    perspective: 1000px;
}

.tweet-main-display img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    transform: rotate(3deg);
    transform-origin: center center;
}

.tweet-main-display img:hover {
    transform: rotate(3deg) translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.3);
}

.tweet-thumbnails {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    max-width: none;
    width: auto;
    overflow-x: visible;
    pointer-events: auto;
    z-index: 25;
}

.tweet-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    opacity: 0.6;
    transform: rotate(-2deg);
    pointer-events: auto;
    position: relative;
    z-index: 25;
    flex-shrink: 0;
}

.tweet-thumbnail:hover {
    opacity: 1;
    transform: rotate(0deg) scale(1.1);
    border-color: rgba(255, 255, 255, 0.8);
    z-index: 10;
    position: relative;
}

.tweet-thumbnail.active {
    opacity: 1;
    border-color: rgba(255, 255, 255, 1);
    transform: rotate(2deg) scale(1.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
    position: relative;
}

.tweet-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.tweet-thumbnail:hover img {
    transform: scale(1.1);
}

/* Hide pagination */
.tweet-carousel-pagination {
    display: none;
}

/* Responsive adjustments for tokenomics and carousel */
@media (max-width: 1024px) {
    .tokenomics-container {
        right: 40px;
        gap: 25px;
    }
    
    .tokenomics-frame {
        width: 220px;
    }
    
    .tokenomics-label {
        font-size: 16px;
    }
    
    .tokenomics-value {
        font-size: 20px;
    }
    
    .tweet-carousel-container {
        left: 40px;
        width: 350px;
        max-width: 40vw;
    }
    
    .tweet-thumbnail {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .tokenomics-container {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        align-items: center;
        margin: 40px auto;
        width: 100%;
        max-width: 90%;
    }
    
    .tokenomics-frame {
        width: 200px;
    }
    
    /* Page 3 - Carousel: Only show thumbnails, bigger size */
    .tweet-carousel-container {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 100%;
        margin: 0;
    }
    
    .tweet-main-display {
        display: none !important; /* Hide main display on mobile */
    }
    
    .tweet-thumbnail {
        width: 120px;
        height: 120px;
    }
    
    .tweet-thumbnails {
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Page 4 - Exchanges: Tab layout */
    .content.exchanges-content {
        flex-direction: row;
        gap: 10px;
        padding: 20px;
        align-items: flex-start;
        justify-content: center;
    }
    
    .exchanges-section {
        max-width: 48%;
        width: 48%;
        flex: 1;
    }
    
    .exchange-section-title {
        font-size: 18px;
        padding: 12px 15px;
        margin-bottom: 15px;
        border-radius: 8px 8px 0 0;
        background: rgba(0, 0, 0, 0.4);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-bottom: none;
        cursor: pointer;
        transition: all 0.3s ease;
        min-height: auto;
        text-align: center;
    }
    
    .exchange-section-title:hover {
        background: rgba(0, 0, 0, 0.6);
        border-color: rgba(255, 255, 255, 0.6);
    }
    
    .exchange-images-row {
        gap: 15px;
        padding: 15px;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 0 0 8px 8px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-top: none;
    }
    
    .content.exchanges-content .exchange-image {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .social-buttons {
        top: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .social-btn img {
        width: 35px;
    }
    
    .arrow-down,
    .arrow-up {
        bottom: 20px;
        padding: 8px;
    }
    
    .arrow-down {
        right: 20px;
    }
    
    .arrow-up {
        right: 120px;
    }
    
    .arrow-down img,
    .arrow-up img {
        width: 50px;
    }
    
    .stats-container {
        bottom: 100px;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-frame {
        width: 250px;
    }
    
    .stat-label {
        font-size: 18px;
    }
    
    .stat-value {
        font-size: 22px;
    }
    
    .click-menu {
        bottom: 100px;
        gap: 30px;
        width: 95%;
        flex-direction: column;
    }
    
    .menu-item {
        font-size: 28px;
    }
    
    .menu-left,
    .menu-middle,
    .menu-right {
        text-align: center;
    }
    
    .exchange-image {
        width: 150px;
    }
    
    .social-link img {
        width: 60px;
    }
    
    .exchanges-container,
    .socials-container {
        gap: 20px;
    }
    
    .content.exchanges-content {
        gap: 50px;
        padding: 30px 20px;
        padding-bottom: 120px;
    }
    
    .exchanges-section {
        max-width: 50%;
    }
    
    .exchange-section-title {
        font-size: 24px;
    }
    
    .exchange-images-row {
        gap: 30px;
    }
    
    .content.exchanges-content .exchange-image {
        width: 180px;
    }
}

@media (max-width: 768px) {
    .content.exchanges-content {
        flex-direction: column;
        gap: 40px;
        padding: 20px;
        padding-bottom: 100px;
    }
    
    .exchanges-section {
        max-width: 100%;
    }
    
    .exchange-section-title {
        font-size: 20px;
    }
    
    .exchange-images-row {
        gap: 20px;
    }
    
    .content.exchanges-content .exchange-image {
        width: 140px;
    }
}

/* Portal Content - Page 5 */
.content.portal-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    width: 100%;
    position: relative;
}

.portal-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 72px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    transform: translateX(80px);
    pointer-events: auto;
    z-index: 20;
}

.portal-text:hover {
    transform: translateX(80px) scale(1.1);
    text-shadow: 
        4px 4px 8px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(0, 0, 0, 0.7);
}

.portal-menu {
    position: absolute;
    top: calc(50% + 80px); /* Position below Portal text */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    z-index: 21;
    white-space: nowrap;
}

.portal-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%);
}

.portal-menu-item {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 20px;
    pointer-events: auto;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(20px);
}

.portal-menu.show .portal-menu-item {
    opacity: 1;
    transform: translateY(0);
}

.portal-menu-item[data-link="nft"] {
    transition-delay: 0.1s;
}

.portal-menu-item[data-link="comic"] {
    transition-delay: 0.2s;
}

.portal-menu-item[data-link="gifs"] {
    transition-delay: 0.3s;
}

.portal-menu-item:hover {
    transform: translateY(-5px) scale(1.1);
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(0, 0, 0, 0.7);
}

/* Comic item with Coming Soon subtext */
.portal-menu-item.comic-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: default;
    text-align: center;
}

.portal-menu-item.comic-item:hover {
    transform: translateY(-5px) scale(1.1);
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(0, 0, 0, 0.7);
}

.coming-soon-text {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 5px;
    opacity: 0.8;
    text-transform: none;
    font-style: italic;
}

/* Responsive adjustments for portal */
@media (max-width: 1024px) {
    .portal-text {
        font-size: 56px;
        transform: translateX(50px);
    }
    
    .portal-menu {
        top: calc(50% + 70px);
        gap: 30px;
    }
    
    .portal-menu-item {
        font-size: 24px;
        padding: 8px 16px;
    }
}

@media (max-width: 768px) {
    .portal-text {
        font-size: 48px;
        transform: translateX(30px);
    }
    
    .portal-menu {
        top: calc(50% + 60px);
        gap: 20px;
        flex-wrap: wrap;
        max-width: 90%;
    }
    
    .portal-menu-item {
        font-size: 20px;
        padding: 6px 12px;
    }
}

/* Team Content - Page 6 */
.content.team-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.team-members {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.team-member-link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 30px;
    pointer-events: auto;
    white-space: nowrap;
}

.team-member-link:hover {
    transform: translateY(-5px) scale(1.1);
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(0, 0, 0, 0.7);
}

/* Responsive adjustments for team */
@media (max-width: 1024px) {
    .team-member-link {
        font-size: 28px;
        padding: 8px 24px;
    }
}

@media (max-width: 768px) {
    .team-member-link {
        font-size: 24px;
        padding: 6px 20px;
    }
    
    .team-members {
        gap: 20px;
    }
}

/* DEX Popup Overlay */
.dex-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 100001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.dex-popup-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.dex-popup-container {
    position: relative;
    background: #E8F7FF;
    border-radius: 16px;
    padding: 20px;
    max-width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.dex-popup-overlay.show .dex-popup-container {
    transform: scale(1);
}

.dex-popup-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100002;
    line-height: 1;
    padding: 0;
    backdrop-filter: blur(10px);
}

.dex-popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

#dexhunter-root {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

/* Responsive adjustments for DEX popup */
@media (max-width: 768px) {
    .dex-popup-container {
        padding: 15px;
        max-width: 98%;
        max-height: 95vh;
    }
    
    .dex-popup-close {
        top: -35px;
        width: 35px;
        height: 35px;
        font-size: 28px;
    }
}

