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

body {
    font-family: 'Roboto', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(45deg, #00d4ff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.buy-now-btn {
    background: linear-gradient(45deg, #00d4ff, #0066ff);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.buy-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.mint-nft-btn {
    background: linear-gradient(45deg, #8a2be2, #9a4fe8) !important;
    margin-left: 10px;
}

.mint-nft-btn:hover {
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3) !important;
}

/* Contact Section Large Social Buttons */
.contact-social {
    margin-top: 0;
}

.contact-social h4 {
    color: #00d4ff;
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: left;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start;
}

.social-row {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(138, 43, 226, 0.1));
    border: 2px solid rgba(0, 212, 255, 0.3);
    color: #00d4ff;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    justify-content: flex-start;
    flex: 1;
    min-width: 0;
}

.social-link-large:hover {
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.2), rgba(138, 43, 226, 0.2));
    border-color: #00d4ff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.social-link-large i {
    font-size: 1.5rem;
    width: 25px;
    text-align: center;
}

.social-link-large span {
    font-size: 1rem;
    font-weight: 600;
}

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

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #00d4ff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #00d4ff, #0066ff);
    transition: width 0.3s ease;
}

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

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    min-width: 200px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    border-left-color: #00d4ff;
}

.official-shop {
    display: none; /* Hidden as it's now part of navigation */
}

.shop-text {
    display: none; /* No longer needed */
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('New Website Styling.png') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(0, 20, 40, 0.3), rgba(0, 40, 80, 0.2)),
        radial-gradient(circle at 30% 40%, rgba(0, 100, 200, 0.1) 200px, transparent 400px),
        radial-gradient(circle at 70% 60%, rgba(50, 150, 255, 0.05) 300px, transparent 500px);
    background-size: 100% 100%, 800px 800px, 600px 600px;
    animation: subtleFloat 12s ease-in-out infinite;
    z-index: 1;
}

/* tsParticles fire effect container */
#tsparticles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 150; /* Higher than carousel elements (100) and other content */
    pointer-events: none;
    overflow: hidden; /* Ensure particles stay within bounds */
}

@keyframes subtleFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px);
        opacity: 0.4;
    }
    33% { 
        transform: translateY(-10px) translateX(5px);
        opacity: 0.5;
    }
    66% { 
        transform: translateY(5px) translateX(-8px);
        opacity: 0.3;
    }
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px; /* Increased gap for better separation */
    align-items: center;
    max-width: 1200px;
    width: 100%;
    z-index: 2;
    position: relative;
    margin-left: -270px; /* Move entire content 100px to the left (was -50px) */
}

.hero-text {
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 60px; /* Increased padding for larger container (was 50px) */
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    min-width: 600px; /* Increased minimum width (was 500px) */
    width: 100%; /* Take full width of its grid column */
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
    /* Add the gradient effect */
    background: linear-gradient(45deg, #00d4ff, #0066ff, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glitch {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    background: linear-gradient(45deg, #00d4ff, #0066ff, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glitch 3s linear infinite;
}

.hero-title .glitch {
    font-family: 'Orbitron', monospace !important;
    font-weight: 900 !important;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    color: #00d4ff;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
}

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

.cta-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    position: relative;
}

.cta-btn i {
    font-size: 16px;
}

.btn-text-mobile {
    display: none;
}

.cta-btn.compact {
    padding: 12px 18px;
    font-size: 14px;
}

.cta-btn.primary {
    background: linear-gradient(45deg, #00d4ff, #0066ff);
    color: white;
}

.cta-btn.secondary {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.4);
}

    .mascot-section {
    position: relative;
    padding: 60px 120px; /* Increased horizontal padding to match carousel */
    height: 500px;
    overflow: visible; /* Allow side cards to show on desktop */
    width: 100%;
}

/* Custom Carousel Container */
.custom-carousel {
    position: relative;
    width: 100%;
    max-width: 1600px; /* Increased for better side visibility on desktop */
    height: 520px; /* Increased from 450px to accommodate larger cards */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible; /* Allow side cards to be visible on desktop */
    padding: 50px 120px; /* Increased horizontal padding for more space */
    /* Background removed for cleaner look */
    /* background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1); */
    /* Ensure it covers the full carousel area */
    min-width: 90%;
}

.carousel-container {
    width: 100%;
    height: 480px; /* Increased from 400px to accommodate larger cards */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-track {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
}

/* Carousel Slides - Enhanced for better visibility */
.carousel-slide {
    position: absolute;
    width: 350px; /* Increased from 280px */
    height: 420px; /* Increased from 350px */
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.4;
    transform: scale(0.7) translateX(0px);
    z-index: 1;
}

/* Active slide (center) */
.carousel-slide.active {
    opacity: 1;
    transform: scale(1) translateX(0px);
    z-index: 5;
}

/* Previous slide (left) - More visible */
.carousel-slide.prev {
    opacity: 0.8; /* Increased opacity for better visibility */
    transform: scale(0.85) translateX(-250px) rotateY(8deg); /* Adjusted for larger cards */
    z-index: 4;
}

/* Next slide (right) - More visible */
.carousel-slide.next {
    opacity: 0.8; /* Increased opacity for better visibility */
    transform: scale(0.85) translateX(250px) rotateY(-8deg); /* Adjusted for larger cards */
    z-index: 4;
}

/* Far slides - Still visible but smaller */
.carousel-slide.far-prev {
    opacity: 0.5; /* Increased for better visibility */
    transform: scale(0.7) translateX(-450px) rotateY(15deg); /* Adjusted for larger cards */
    z-index: 2;
}

.carousel-slide.far-next {
    opacity: 0.5; /* Increased for better visibility */
    transform: scale(0.7) translateX(450px) rotateY(-15deg); /* Adjusted for larger cards */
    z-index: 2;
}

/* Very far slides (completely hidden) */
.carousel-slide.hidden {
    opacity: 0;
    transform: scale(0.5) translateX(-800px);
    z-index: 0;
}

/* Individual Mascot Cards */
.mascot-card {
    position: relative;
    width: 350px; /* Increased from 280px */
    height: 420px; /* Increased from 350px */
    background: rgba(255,255,255,0.12);
    border-radius: 28px;
    box-shadow: 0 8px 40px rgba(0,212,255,0.15), 0 2px 20px rgba(0,212,255,0.08);
    border: 2px solid rgba(0,212,255,0.3);
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    cursor: pointer;
}

.mascot-card img {
    width: 95%;
    height: 97%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,212,255,0.8) 0%, transparent 100%);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    color: white;
}

.card-overlay h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.card-overlay p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.mascot-card:hover {
    box-shadow: 0 15px 60px rgba(0,212,255,0.25), 0 4px 30px rgba(0,212,255,0.12);
    border-color: rgba(0,212,255,0.6);
    transform: translateY(-10px);
}

.mascot-card:hover .card-overlay {
    transform: translateY(0);
}

.mascot-card:hover img {
    transform: scale(1.05);
}

/* Enhanced hover effects based on slide position */
.carousel-slide.active .mascot-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 70px rgba(0,212,255,0.3), 0 8px 40px rgba(0,212,255,0.2);
}

.carousel-slide.prev .mascot-card:hover,
.carousel-slide.next .mascot-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 12px 50px rgba(0,212,255,0.2), 0 4px 25px rgba(0,212,255,0.15);
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(0,212,255,0.4);
    border-radius: 50%;
    color: rgba(0,212,255,0.9);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    display: none; /* Hide the carousel arrows */
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
}

.carousel-btn-prev {
    left: 15px;
}

.carousel-btn-next {
    right: 15px;
}

/* Monster Carousel Navigation */
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(0,212,255,0.4);
    border-radius: 50%;
    color: rgba(0,212,255,0.9);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

.carousel-prev:hover, .carousel-next:hover {
    background: rgba(0,212,255,0.3);
    border-color: rgba(0,212,255,0.8);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(0,212,255,0.4);
}

.carousel-prev:active, .carousel-next:active {
    transform: translateY(-50%) scale(0.95);
}

/* Monster Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0,212,255,0.4);
    border: 2px solid rgba(0,212,255,0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators .indicator.active {
    background: rgba(0,212,255,0.9);
    border-color: rgba(0,212,255,1);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(0,212,255,0.5);
}

.carousel-btn:hover {
    background: rgba(0,212,255,0.3);
    border-color: rgba(0,212,255,0.8);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(0,212,255,0.4);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Carousel Pagination */
.carousel-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0,212,255,0.4);
    border: 2px solid rgba(0,212,255,0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background: rgba(0,212,255,0.9);
    border-color: rgba(0,212,255,1);
    transform: scale(1.2);
}

.pagination-dot:hover {
    background: rgba(0,212,255,0.7);
    transform: scale(1.1);
}

/* Responsive Carousel Design */
@media (max-width: 1200px) {
    .custom-carousel {
        max-width: 1000px;
        padding: 40px 60px;
    }
    
    .carousel-slide.prev {
        transform: scale(0.85) translateX(-300px) rotateY(15deg);
    }
    
    .carousel-slide.next {
        transform: scale(0.85) translateX(300px) rotateY(-15deg);
    }
    
    .carousel-slide.far-prev {
        transform: scale(0.7) translateX(-500px) rotateY(25deg);
    }
    
    .carousel-slide.far-next {
        transform: scale(0.7) translateX(500px) rotateY(-25deg);
    }
}

@media (max-width: 768px) {
    /* Mobile: Reset to more compact layout */
    .mascot-section {
        overflow: hidden; /* Hide overflow on mobile */
        padding: 60px 40px; /* Reduced padding for mobile */
    }
    
    .custom-carousel {
        max-width: 100%;
        height: 400px;
        padding: 30px 40px;
        overflow: hidden; /* Hide side cards on mobile */
    }
    
    .carousel-container {
        height: 350px;
    }
    
    .carousel-slide {
        width: 240px;
        height: 300px;
    }
    
    .mascot-card {
        width: 240px;
        height: 300px;
    }
    
    /* Mobile: Focus on center with minimal side visibility */
    .carousel-slide.prev {
        opacity: 0.4;
        transform: scale(0.6) translateX(-200px) rotateY(25deg);
        z-index: 2;
    }
    
    .carousel-slide.next {
        opacity: 0.4;
        transform: scale(0.6) translateX(200px) rotateY(-25deg);
        z-index: 2;
    }
    
    .carousel-slide.far-prev,
    .carousel-slide.far-next {
        opacity: 0;
        transform: scale(0.4) translateX(-400px);
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .carousel-btn-prev {
        left: 10px;
    }
    
    .carousel-btn-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .custom-carousel {
        height: 320px; /* Slightly smaller for very mobile */
        padding: 15px 20px; /* Less padding */
    }
    
    .carousel-container {
        height: 280px; /* Matching the reduced overall height */
    }
    
    .carousel-slide {
        width: 180px; /* Even smaller for very small screens */
        height: 220px;
    }
    
    .mascot-card {
        width: 180px; /* Matching slide width */
        height: 220px; /* More compact height */
        padding: 10px; /* Even less padding */
        border-radius: 18px; /* Slightly smaller radius */
    }
    
    /* Mobile: Single card focus */
    .carousel-slide.prev,
    .carousel-slide.next {
        opacity: 0.2;
        transform: scale(0.5) translateX(-150px);
    }
    
    .carousel-slide.next {
        transform: scale(0.5) translateX(150px);
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .carousel-pagination {
        bottom: 15px;
    }
    
    .pagination-dot {
        width: 10px;
        height: 10px;
    }
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: rgba(0,212,255,0.4) !important;
    border: 2px solid rgba(0,212,255,0.6) !important;
    width: 12px !important;
    height: 12px !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    background: rgba(0,212,255,0.9) !important;
    border-color: rgba(0,212,255,1) !important;
    transform: scale(1.3) !important;
    box-shadow: 0 0 20px rgba(0,212,255,0.6) !important;
}

/* Responsive design for Swiper carousel */
@media (max-width: 768px) {
    .hero-mascots {
        height: 400px;
        padding: 40px 20px; /* Reduced padding on mobile */
    }
    
    .mascot-swiper {
        height: 320px;
        padding: 30px 20px; /* Reduced mobile padding */
        max-width: 100%;
    }
    
    .swiper-slide {
        width: 210px !important; /* Matching the new card width plus margin */
    }
    
    .mascot-card {
        width: 200px; /* Smaller width for mobile to fit better */
        height: 240px; /* Reduced height for more compact look */
        padding: 12px; /* Less padding */
        border-radius: 20px; /* Slightly smaller border radius */
        margin: 0 5px; /* Add small margin between cards */
    }
    
    .mascot-card img {
        width: 95%;
        height: 95%;
        border-radius: 16px; /* Matching smaller border radius */
    }
    
    .card-overlay h3 {
        font-size: 1.2rem;
    }
    
    .card-overlay p {
        font-size: 0.8rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px !important;
    }
}

/* Extra wide screens */
@media (min-width: 1400px) {
    .hero-mascots {
        padding: 60px 120px;
    }
    
    .mascot-swiper {
        padding: 50px 120px;
        max-width: 1400px;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid #00d4ff;
    border-left: none;
    border-top: none;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

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

/* Section Titles */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00d4ff, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* SUILAND Section */
.suiland-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(10, 10, 10, 1) 50%);
}

.suiland-content {
    margin-top: 60px;
    text-align: center;
}

.suiland-description {
    max-width: 800px;
    margin: 0 auto;
}

.suiland-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 25px;
    text-align: left;
}

.suiland-text p:first-child {
    font-size: 1.3rem;
    color: #00d4ff;
    font-weight: 500;
}

/* Monsters Section */
.monsters-section {
    padding: 100px 0;
    background: rgba(10, 10, 10, 0.9);
}

.monsters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding: 0 20px;
}

.monster-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    height: 300px;
}

.monster-card:hover {
    transform: translateY(-10px);
    border-color: #00d4ff;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.monster-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.monster-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.monster-card:hover .monster-image img {
    transform: scale(1.1);
}

.monster-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    color: white;
    padding: 20px;
    transform: translateY(calc(100% - 60px));
    transition: transform 0.4s ease;
}

.monster-card:hover .monster-overlay {
    transform: translateY(0);
}

.monster-overlay h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: #00d4ff;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.monster-overlay p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    opacity: 0.9;
    color: #ffffff;
}

/* Monster cards hover effects */
.monster-card[data-monster="sui"]:hover {
    border-color: #00d4ff;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.4);
}

.monster-card[data-monster="grum"]:hover {
    border-color: #ff6b6b;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.4);
}

.monster-card[data-monster="stomp"]:hover {
    border-color: #8b5a3c;
    box-shadow: 0 20px 40px rgba(139, 90, 60, 0.4);
}

.monster-card[data-monster="blaze"]:hover {
    border-color: #ff4757;
    box-shadow: 0 20px 40px rgba(255, 71, 87, 0.4);
}

.monster-card[data-monster="brocco"]:hover {
    border-color: #2ed573;
    box-shadow: 0 20px 40px rgba(46, 213, 115, 0.4);
}

.monster-card[data-monster="yeti"]:hover {
    border-color: #70a1ff;
    box-shadow: 0 20px 40px rgba(112, 161, 255, 0.4);
}

.monster-card[data-monster="nubb"]:hover {
    border-color: #ffa726;
    box-shadow: 0 20px 40px rgba(255, 167, 38, 0.4);
}

/* Monsters Section */
.monsters-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(10, 10, 10, 1) 50%);
}

.carousel-3d {
    position: relative;
    height: 400px;
    perspective: 1000px;
    margin: 60px 0;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.monster-card {
    position: absolute;
    width: 250px;
    height: 350px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.monster-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.monster-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 20px; /* Changed from border-radius: 50% to rounded rectangle */
    margin-bottom: 20px;
}

.monster-card h3 {
    color: #00d4ff;
    margin-bottom: 10px;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.carousel-btn {
    background: rgba(0, 212, 255, 0.8);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #00d4ff;
    transform: scale(1.1);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: rgba(10, 10, 10, 0.9);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #00d4ff;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(45deg, #00d4ff, #0066ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
}

.feature-card h3 {
    color: #00d4ff;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Meme GPT Section */
.meme-gpt-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(10, 10, 10, 1) 100%);
}

.meme-gpt-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.feature-list i {
    color: #00d4ff;
    font-size: 18px;
}

.ai-interface {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
}

.interface-header {
    background: rgba(0, 212, 255, 0.1);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.interface-title {
    color: #00d4ff;
    font-weight: 600;
}

.interface-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
}

.control:nth-child(2) {
    background: #ffbd2e;
}

.control:nth-child(3) {
    background: #27ca3f;
}

.interface-content {
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100% - 60px);
}

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

.typing-indicator {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-bottom: 20px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00d4ff;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-10px); }
}

/* Tokenomics Section */
.tokenomics-section {
    padding: 100px 0;
    background: rgba(10, 10, 10, 0.9);
}

.tokenomics-subtitle {
    text-align: center;
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Dual Chart Layout */
.tokenomics-dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 80px;
}

.tokenomics-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 40px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.tokenomics-card:hover {
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.tokenomics-card.current {
    border-color: rgba(0, 255, 136, 0.5);
    background: rgba(0, 255, 136, 0.05);
}

.tokenomics-card.current:hover {
    border-color: rgba(0, 255, 136, 0.7);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.15);
}

.chart-title {
    color: #00d4ff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.tokenomics-card.current .chart-title {
    color: #00ff88;
}

.chart-subtitle {
    color: #ccc;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 30px;
}

.tokenomics-chart {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.token-info {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.token-info h4 {
    color: #00d4ff;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.token-value {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.distribution-list {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
}

.distribution-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.distribution-item:last-child {
    border-bottom: none;
}

.distribution-item.highlight {
    background: rgba(0, 255, 136, 0.1);
    border-radius: 10px;
    padding: 15px 20px;
    margin: -5px;
}

.distribution-label {
    color: #ccc;
    font-size: 1rem;
}

.distribution-item.highlight .distribution-label {
    color: #00ff88;
    font-weight: 600;
}

.distribution-value {
    color: #00d4ff;
    font-weight: 600;
    font-size: 1.1rem;
}

.distribution-item.highlight .distribution-value {
    color: #00ff88;
    font-size: 1.5rem;
    font-weight: 800;
}

/* Warning and Success Notes */
.warning-note, .success-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-radius: 10px;
    font-size: 0.95rem;
    margin-top: 15px;
}

.warning-note {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
}

.success-note {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.community-benefits {
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.community-benefits h5 {
    color: #00ff88;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.community-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.community-benefits li {
    color: #ccc;
    padding: 5px 0;
    font-size: 0.95rem;
}

/* Timeline Story */
.tokenomics-timeline {
    display: none;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow-x: auto;
    position: relative;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 473px;
    flex-shrink: 0;
    position: relative;
    min-height: 200px;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.timeline-content {
    background: rgba(255, 255, 0, 0.3);
    padding: 10px;
    border: 2px solid yellow;
    width: 100%;
    min-height: 80px;
}

.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -15px;
    width: 30px;
    height: 3px;
    background: linear-gradient(to right, #00d4ff, rgba(0, 212, 255, 0.3));
    border-radius: 2px;
    z-index: 1;
}

.timeline-step.current .timeline-icon {
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    animation: pulse-success 2s infinite;
    border-color: #00ff88;
}

@keyframes pulse-success {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(0, 255, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #fff;
    background: rgba(0, 212, 255, 0.2);
    border: 3px solid #00d4ff;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-icon:hover {
    transform: scale(1.1);
}

.timeline-icon.launch {
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    border-color: #00d4ff;
}

.timeline-icon.rug {
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    border-color: #ff6b6b;
}

.timeline-icon.takeover {
    background: linear-gradient(135deg, #ffa502, #ff6348);
    border-color: #ffa502;
}

.timeline-icon.success {
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    border-color: #00ff88;
}

.timeline-arrow {
    display: none !important; /* Hide the arrow icons on desktop, using CSS lines instead */
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
}

.timeline-content h4 {
    color: #00d4ff;
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    word-wrap: break-word;
    background: rgba(255, 0, 0, 0.2);
    padding: 5px;
}

.timeline-step.current .timeline-content h4 {
    color: #00ff88;
    background: rgba(0, 255, 0, 0.2);
}

.timeline-content p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
    word-wrap: break-word;
    hyphens: auto;
    background: rgba(0, 0, 255, 0.2);
    padding: 5px;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .tokenomics-timeline {
        gap: 40px;
        padding: 40px 15px;
    }
    
    .timeline-step {
        width: 260px;
    }
    
    .timeline-step:not(:last-child)::after {
        width: 40px;
        right: -20px;
    }
    
    .timeline-content h4 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 1200px) {
    .tokenomics-timeline {
        gap: 30px;
    }
    
    .timeline-step {
        width: 220px;
    }
    
    .timeline-content h4 {
        font-size: 1rem;
    }
    
    .timeline-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 1024px) {
    .tokenomics-dual-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tokenomics-timeline {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
        align-items: center;
    }
    
    .timeline-step {
        width: auto;
        max-width: 280px;
    }
    
    .timeline-step:not(:last-child)::after {
        display: none;
    }
    
    .timeline-step:not(:last-child)::before {
        content: '';
        position: absolute;
        bottom: -50px;
        left: 50%;
        transform: translateX(-50%);
        width: 3px;
        height: 100px;
        background: linear-gradient(to bottom, #00d4ff, rgba(0, 212, 255, 0.3));
        border-radius: 2px;
        z-index: 1;
    }
    
    .timeline-arrow {
        display: block;
        transform: rotate(90deg);
        margin: 15px 0;
        font-size: 1.5rem;
        color: #00d4ff;
    }
    
    .timeline-content p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .tokenomics-card {
        padding: 30px 20px;
    }
    
    .chart-title {
        font-size: 1.5rem;
    }
    
    .tokenomics-timeline {
        padding: 30px 15px;
    }
    
    .timeline-step {
        max-width: 250px;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .timeline-content h4 {
        font-size: 1rem;
    }
    
    .timeline-content p {
        font-size: 0.85rem;
    }
}

/* Roadmap Section */
.roadmap-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(10, 10, 10, 1) 100%);
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #00d4ff, #0066ff);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #333;
    border: 3px solid #00d4ff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-marker.completed {
    background: #00d4ff;
}

.timeline-marker.current {
    background: #ff6b6b;
    border-color: #ff6b6b;
    animation: pulse-marker 2s infinite;
}

@keyframes pulse-marker {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 107, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0); }
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    width: calc(50% - 40px);
    margin: 0 20px;
}

.timeline-content h3 {
    color: #00d4ff;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.timeline-content p {
    color: #ccc;
    margin-bottom: 15px;
}

.timeline-content ul {
    list-style: none;
    color: #888;
}

.timeline-content li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.timeline-content li::before {
    content: '•';
    color: #00d4ff;
    position: absolute;
    left: 0;
}

/* Roadmap Update Section */
.roadmap-update-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(10, 10, 10, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.roadmap-update-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    animation: pulse-bg 4s ease-in-out infinite alternate;
}

@keyframes pulse-bg {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

.roadmap-update-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.roadmap-update-title {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff69b4, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.roadmap-achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.achievement-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: transform 0.6s;
    transform: rotate(0deg);
}

.achievement-item:hover::before {
    transform: rotate(180deg);
}

.achievement-item:hover {
    transform: translateY(-10px);
    border-color: #00d4ff;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.achievement-image {
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.achievement-image img {
    width: 100%;
    max-width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.achievement-item:hover .achievement-image img {
    border-color: #00d4ff;
    transform: scale(1.05);
}

.achievement-content {
    position: relative;
    z-index: 2;
}

.achievement-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.achievement-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #ff69b4, #00d4ff);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.achievement-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.3);
    background: linear-gradient(135deg, #ff1493, #00bfff);
}

/* Responsive Design for Roadmap Update */
@media (max-width: 1200px) {
    .roadmap-achievements {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .roadmap-update-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .roadmap-update-section {
        padding: 60px 0;
    }
    
    .roadmap-achievements {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .roadmap-update-title {
        font-size: 2rem;
        padding: 10px 25px;
    }
    
    .achievement-item {
        padding: 20px;
    }
    
    .achievement-image img {
        height: 150px;
    }
    
    .achievement-content h3 {
        font-size: 1.2rem;
    }
}

/* Social Feeds Section */
.social-feeds-section {
    padding: 100px 0;
    background: rgba(10, 10, 10, 0.9);
}

.social-feeds-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.twitter-feed,
.tiktok-feed {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    height: 500px;
}

.twitter-feed h3,
.tiktok-feed h3 {
    color: #00d4ff;
    margin-bottom: 30px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feed-container {
    height: calc(100% - 60px);
    overflow-y: auto;
    padding-right: 10px;
}

.feed-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #666;
}

.feed-placeholder i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #00d4ff;
}

/* Universe Section */
.universe-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(10, 10, 10, 1) 100%);
}

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

.universe-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.universe-card:hover {
    transform: translateY(-10px);
    border-color: #00d4ff;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.universe-card h3 {
    color: #00d4ff;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.universe-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: rgba(10, 10, 10, 0.9);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

.contact-info h3 {
    color: #00d4ff;
    margin-bottom: 20px;
    font-size: 2rem;
}

.contact-info p {
    color: #ccc;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ccc;
}

.contact-item i {
    color: #00d4ff;
    font-size: 20px;
    width: 25px;
}

.contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #00d4ff;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

/* Footer */
.footer {
    background: rgba(5, 5, 5, 0.95);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.footer-brand h3 {
    font-family: 'Orbitron', monospace;
    color: #00d4ff;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.footer-brand p {
    color: #888;
}

.footer-links h4 {
    color: #00d4ff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #00d4ff;
}

.footer-social h4 {
    color: #00d4ff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #00d4ff;
    color: white;
    transform: translateY(-3px);
}

/* Footer Disclaimer */
.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0 30px 0;
    backdrop-filter: blur(10px);
}

.disclaimer-content h4 {
    color: #00d4ff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
}

.disclaimer-content p {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: justify;
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .nav-right {
        gap: 15px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .hero-title {
        font-family: 'Orbitron', monospace;
        font-size: 3rem;
        font-weight: 900;
        text-align: center;
        line-height: 1.1;
        margin-bottom: 20px;
        position: relative;
        /* Ensure gradient is maintained */
        /*background: linear-gradient(45deg, #00d4ff, #0066ff, #ff6b6b);*/
        /*-webkit-background-clip: text;*/
        /*-webkit-text-fill-color: transparent;*/
        /*background-clip: text;*/
    }
    
    .glitch {
        font-family: 'Orbitron', monospace;
        font-weight: 900;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-right {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        backdrop-filter: blur(20px);
        height: calc(100vh - 70px);
        overflow-y: auto;
        align-items: stretch;
        gap: 0;
        border-top: 1px solid rgba(0, 212, 255, 0.3);
    }
    
    .nav-right.active {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .nav-menu > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    .nav-menu > li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        padding: 18px 20px; /* Increased touch target */
        font-size: 17px; /* Slightly larger for mobile */
        width: 100%;
        justify-content: center;
        min-height: 54px; /* Better touch target */
    }
    
    .dropdown-link {
        padding: 15px 40px; /* Increased touch target */
        font-size: 15px; /* Slightly larger for mobile */
        min-height: 50px; /* Better touch target */
    }
    
    .buy-now-btn {
        margin: 10px 20px;
        padding: 15px 30px; /* Larger touch target */
        font-size: 16px;
        min-height: 50px;
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* Mobile Dropdown Styles */
    .nav-dropdown .dropdown-menu {
        position: static;
        background: rgba(0, 212, 255, 0.1);
        border: none;
        border-radius: 0;
        box-shadow: none;
        backdrop-filter: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        min-width: auto;
    }
    
    .nav-dropdown.active .dropdown-menu {
        max-height: 250px;
    }
    
    .dropdown-toggle {
        position: relative;
        cursor: pointer;
    }
    
    .dropdown-link:last-child {
        border-bottom: none;
    }
    
    .dropdown-link:hover {
        background: rgba(0, 212, 255, 0.2);
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 0 20px;
        margin-left: 0; /* Reset the negative margin for mobile */
    }
    
    .hero-text {
        min-width: auto; /* Remove fixed min-width for mobile */
        width: 100%;
        padding: 40px 30px; /* Reduce padding for mobile */
    }
    
    .hero-title {
        font-family: 'Orbitron', monospace;
        font-size: 2.8rem;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 20px;
        text-align: center;
        position: relative;
        /* Ensure gradient is maintained */
        background: linear-gradient(45deg, #00d4ff, #0066ff, #ff6b6b);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .glitch {
        font-family: 'Orbitron', monospace;
        font-weight: 900;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        max-width: 340px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
    }
    
    .hero-buttons .cta-btn:nth-child(5) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 160px;
    }
    
    .cta-btn {
        min-width: 120px;
        padding: 12px 16px;
        font-size: 13px;
        gap: 6px;
        white-space: nowrap;
    }
    
    .btn-text {
        display: none;
    }
    
    .btn-text-mobile {
        display: inline;
    }
    
    .cta-btn i {
        font-size: 14px;
    }
    
    .mascot-orbit-container {
        width: 500px;
        height: 500px;
    }
    
    .mascot-rect {
        width: 250px;
        height: 300px; /* 20% taller than 250px */
    }
    
    .section-title {
        font-size: 1.8rem;
        padding: 0 20px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .section-subtitle {
        padding: 0 20px;
        font-size: 1rem;
        text-align: center;
        margin-bottom: 30px;
    }
    
    /* Meme GPT Mobile Improvements */
    .meme-gpt-story {
        padding: 20px !important;
        margin: 20px 0 !important;
    }
    
    .meme-gpt-story > div {
        flex-direction: column !important;
        gap: 30px !important;
        align-items: center !important; /* Center align all items */
    }
    
    .meme-gpt-story > div > div:first-child {
        min-width: auto !important;
        width: 100% !important;
    }
    
    /* Center align the slideshow section on mobile */
    .meme-gpt-story > div > div:last-child {
        align-self: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        justify-content: center !important;
    }
    
    .meme-gpt-story h2 {
        font-size: 1.6rem !important;
        text-align: center !important;
    }
    
    .meme-gpt-story p {
        font-size: 1rem !important;
        text-align: left !important;
        line-height: 1.5 !important;
    }
    
    .meme-gpt-story li {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
    }
    
    .meme-gpt-story .cta-btn {
        font-size: 1rem !important;
        padding: 14px 24px !important;
    }
    
    /* Slider Mobile Adjustments */
    #slider-container {
        width: 280px !important;
        height: 280px !important;
    }
    
    /* Monster Grid Mobile */
    .monsters-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
        padding: 0 15px;
    }
    
    .monster-card {
        height: 230px;
    }
    
    .monster-overlay h3 {
        font-size: 1.1rem;
    }
    
    .monster-overlay p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    /* Story Text Mobile */
    .suiland-text p,
    .story-text {
        font-size: 1rem !important;
        text-align: left !important;
        line-height: 1.5 !important;
        padding: 0 20px;
    }
    
    .suiland-text p:first-child {
        font-size: 1.1rem !important;
        margin-bottom: 15px;
    }
    
    .meme-gpt-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Tokenomics Mobile Improvements */
    .tokenomics-grid,
    .tokenomics-dual-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .tokenomics-card {
        padding: 20px;
        margin: 0;
    }
    
    .chart-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .chart-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .tokenomics-chart canvas {
        max-width: 250px;
        max-height: 250px;
    }
    
    .distribution-item {
        padding: 8px 12px;
        margin-bottom: 8px;
    }
    
    .distribution-label {
        font-size: 0.9rem;
    }
    
    .distribution-value {
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    /* Features Grid Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .feature-card p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 50px;
    }
    
    .timeline-marker {
        left: 20px !important;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: 100%;
        margin: 0;
    }
    
    .social-feeds-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .twitter-feed,
    .tiktok-feed {
        height: 400px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevent zoom on focus */
        padding: 12px 15px;
    }
    
    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    /* Social Links Mobile Optimization */
    .contact-social h4 {
        text-align: center;
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .social-links-large {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .social-row {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .social-link-large {
        justify-content: center;
        padding: 14px 20px;
        flex: none;
        width: 100%;
        font-size: 0.95rem;
    }
    
    .social-link-large i {
        font-size: 1.3rem;
        width: 22px;
    }
    
    .social-link-large span {
        font-size: 0.95rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    /* Mobile-specific improvements */
    .container {
        padding: 0 20px;
    }
    
    /* Better touch targets for mobile */
    .nav-link, .dropdown-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Prevent zoom on input focus */
    input, textarea, select {
        font-size: 16px;
    }
    
    /* Improved readability on mobile */
    .hero-text {
        text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    }
    
    .hero-title {
        font-family: 'Orbitron', monospace;
        font-size: 2.2rem;
        font-weight: 900;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        letter-spacing: 0.05em;
        line-height: 1.1;
        margin-bottom: 15px;
        text-align: center;
        position: relative;
        /* Ensure gradient visibility on mobile */
        background: linear-gradient(45deg, #00d4ff, #0066ff, #ff6b6b);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .glitch {
        font-family: 'Orbitron', monospace;
        font-weight: 900;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        letter-spacing: 0.05em;
    }
    
    /* Better button spacing on mobile */
    .hero-buttons .cta-btn {
        box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
    }
    
    .hero-buttons .cta-btn:hover {
        box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3);
        transform: translateY(-2px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
        margin-left: 0;
    }
    
    .hero-text {
        padding: 20px 15px; /* Further reduce padding for small screens */
        min-width: auto;
    }
    
    .hero-title {
        font-family: 'Orbitron', monospace;
        font-size: 2.5rem;
        font-weight: 900;
        margin-bottom: 15px;
        line-height: 1.2;
        text-align: center;
        position: relative;
        /* Keep the same gradient as desktop */
        background: linear-gradient(45deg, #00d4ff, #0066ff, #ff6b6b);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .glitch {
        font-family: 'Orbitron', monospace;
        font-weight: 900;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        gap: 10px;
        max-width: 320px;
    }
    
    .cta-btn {
        padding: 11px 14px;
        font-size: 12px;
        min-width: 110px;
    }
    
    .hero-buttons .cta-btn:nth-child(5) {
        max-width: 150px;
    }
    
    .mascot-orbit-container {
        width: 400px;
        height: 400px;
    }
    
    .mascot-rect {
        width: 200px;
        height: 240px; /* 20% taller than 200px */
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    /* Extra small screen optimizations */
    .meme-gpt-story {
        padding: 15px !important;
        margin: 15px 0 !important;
        border-radius: 15px !important;
    }
    
    .meme-gpt-story > div {
        flex-direction: column !important;
        gap: 20px !important;
        align-items: center !important; /* Center align all items */
    }
    
    /* Center align the slideshow section on small mobile */
    .meme-gpt-story > div > div:last-child {
        align-self: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        justify-content: center !important;
    }
    
    .meme-gpt-story h2 {
        font-size: 1.4rem !important;
    }
    
    .meme-gpt-story p,
    .meme-gpt-story li {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }
    
    #slider-container {
        width: 250px !important;
        height: 250px !important;
    }
    
    .monsters-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 12px;
        padding: 0 10px;
    }
    
    .monster-card {
        height: 200px;
    }
    
    .monster-overlay h3 {
        font-size: 1rem;
    }
    
    .monster-overlay p {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .tokenomics-chart canvas {
        max-width: 220px;
        max-height: 220px;
    }
    
    .distribution-item {
        padding: 6px 10px;
        font-size: 0.85rem;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .social-link-large {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .social-link-large i {
        font-size: 1.2rem;
        width: 20px;
    }
}

/* Ultra Mobile Optimization - Very Small Screens */
@media (max-width: 375px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-text {
        padding: 15px 12px;
    }
    
    .hero-title {
        font-family: 'Orbitron', monospace;
        font-size: 2rem;
        font-weight: 900;
        line-height: 1.1;
        text-align: center;
        position: relative;
        /* Maintain gradient and visual consistency */
        background: linear-gradient(45deg, #00d4ff, #0066ff, #ff6b6b);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 15px;
    }
    
    .glitch {
        font-family: 'Orbitron', monospace;
        font-weight: 900;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        gap: 8px;
        max-width: 300px;
    }
    
    .cta-btn {
        padding: 10px 12px;
        font-size: 11px;
        min-width: 105px;
    }
    
    .hero-buttons .cta-btn:nth-child(5) {
        max-width: 140px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .meme-gpt-story {
        padding: 12px !important;
    }
    
    .meme-gpt-story > div {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: center !important; /* Center align all items */
    }
    
    /* Center align the slideshow section on very small mobile */
    .meme-gpt-story > div > div:last-child {
        align-self: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        justify-content: center !important;
    }
    
    .meme-gpt-story h2 {
        font-size: 1.2rem !important;
    }
    
    #slider-container {
        width: 220px !important;
        height: 220px !important;
    }
    
    .monsters-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 10px;
        padding: 0 8px;
    }
    
    .monster-card {
        height: 180px;
    }
    
    .social-link-large {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    
    .nav-link {
        padding: 16px 18px;
        font-size: 16px;
    }
    
    .dropdown-link {
        padding: 12px 35px;
        font-size: 14px;
    }
}

/* Monster Carousel Specific Styling - Simple Transitions */
.monster-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    background: rgba(0, 30, 60, 0.2);
    backdrop-filter: blur(5px);
    padding: 30px 60px;
}

.monster-carousel-track {
    display: flex;
    transition: transform 0.4s ease;
    width: 100%;
}

.monster-carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.monster-card-wide {
    width: 320px;
    height: 450px;
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.1), rgba(0, 100, 200, 0.15));
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 150, 255, 0.2);
    box-shadow: 0 5px 20px rgba(0, 150, 255, 0.1);
}

.monster-card-wide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 150, 255, 0.2);
    border-color: rgba(0, 150, 255, 0.4);
}

.monster-card-wide img {
    width: 100%;
    height: 75%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.3s ease;
}

.monster-card-wide:hover img {
    opacity: 0.9;
}

.monster-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 15px;
    text-align: center;
}

.monster-card-overlay h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #00BFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.monster-card-overlay p {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.3;
    margin: 0;
}

/* Monster Carousel Navigation - Simplified */
.monster-carousel-prev,
.monster-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 150, 255, 0.15);
    border: 1px solid rgba(0, 150, 255, 0.3);
    color: #00BFFF;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    z-index: 10;
}

.monster-carousel-prev {
    left: 15px;
}

.monster-carousel-next {
    right: 15px;
}

.monster-carousel-prev:hover,
.monster-carousel-next:hover {
    background: rgba(0, 150, 255, 0.25);
    border-color: rgba(0, 150, 255, 0.6);
    transform: translateY(-50%) scale(1.05);
}

/* Monster Carousel Indicators - Simplified */
.monster-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
    flex-wrap: wrap;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.monster-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.monster-indicator.active {
    background: #00BFFF;
    transform: scale(1.3);
}

.monster-indicator:hover {
    background: rgba(0, 150, 255, 0.6);
}

/* Responsive adjustments for monster carousel */
@media (max-width: 768px) {
    .monster-carousel-container {
        padding: 20px 50px;
    }
    
    .monster-card-wide {
        width: 260px;
        height: 380px;
    }
    
    .monster-carousel-prev,
    .monster-carousel-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .monster-carousel-prev {
        left: 10px;
    }
    
    .monster-carousel-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .monster-carousel-container {
        padding: 15px 40px;
    }
    
    .monster-card-wide {
        width: 220px;
        height: 320px;
    }
    
    .monster-carousel-indicators {
        gap: 6px;
        margin-top: 20px;
    }
    
    .monster-indicator {
        width: 8px;
        height: 8px;
    }
}

/* All Monsters Gallery Section */
.all-monsters-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

.all-monsters-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.suiland-story {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    backdrop-filter: blur(10px);
}

.story-text {
    color: #e0e6ed;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 900px;
    margin: 0 auto;
}

.story-text strong {
    color: #00d4ff;
    font-size: 1.3rem;
    display: block;
    margin-bottom: 10px;
}

.monsters-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Changed to 5 columns */
    gap: 20px; /* Reduced gap from 30px to 20px */
    margin-top: 50px;
}

.monster-card {
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.1), rgba(0, 100, 200, 0.15));
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 150, 255, 0.2);
    box-shadow: 0 5px 20px rgba(0, 150, 255, 0.1);
    height: 420px; /* Slightly reduced height */
    display: none; /* Hidden by default for pagination */
}

.monster-card.active-page {
    display: block; /* Show only active page cards */
}

.monster-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 150, 255, 0.3);
    border-color: rgba(0, 150, 255, 0.5);
}

.monster-image {
    width: 100%;
    height: 100%; /* Full height - image takes entire card */
    overflow: hidden;
    position: relative;
}

.monster-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.monster-card:hover .monster-image img {
    opacity: 0.7;
    transform: scale(1.05);
}

.monster-overlay {
    position: absolute;
    bottom: -100%; /* Start completely hidden below */
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
    color: white;
    padding: 25px;
    text-align: center;
    height: 50%; /* Cover bottom half when visible */
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: bottom 0.4s ease; /* Smooth slide up animation */
}

.monster-card:hover .monster-overlay {
    bottom: 0; /* Slide up to cover bottom half */
}

.monster-overlay h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #00BFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.monster-overlay p {
    font-size: 0.85rem;
    opacity: 0.95;
    line-height: 1.3;
    margin: 0;
    overflow: visible;
    display: block;
    max-height: none;
    -webkit-line-clamp: none;
    line-clamp: none;
}

/* Pagination Controls */
.monsters-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
    padding: 20px 0;
}

.pagination-btn {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border: none;
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 140px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pagination-btn:hover {
    background: linear-gradient(45deg, #0099cc, #00d4ff);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 212, 255, 0.4);
}

.pagination-btn:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.pagination-info {
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid #00d4ff;
    color: #00d4ff;
    font-weight: 700;
    font-size: 18px;
    padding: 12px 20px;
    border-radius: 25px;
    min-width: 180px;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

@media (max-width: 1200px) {
    .monsters-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
    
    .monster-card {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .monsters-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .monster-card {
        height: 350px;
    }
    
    .pagination-btn {
        padding: 12px 20px;
        font-size: 14px;
        min-width: 120px;
    }
    
    .pagination-info {
        font-size: 16px;
        min-width: 150px;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .monsters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 15px;
    }
    
    .monster-card {
        height: 320px;
    }
    
    .pagination-btn {
        padding: 10px 15px;
        font-size: 12px;
        min-width: 100px;
    }
    
    .pagination-info {
        font-size: 14px;
        min-width: 120px;
        padding: 8px 12px;
    }
    
    .monsters-pagination {
        gap: 15px;
    }
}

/* Enhanced Social Media Feeds */
.social-feeds-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}

.social-feeds-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.twitter-feed, .tiktok-feed {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    height: 800px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 212, 255, 0.5) transparent;
}

/* Custom scrollbar for webkit browsers */
.twitter-feed::-webkit-scrollbar, .tiktok-feed::-webkit-scrollbar {
    width: 6px;
}

.twitter-feed::-webkit-scrollbar-track, .tiktok-feed::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.twitter-feed::-webkit-scrollbar-thumb, .tiktok-feed::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.5);
    border-radius: 3px;
}

.twitter-feed::-webkit-scrollbar-thumb:hover, .tiktok-feed::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 255, 0.7);
}

.twitter-feed h3, .tiktok-feed h3 {
    color: #00d4ff;
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tweet-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 18px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 80px;
}

.tweet-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

.tweet-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.tweet-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.tweet-info h4 {
    color: #00d4ff;
    margin: 0;
    font-size: 0.9rem;
}

.tweet-info span {
    color: #888;
    font-size: 0.8rem;
}

.tweet-item p {
    color: #fff;
    line-height: 1.5;
    margin-bottom: 15px;
}

.tweet-stats {
    display: flex;
    gap: 20px;
    color: #888;
    font-size: 0.9rem;
}

.tiktok-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 15px;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 70px;
}

.tiktok-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 0, 80, 0.5);
    transform: translateY(-2px);
}

.tiktok-thumbnail {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
}

.tiktok-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.tiktok-info h4 {
    color: #fff;
    margin: 0 0 5px 0;
    font-size: 0.9rem;
}

.tiktok-info p {
    color: #888;
    margin: 0;
    font-size: 0.8rem;
}

.feed-link {
    text-align: center;
    margin-top: 20px;
}

.feed-link a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 2px solid #00d4ff;
    border-radius: 25px;
    display: inline-block;
}

.feed-link a:hover {
    background: #00d4ff;
    color: #000;
    transform: translateY(-2px);
}

/* Feed Loading and Error States */
.feed-loading {
    text-align: center;
    padding: 40px 20px;
    color: #888;
}

.feed-loading i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #00d4ff;
    animation: pulse 2s infinite;
}

.feed-error {
    text-align: center;
    padding: 40px 20px;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.feed-error i {
    font-size: 2rem;
    margin-bottom: 15px;
}

.feed-error a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
}

.feed-error a:hover {
    text-decoration: underline;
}

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

/* YouTube Section */
.youtube-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0000 0%, #2d1b1b 50%, #1a1a2e 100%);
}

.youtube-section .section-title {
    color: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 2.5rem;
}

.youtube-section .section-subtitle {
    color: #ccc;
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.youtube-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

.main-featured-video {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(255, 0, 0, 0.3);
}

.main-featured-video .video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
}

.main-featured-video .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.main-featured-video h3 {
    color: #ff0000;
    font-size: 1.5rem;
    text-align: center;
    margin: 0;
    font-weight: 600;
}

.video-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.video-item-grid {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.video-item-grid:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.25);
}

.video-item-grid .video-thumbnail {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.video-item-grid .video-thumbnail iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.video-item-grid h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
    text-align: center;
    font-weight: 500;
}

.youtube-cta {
    text-align: center;
    margin-top: 40px;
}

.youtube-btn {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.youtube-btn:hover {
    background: linear-gradient(45deg, #cc0000, #ff0000);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.4);
}

/* Responsive Design for Social/YouTube */
@media (max-width: 768px) {
    .social-feeds-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .twitter-feed, .tiktok-feed {
        height: 600px;
    }
    
    .youtube-layout {
        gap: 30px;
    }
    
    .video-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .main-featured-video {
        padding: 20px;
    }
    
    .main-featured-video h3 {
        font-size: 1.3rem;
    }
    
    .youtube-section .section-title {
        font-size: 2rem;
    }
    
    .tiktok-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        min-height: 100px;
    }
    
    .tiktok-thumbnail {
        width: 80px;
        height: 80px;
    }
    
    .suiland-story {
        padding: 20px;
        margin: 30px 0;
    }
    
    .story-text {
        font-size: 1rem;
    }
    
    .story-text strong {
        font-size: 1.2rem;
    }
}

/* Updated social media styles - v3.0 */
.social-media-section .tweet-item {
    padding: 18px !important;
    min-height: 80px !important;
    margin-bottom: 15px !important;
}

.social-media-section .tiktok-item {
    padding: 15px !important;
    min-height: 70px !important;
    margin-bottom: 15px !important;
}

.tiktok-thumbnail {
    width: 70px !important;
    height: 70px !important;
}
