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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    background-color: #000;
    color: #f1b800;
    line-height: 1.6;
    overflow-x: hidden;
}

 

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

/* Font utility classes */
.outfit-light {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.outfit-regular {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.outfit-medium {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.outfit-semibold {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.outfit-bold {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.outfit-extrabold {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

.comic-relief-regular {

    font-weight: 400;
    font-style: normal;
}

.comic-relief-bold {

    font-weight: 700;
    font-style: normal;
}

.noto-sans-display-light {
    font-family: "Noto Sans Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.noto-sans-display-regular {
    font-family: "Noto Sans Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.noto-sans-display-medium {
    font-family: "Noto Sans Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.noto-sans-display-semibold {
    font-family: "Noto Sans Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.noto-sans-display-bold {
    font-family: "Noto Sans Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.noto-sans-display-extrabold {
    font-family: "Noto Sans Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.noto-sans-display-black {
    font-family: "Noto Sans Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
.hidden {
    display: none !important;
}

/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #000 0%, #111 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    animation: fadeIn 0.5s ease-in;
}

.splash-content {
    text-align: center;
    max-width: 600px;
    padding: 40px;
}

.splash-image-container {
    margin: 0;
}

.sleeping-monkey {
    max-width: 1575px;
    width: 100%;
    height: auto;
    border: none;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(247, 238, 224, 0.3));
}

.sleeping-monkey:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 40px rgba(247, 238, 224, 0.8)) brightness(1.2);
}



/* Main Page */
.main-page {
    min-height: 100vh;
    background: #000;
    z-index: 1;
    position: relative;
    top: 0;
    left: 0;
}

.main-page.hidden {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Ensure hero section is always first */
.hero {
    position: relative;
    scroll-margin-top: 0;
    margin-top: 0;
    padding-top: 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 12px 0;
    border-bottom: 1px solid #333;
    transform: translateZ(0); /* Force hardware acceleration */
    will-change: transform;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: -80px;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
}

.logo-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: #f1b800;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #f1b800;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #f1b800;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f7eee0;
    transition: width 0.3s ease;
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 3px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger-line {
    width: 22px;
    height: 2px;
    background: #f7eee0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 52px;
    right: 0;
    width: 280px;
    height: calc(100vh - 52px);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    padding: 0;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    border-left: 1px solid rgba(247, 238, 224, 0.1);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation Header */
.mobile-nav-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(247, 238, 224, 0.1);
}

.mobile-nav-close {
    background: none;
    border: none;
    color: #f7eee0;
    font-size: 2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-close:hover {
    background: rgba(247, 238, 224, 0.1);
    color: #fff;
}

.close-icon {
    font-size: 2rem;
    line-height: 1;
}

/* Mobile Navigation Links */
.mobile-nav-links {
    padding: 20px;
}

.mobile-nav-link {
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 20px 0;
    border-bottom: 1px solid rgba(247, 238, 224, 0.2);
    transition: color 0.3s ease;
    text-align: center;
}

.mobile-nav-link:hover {
    color: #f7eee0;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    background: #000;
    color: #f1b800;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 20px;
    color: #f1b800;
}

.hero-title-image {
    max-width: 900px;
    width: 100%;
    height: auto;
    margin-top: -100px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 0;
}

/* Sections */
.section {
    padding: 80px 0;
    border-bottom: 1px solid #222;
    background: #000;
    color: #f1b800;
}

.section-title {
    font-weight: 700;
    font-size: clamp(2rem, 3vw, 2.5rem);
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    color: #f1b800;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Section subtitle colors for alternating backgrounds */
.section:nth-child(odd) .section-subtitle {
    color: #ccc;
}

.section:nth-child(even) .section-subtitle {
    color: #333;
}

/* Override for How to Buy section to ensure visibility */
.how-to-buy .section-subtitle {
    color: #ccc !important;
}



/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
    max-width: 600px;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #f1b800;
}

.about-roles {
    font-weight: 600;
    color: #f1b800 !important;
    font-size: 1.3rem !important;
    margin-bottom: 20px !important;
}

.about-tagline {
    font-weight: 700;
    font-size: 1.5rem !important;
    color: #f1b800 !important;
    margin-bottom: 0 !important;
}

.legend-steps {
    display: flex;
    flex-direction: column;
    gap: 64px;
    margin: 64px 0 32px;
}

.legend-step {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.legend-line {
    font-size: 2rem;
    font-weight: 700;
    color: #f1b800;
    text-align: center;
    line-height: 1.4;
}

.legend-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.legend-img {
    width: min(450px, 52.5vw);
    border-radius: 12px;
    border: 1px solid #333;
    background: #111;
}

.legend-roles {
    margin-top: 48px;
    margin-bottom: 8px;
    text-align: center;
    font-weight: 800;
    color: #f1b800;
    font-size: 1.8rem;
}

.legend-tagline {
    text-align: center;
    font-weight: 800;
    font-size: 2rem;
    margin-top: 10px;
}

.legend-gallery {
    margin-top: 40px;
}

.legend-gallery-title {
    text-align: center;
    color: #f1b800;
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.legend-gallery-subtitle {
    text-align: center;
    color: #ccc;
    margin-bottom: 24px;
}

/* Masonry Gallery */
.masonry-gallery {
    column-count: 4;
    column-gap: 12px;
    line-height: 0;
}

.masonry-item {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 16px;
    break-inside: avoid;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    background: #111;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.masonry-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: #f7eee0;
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.masonry-download-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fab700;
    color: #000;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.masonry-item:hover .masonry-download-btn {
    opacity: 1;
    visibility: visible;
}

.masonry-download-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(250, 183, 0, 0.4);
}

/* Legend Gallery - Original Size */
.legend-gallery .masonry-gallery {
    column-count: 3;
    column-gap: 16px;
}

.legend-gallery .masonry-item {
    margin-bottom: 16px;
}

/* Assets Gallery - Smaller Images */
.assets-gallery .masonry-gallery {
    column-count: 5;
    column-gap: 10px;
}

.assets-gallery .masonry-item {
    margin-bottom: 12px;
}

.legend-outro {
    text-align: center;
    margin-top: 18px;
    color: #ccc;
}

@media (max-width: 768px) {
    .legend-line { font-size: 1.6rem; }
    .legend-img { width: min(360px, 92vw); }
    .legend-steps { gap: 40px; margin: 40px 0 24px; }
    .legend-step { gap: 20px; }
    
    .section-subtitle {
        font-size: 0.95rem;
        max-width: 95vw;
    }
    
    .masonry-gallery {
        column-count: 3;
        column-gap: 10px;
    }
    
    .masonry-item {
        margin-bottom: 12px;
    }
    
    /* Legend Gallery Tablet - Back to Original */
    .legend-gallery .masonry-gallery {
        column-count: 2;
        column-gap: 12px;
    }
    
    .legend-gallery .masonry-item {
        margin-bottom: 12px;
    }
    
    /* Assets Gallery Tablet */
    .assets-gallery .masonry-gallery {
        column-count: 4;
        column-gap: 8px;
    }
    
    .masonry-download-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .legend-line { font-size: 1.4rem; }
    .legend-img { width: min(320px, 92vw); }
    
    .section-subtitle {
        font-size: 0.85rem;
        max-width: 98vw;
    }
    
    .masonry-gallery {
        column-count: 2;
        column-gap: 8px;
    }
    
    .masonry-item {
        margin-bottom: 16px;
        max-width: 100%;
    }
    
    /* Legend Gallery Mobile - Back to Original */
    .legend-gallery .masonry-gallery {
        column-count: 1;
        column-gap: 0;
    }
    
    .legend-gallery .masonry-item {
        margin-bottom: 16px;
        max-width: 100%;
    }
    
    /* Assets Gallery Mobile */
    .assets-gallery .masonry-gallery {
        column-count: 3;
        column-gap: 6px;
    }
    
    .masonry-download-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}
.about-image {
    flex: 0 0 400px;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.about-img:hover {
    border-color: #f7eee0;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Utilities Section */
.utilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.utility-card {
    background: #111;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.utility-card:hover {
    transform: translateY(-5px);
}

/* Utility card hover for alternating backgrounds */
.section:nth-child(odd) .utility-card:hover {
    background: #222;
    border-color: #f7eee0;
}

.section:nth-child(even) .utility-card:hover {
    background: rgba(0,0,0,0.2);
    border-color: #000;
}

.utility-icon {
    margin-bottom: 20px;
}

.utility-img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    object-fit: cover;
}

.utility-title {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.utility-title {
    color: #f1b800;
}

.utility-description {
    line-height: 1.6;
}

.utility-description {
    color: #f1b800;
}

/* How to Buy Section - Card Swipe */
.card-swipe-section {
    width: 100%;
    padding: 20px 0;
}

.card-swipe-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 24px;
    padding: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Card swipe container styling */
.card-swipe-container {
    border: 1px solid rgba(247, 238, 224, 0.1);
    background: #111;
}

.card-swipe-header {
    position: relative;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(247, 238, 224, 0.1);
    background: rgba(17, 17, 17, 0.8);
}

.card-swipe-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(17, 17, 17, 0.9);
    border: 1px solid rgba(247, 238, 224, 0.2);
    border-radius: 14px;
    padding: 8px 12px;
    font-size: 14px;
    color: #f1b800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sparkles-icon {
    color: #f1b800;
    filter: drop-shadow(0 0 4px rgba(247, 238, 224, 0.5));
}

.card-swipe-title {
    padding-top: 60px;
    text-align: center;
}

.card-swipe-title h3 {

    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 8px;
    opacity: 0.85;
    letter-spacing: -0.02em;
}

/* Card swipe title colors */
.card-swipe-title h3 {
    color: #fff;
}

.card-swipe-title p {
    font-size: 1rem;
    margin: 0;
    color: #ccc;
}

.card-swipe-wrapper {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

/* Card Swipe Component - Based on Skiper UI */
.card-swipe-container {
    width: 100%;
    max-width: none; /* Remove max-width restriction */
    margin: 0;
    padding: 0;
}

.card-swipe-header {
    position: relative;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(247, 238, 224, 0.1);
    background: rgba(17, 17, 17, 0.8);
}

.card-swipe-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(17, 17, 17, 0.9);
    border: 1px solid rgba(247, 238, 224, 0.2);
    border-radius: 14px;
    padding: 8px 12px;
    font-size: 14px;
    color: #f1b800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sparkles-icon {
    color: #f1b800;
    filter: drop-shadow(0 0 4px rgba(247, 238, 224, 0.5));
}

.card-swipe-title {
    padding-top: 60px;
    text-align: center;
}

.card-swipe-title h3 {

    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 8px;
    opacity: 0.85;
    letter-spacing: -0.02em;
    color: #fff;
}

.card-swipe-title p {
    font-size: 1rem;
    margin: 0;
    color: #ccc;
}

.card-swipe-content {
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px; /* Ensure sufficient height */
}

/* Swiper Styles */
.card-swiper {
    width: 75%; /* Made wider */
    max-width: 600px; /* Increased maximum width */
    padding-bottom: 50px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-swiper {
        width: 95%; /* Even wider on mobile */
        max-width: none;
    }
}

@media (min-width: 1200px) {
    .card-swiper {
        width: 65%; /* Wider on very large screens */
        max-width: 650px;
    }
}

/* How to Buy section full-width styling */
.how-to-buy {
    width: 100vw; /* Full viewport width */
    margin-left: calc(-50vw + 50%); /* Center while extending full width */
    padding: 80px 0;
}

.how-to-buy .container {
    max-width: none; /* Remove container width restrictions */
    width: 100%;
    padding: 0 20px;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .header .container {
        padding: 8px 20px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-img {
        width: 50px;
        height: 50px;
    }
    
    /* Fix mobile nav positioning */
    .mobile-nav {
        top: 52px; /* Adjusted for smaller mobile header height */
        height: calc(100vh - 52px);
        width: 250px;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-title-image {
        max-width: 320px;
        margin-top: -70px;
    }
    /* Section Titles Mobile */
    .section-title {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .tokenomics {
        padding-bottom: 0 !important;
    }
    
    .socials {
        padding-top: 0 !important;
    }
    
    /* Cards Mobile */
    .card-swiper {
        width: 85%;
        max-width: 400px;
    }
    
    .card-image-container {
        height: 400px;
    }
    
    .card-content {
        height: 400px;
    }
    
    /* Utility Cards Mobile */
    .utilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .utility-card {
        padding: 20px;
    }
    
    /* Tokenomics Mobile */
    .supply-number {
        font-size: clamp(2rem, 10vw, 4rem);
        letter-spacing: -0.5px;
    }
    
    .supply-label {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .ca-section {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .ca-address {
        font-size: 0.9rem;
        padding: 12px;
    }
    
    /* Socials Mobile */
    .socials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-card {
        padding: 20px;
    }
    
    /* Touch-friendly buttons */
    .mobile-nav-link {
        padding: 20px 0;
        font-size: 1.1rem;
        min-height: 48px; /* Touch target size */
    }
    
    .mobile-nav-close {
        min-width: 48px;
        min-height: 48px;
    }
    
    .copy-btn, .buy-nape-btn {
        padding: 15px 30px;
        font-size: 1rem;
        min-height: 48px; /* Touch target size */
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        padding: 6px 15px;
    }
    
    .mobile-nav {
        top: 48px; /* Adjusted for smaller mobile header */
        height: calc(100vh - 48px);
        width: 240px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .card-swiper {
        width: 90%;
        max-width: 350px;
    }
    
    .card-image-container {
        height: 280px; /* Further reduced for small screens */
    }
    
    .card-content {
        height: 280px; /* Further reduced for small screens */
    }
    
    .card-overlay {
        padding: 20px 15px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

.card-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    background: #111; /* Solid background instead of translucent */
    border: 2px solid #333; /* Solid border */
}

.card-image-container {
    position: relative;
    width: 100%;
    height: 550px; /* Reduced height for better mobile experience */
    border-radius: 18px;
    overflow: hidden;
    background: #111; /* Solid background */
}

/* Simple card swiper styling */
.card-swiper {
    opacity: 1;
    visibility: visible;
}

.card-content {
    position: relative;
    width: 100%;
    height: 550px; /* Reduced height for better mobile experience */
    border-radius: 18px;
    overflow: hidden;
    background: #111; /* Solid dark background */
    border: 2px solid #333; /* Solid border */
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: scale(0.7);
    transition: transform 0.2s ease;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000; /* Solid black background */
    border-top: 2px solid #333; /* Solid border at top */
    padding: 30px 20px;
    color: white;
    text-align: center;
}

.card-overlay .step-number {
    width: 40px;
    height: 40px;
    background: #fab700;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 auto 15px;
}

.card-overlay h4 {

    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.card-overlay p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.4;
    margin: 0;
}

/* Helmet Section - will inherit from alternating section styles */

.helmet-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.helmet-text {
    flex: 1;
    min-width: 300px;
}

.helmet-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.helmet-btn {
    background: linear-gradient(135deg, #f7eee0 0%, #e6d7c3 100%);
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.helmet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(247, 238, 224, 0.3);
}

.helmet-images {
    display: flex;
    justify-content: center;
}

.helmet-img {
    max-width: 150px;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.helmet-img:hover {
    transform: none;
}

/* Tokenomics Section */
.tokenomics {
    padding-bottom: 0 !important;
}

.tokenomics-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #ccc;
}

.tokenomics-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Supply Section - Big and Bold */
.supply-section {
    margin-bottom: 60px;
}

.supply-label {
    font-size: 1.2rem;
    color: #f7eee0;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.supply-number {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    color: #f7eee0;
    line-height: 0.9;
    margin: 0;
    text-shadow: 0 0 30px rgba(247, 238, 224, 0.3);
    letter-spacing: -1px;
}

/* Contract Address Section */
.ca-section {
    background: #111;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    max-width: 600px;
    margin: 0 auto;
}

.ca-section:hover {
    background: #1a1a1a;
    border-color: #f7eee0;
    transform: translateY(-2px);
}

.ca-label {
    font-size: 1rem;
    color: #f7eee0;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.ca-address {
    font-size: 1.1rem;
    color: #fff;
    word-break: break-all;
    margin-bottom: 20px;
    font-family: 'Courier New', monospace;
    background: #000;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #333;
}

.copy-btn {
    background: #fab700;
    color: #000;
    border: 1px solid #fab700;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #e6a500;
    border-color: #fab700;
}

.buy-nape-btn {
    display: block;
    margin: 0 auto;
    background: linear-gradient(135deg, #f7eee0 0%, #e6d7c3 100%);
    color: #000;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.buy-nape-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(247, 238, 224, 0.4);
}

/* Socials Section */
.socials {
    padding-top: 0 !important;
}

.socials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.social-card {
    position: relative;
    display: block;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #333;
    background: #111;
}

.social-card:hover {
    transform: translateY(-8px);
    border-color: #f7eee0;
    box-shadow: 0 20px 40px rgba(247, 238, 224, 0.2);
}

.social-card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.social-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.social-card:hover .social-bg-img {
    opacity: 0.5;
}

.social-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    z-index: 2;
}

.social-icon-large {
    font-size: 3rem;
    color: #f7eee0;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(247, 238, 224, 0.5));
}

.social-title {

    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-description {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.4;
    margin: 0;
}

.social-card:hover .social-icon-large {
    transform: scale(1.1);
    color: #fff;
    filter: drop-shadow(0 0 15px rgba(247, 238, 224, 0.8));
}

.social-card:hover .social-title {
    color: #f7eee0;
}

.social-card:hover .social-description {
    color: #fff;
}

.social-images {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.social-img {
    max-width: 250px;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.social-img:hover {
    transform: none;
}

.ape-in-btn {
    display: block;
    margin: 0 auto;
    background: linear-gradient(135deg, #ff6b00 0%, #ff5500 100%);
    color: #fff;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ape-in-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.4);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.footer-text {
    color: #666;
}

/* NAPE IN Button Section */
.nape-in-section {
    background: #000;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #333;
}

/* Header Links - Cartoony Button Style */
.header-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.header-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    background: transparent;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    vertical-align: middle;
}

.header-link:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
}

.header-link:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.header-separator {
    display: none; /* Hide separators for button style */
}

/* Mobile Header Links - Cartoony Button Style */
.mobile-header-links {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px;
}
.mobile-header-links::-webkit-scrollbar { display: none; }

.mobile-header-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    background: transparent;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    vertical-align: middle;
}

.mobile-header-link:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
}

.mobile-header-link:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.mobile-header-separator {
    display: none; /* Hide separators for button style */
}

/* Footer Social Links - Cartoony Button Style */
.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 15px 0;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.footer-socials::-webkit-scrollbar { display: none; }

.footer-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    background: transparent;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    vertical-align: middle;
}

.footer-link:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
}

.footer-link:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.footer-separator {
    display: none; /* Hide separators for button style */
}

/* Fun bounce animation for all buttons */
@keyframes buttonBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1.02); }
}

.header-link:hover,
.mobile-header-link:hover,
.footer-link:hover {
    animation: buttonBounce 0.6s ease-in-out infinite;
}

/* Add a subtle glow effect */
.icon-link { line-height: 0; flex: 0 0 64px; }
.icon-link img { width: 100%; height: 100%; display: block; object-fit: contain; }
/* Fine-tune vertical alignment for DexScreener icon */
.icon-link img[alt~="DexScreener"],
.icon-link img[src*="DS.png"] {
    margin-top: 12px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}



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

.section {
    animation: slideInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        padding: 8px 20px;
    }
    
    .nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .helmet-content {
        flex-direction: column;
        text-align: center;
    }
    
    .helmet-images {
        justify-content: center;
    }
    

    
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .about-image {
        flex: none;
        order: -1;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .about-text {
        max-width: none;
    }
    
    .about-text p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .about-roles {
        font-size: 1.2rem !important;
    }
    
    .about-tagline {
        font-size: 1.3rem !important;
    }
    
    .utilities-grid {
        grid-template-columns: 1fr;
    }
    
    .card-swipe-section {
        padding: 10px 0;
    }
    
    .card-swiper {
        width: 70%; /* Narrower on mobile too */
        padding-bottom: 30px;
    }
    
    .card-content {
        height: 320px; /* Further optimized height for mobile */
    }
    
    .card-image-container {
        height: 320px; /* Match card content height */
    }
    
    .card-swipe-title h3 {
        font-size: 2rem;
    }
    
    .card-overlay {
        padding: 20px 15px;
    }
    
    .card-overlay h4 {
        font-size: 1.1rem;
    }
    
    .card-overlay p {
        font-size: 0.8rem;
    }
    

    
    .socials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .social-card {
        height: 200px;
    }
    
    .social-card-overlay {
        padding: 20px;
    }
    
    .social-icon-large {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    
    .social-title {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .social-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .splash-content {
        padding: 20px;
    }
    
    .sleeping-monkey {
        max-width: 1050px;
    }
    

    

    
    .about-image {
        max-width: 280px;
    }
    
    .about-text p {
        font-size: 1rem;
        margin-bottom: 18px;
    }
    
    .about-roles {
        font-size: 1.1rem !important;
    }
    
    .about-tagline {
        font-size: 1.2rem !important;
    }
    
    .social-images {
        gap: 15px;
    }
    
    .social-img,
    .helmet-img {
        max-width: 200px;
    }
}

/* ===== SCROLL ANIMATIONS ===== */

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate {
    opacity: 1;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.fade-in-scale {
    animation: fadeInScale 0.8s ease-out forwards;
}

.slide-in-bottom {
    animation: slideInFromBottom 0.8s ease-out forwards;
}

/* Staggered animations for gallery items */
.masonry-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.masonry-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Animation delays for staggered effect */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* Section animations */
.section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Special animations for specific elements */
.hero-title-image {
    opacity: 0;
    transform: scale(0.9);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-title-image.animate {
    opacity: 1;
    transform: scale(1);
}



/* Card animations */
.supply-section,
.ca-section,
.social-card {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.supply-section.animate,
.ca-section.animate,
.social-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Button animations */
.buy-nape-btn,
.ape-in-btn {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.buy-nape-btn.animate,
.ape-in-btn.animate {
    opacity: 1;
    transform: translateY(0);
}
