* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --text-color: #ffffff;
    --text-muted: #dbdbd9;
    --highlight: #719dff;
    --gradient: linear-gradient(135deg, #4269b9 0%, #719dff 50%, #a8c5ff 100%);
    --gradient-hover: linear-gradient(135deg, #5b8fff 0%, #719dff 50%, #4269b9 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(113, 157, 255, 0.15) 0%, rgba(168, 197, 255, 0.1) 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth !important;
    scroll-padding-top: 100px;
    margin: 0;
    padding: 0;
}

html, body {
    min-height: 100%;
    height: auto !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #000000;
    background-image: url('img/wel-background.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative !important;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at top left, rgba(0, 0, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.2) 0%, transparent 50%),
        rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: -1;
}

/* Don't apply relative positioning to navbar */
body > *:not(.navbar) {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
}

.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: rgba(10, 10, 20, 0.7);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    z-index: 9999998 !important;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(113, 157, 255, 0.2);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.navbar.scrolled {
    background: rgba(10, 10, 20, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(113, 157, 255, 0.3);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

.nav-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text-color);
    border-radius: 50%;
    background: rgba(10, 10, 20, 0.6);
    border: 1px solid rgba(113, 157, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-social-link:hover,
.nav-social-link:focus {
    background: rgba(113, 157, 255, 0.2);
    border-color: rgba(113, 157, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(113, 157, 255, 0.4);
}

.nav-social-link svg {
    width: 20px;
    height: 20px;
}

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

.mobile-nav-right {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex: 1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.nav-menu li.mobile-buy-item {
    display: none;
}

.nav-menu li.mobile-social-item {
    display: none;
}

.mobile-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text-color);
    border-radius: 50%;
    background: rgba(10, 10, 20, 0.6);
    border: 1px solid rgba(113, 157, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-social-link:hover,
.mobile-social-link:focus {
    background: rgba(113, 157, 255, 0.2);
    border-color: rgba(113, 157, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(113, 157, 255, 0.4);
}

.mobile-social-link svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .navbar .container {
        display: grid;
        grid-template-columns: 1fr auto;
    }
    
    .nav-brand {
        order: 1;
    }
    
    .mobile-nav-right {
        order: 2;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .mobile-menu-toggle {
        order: 2;
    }
    
    .nav-menu {
        order: 3;
        position: static;
        transform: none;
        flex: none;
    }
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.nav-brand a:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    z-index: 10000;
    position: relative;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.btn-nav-search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    color: var(--text-color);
    text-decoration: none;
    border: 2px solid var(--text-color);
    border-radius: 50%;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-nav-search:hover,
.btn-nav-search:focus {
    background: var(--text-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-nav-search svg {
    width: 20px;
    height: 20px;
}

.btn-nav-buy {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: transparent;
    color: var(--text-color);
    text-decoration: none;
    border: 2px solid var(--text-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-nav-buy:hover,
.btn-nav-buy:focus {
    background: var(--text-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a:focus::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: var(--highlight);
}

.hero-section {
    padding: 180px 0 100px;
    background: transparent;
    position: relative;
    scroll-margin-top: 100px;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 300%;
    background: 
        radial-gradient(ellipse at center, rgba(113, 157, 255, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse at top, rgba(113, 157, 255, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at bottom, rgba(168, 197, 255, 0.1) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

/* Animated Starfield Canvas - Optimized */
.starfield-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5; /* Reduced opacity for performance */
    will-change: transform; /* GPU acceleration hint */
    transform: translateZ(0); /* Force GPU layer */
}

/* Galactic Particles Overlay - Optimized */
.galactic-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: 
        radial-gradient(2px 2px at 20% 30%, rgba(113, 157, 255, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(168, 197, 255, 0.2), transparent);
    background-size: 200% 200%, 150% 150%;
    animation: starfieldMove 40s linear infinite; /* Even slower for better performance */
    opacity: 0.25; /* Further reduced */
    will-change: background-position;
    transform: translateZ(0); /* GPU acceleration */
}

@keyframes starfieldMove {
    0% { background-position: 0% 0%, 0% 0%, 0% 0%; }
    100% { background-position: 100% 100%, 50% 50%, 80% 80%; }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.floating-block {
    position: absolute;
    border-radius: 20px;
    backdrop-filter: blur(5px); /* Further reduced for performance */
    -webkit-backdrop-filter: blur(5px);
    opacity: 0.15; /* Further reduced */
    animation: floatAround 40s ease-in-out infinite; /* Even slower */
    will-change: transform;
    transform: translateZ(0); /* GPU acceleration */
}

.floating-block.block-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(113, 157, 255, 0.2), rgba(168, 197, 255, 0.1));
    border: 1px solid rgba(113, 157, 255, 0.3);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-block.block-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(168, 197, 255, 0.2), rgba(113, 157, 255, 0.1));
    border: 1px solid rgba(168, 197, 255, 0.3);
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.floating-block.block-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(113, 157, 255, 0.15), rgba(113, 157, 255, 0.1));
    border: 1px solid rgba(113, 157, 255, 0.3);
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
}

.floating-block.block-4 {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(113, 157, 255, 0.2), rgba(168, 197, 255, 0.15));
    border: 1px solid rgba(113, 157, 255, 0.3);
    top: 30%;
    right: 30%;
    animation-delay: -15s;
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(50px, -30px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-30px, 50px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(30px, 30px) rotate(270deg) scale(1.05);
    }
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 0 3rem;
        min-height: auto;
    }
    
    .floating-block {
        display: none; /* Hide floating blocks on mobile for performance */
    }
    
    .galactic-particles {
        display: none; /* Hide particles on mobile for performance */
    }
    
    .starfield-canvas {
        display: none; /* Hide starfield on mobile for performance */
    }
    
    .hero-image::before {
        display: none; /* Hide glow effect on mobile */
    }
    
    /* Reduce backdrop-filter on mobile */
    #dexscreener-embed,
    .ai-overview,
    .search-box {
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: center;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.hero-text-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
    justify-content: center;
    padding-left: 2rem;
}

.hero-video-column {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 3px rgba(113, 157, 255, 0.3))
            drop-shadow(0 0 6px rgba(168, 197, 255, 0.2));
    line-height: 1;
    letter-spacing: -0.02em;
    animation: titleGlowCinematic 6s ease-in-out infinite;
    transform: translateZ(0);
    transition: transform 0.3s ease;
    will-change: filter;
    margin-bottom: 0.5rem;
}

.hero-title:hover {
    transform: translateZ(0) scale(1.01); /* Simplified hover */
}

@keyframes titleGlowCinematic {
    0%, 100% {
        filter: drop-shadow(0 0 2px rgba(113, 157, 255, 0.15))
                drop-shadow(0 0 4px rgba(168, 197, 255, 0.15));
    }
    50% {
        filter: drop-shadow(0 0 6px rgba(113, 157, 255, 0.3))
                drop-shadow(0 0 12px rgba(168, 197, 255, 0.2));
    }
}

.hero-description {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
    max-width: 100%;
    font-weight: 400;
}

.hero-video {
    width: 100%;
    position: relative;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6),
                0 0 50px rgba(113, 157, 255, 0.4),
                0 0 100px rgba(168, 197, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.7),
                0 0 70px rgba(113, 157, 255, 0.5),
                0 0 120px rgba(168, 197, 255, 0.4);
}

.hero-trailer-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    background: #000;
}

.hero-trailer-video:not([controls])::-webkit-media-controls-panel {
    display: none !important;
}

.hero-trailer-video:not([controls])::-webkit-media-controls-play-button {
    display: none !important;
}

.hero-trailer-video:not([controls])::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.hero-trailer-video:not([controls])::-webkit-media-controls {
    display: none !important;
}

.hero-trailer-video:not([controls])::-webkit-media-controls-enclosure {
    display: none !important;
}

.hero-trailer-video:not([controls])::-webkit-media-controls-overlay-play-button {
    display: none !important;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button:active {
    transform: translate(-50%, -50%) scale(0.95);
}

.video-play-button.hidden {
    opacity: 0 !important;
    pointer-events: none !important;
    display: none !important;
    transition: opacity 0.2s ease;
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    object-fit: cover;
    cursor: pointer;
}

.hero-trailer-video-modal {
    width: 100%;
    max-width: 90vw;
    height: auto;
    max-height: 90vh;
    border-radius: 12px;
    background: #000;
}

/* Video Modal */
.video-modal {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.85) !important;
    z-index: 2147483647 !important;
    align-items: center !important;
    justify-content: center !important;
    backdrop-filter: blur(15px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(15px) saturate(180%) !important;
    visibility: hidden;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    isolation: isolate !important;
    transform: translateZ(0) !important;
    will-change: transform !important;
}

.video-modal[style*="flex"],
.video-modal.show {
    display: flex !important;
    visibility: visible !important;
}

.video-modal[style*="flex"] {
    display: flex !important;
    visibility: visible !important;
}

.video-modal-content {
    position: relative !important;
    width: 90%;
    max-width: 1200px;
    padding: 2rem;
    z-index: 2147483647 !important;
    isolation: isolate !important;
    transform: translateZ(0) !important;
}

.video-modal-close {
    position: absolute !important;
    top: -10px;
    right: 10px;
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 2147483647 !important;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
    transform: translateZ(0) !important;
}

.video-modal-close:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.play-button-icon {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5))
            drop-shadow(0 0 20px rgba(113, 157, 255, 0.6));
    transition: filter 0.3s ease;
}

.video-play-button:hover .play-button-icon {
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.6))
            drop-shadow(0 0 30px rgba(113, 157, 255, 0.8))
            drop-shadow(0 0 40px rgba(168, 197, 255, 0.5));
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    width: 100%;
    margin-top: 0.25rem;
}

.hero-contract-address {
    text-align: center;
    padding: 2rem;
    background: rgba(10, 10, 20, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(113, 157, 255, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(113, 157, 255, 0.1);
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.hero-contract-address p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.hero-contract-address .address-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.hero-actions .contract-address {
    opacity: 1;
    transform: none;
    width: 100%;
    max-width: 600px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(113, 157, 255, 0.2) 0%, transparent 70%); /* Reduced opacity */
    border-radius: 50%;
    animation: pulseGlow 5s ease-in-out infinite; /* Slower for performance */
    z-index: -1;
    will-change: transform, opacity;
    transform: translateZ(0); /* GPU acceleration */
}

@keyframes pulseGlow {
    0%, 100% {
        transform: translateZ(0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateZ(0) scale(1.15); /* Reduced scale */
        opacity: 0.6;
    }
}

.hero-image img {
    max-width: 70%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(113, 157, 255, 0.3),
                0 0 80px rgba(168, 197, 255, 0.2);
    animation: floatImageSubtle 12s ease-in-out infinite; /* Even slower for better performance */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    transform: translateZ(0); /* GPU acceleration */
}

.hero-image img:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
                0 0 60px rgba(113, 157, 255, 0.5),
                0 0 100px rgba(168, 197, 255, 0.3);
}

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

.hero-exchanges {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
    position: relative;
    z-index: 2;
}

.about-section {
    padding: 6rem 0;
    background: transparent;
    position: relative;
    scroll-margin-top: 100px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(10, 10, 20, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(113, 157, 255, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(113, 157, 255, 0.1);
    transition: all 0.3s ease;
}

.about-content:hover {
    border-color: rgba(113, 157, 255, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-text {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text:last-child {
    margin-bottom: 0;
}

.wel-signature {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--highlight);
    text-align: center;
    margin-top: 2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contract-address {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

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

.ai-search-section {
    margin-top: 3rem;
    scroll-margin-top: 120px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-search-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.chart-section {
    padding: 6rem 0;
    background: transparent;
    position: relative;
    opacity: 1;
    transform: none;
    transition: none;
    width: 100%;
    max-width: 100vw;
    visibility: visible;
    display: block;
    overflow-x: hidden;
    box-sizing: border-box;
    scroll-margin-top: 100px;
}

.chart-section.animate-in {
    opacity: 1;
    transform: translate3d(0, 0, 0); /* GPU accelerated */
    will-change: auto; /* Remove hint after animation */
}

.chart-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#dexscreener-embed {
    background: rgba(10, 10, 20, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(113, 157, 255, 0.25);
    backdrop-filter: blur(10px); /* Reduced blur for performance */
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(113, 157, 255, 0.1);
    overflow: hidden;
    position: relative;
    width: 100%;
    min-height: 600px;
    padding-bottom: 150%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    will-change: transform;
}

#dexscreener-embed:hover {
    transform: translate3d(0, -3px, 0); /* Reduced movement, GPU accelerated */
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(113, 157, 255, 0.15);
    border-color: rgba(113, 157, 255, 0.4);
}

@media (min-width: 768px) {
    #dexscreener-embed {
        padding-bottom: 100%;
        min-height: 700px;
    }
}

@media (min-width: 1400px) {
    #dexscreener-embed {
        padding-bottom: 65%;
        min-height: 800px;
    }
}

#dexscreener-embed iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 0;
    min-height: 600px;
}

.hero-search {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 100px;
    padding-bottom: 4rem;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 4rem;
    background: radial-gradient(circle at center, var(--secondary-color) 0%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(113, 157, 255, 0.15) 0%, transparent 70%);
    animation: pulse 20s ease-in-out infinite;
}

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

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -2px;
    filter: drop-shadow(0 0 2px rgba(113, 157, 255, 0.15));
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 90%;
}

.btn-primary {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--gradient);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(113, 157, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-hover);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover::before,
.btn-primary:focus::before {
    left: 0;
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(113, 157, 255, 0.6), 0 0 20px rgba(168, 197, 255, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.hero-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(113, 157, 255, 0.4);
}


.search-section {
    padding: 6rem 0;
    background: transparent;
    min-height: 60vh;
}

.hero-search .search-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 0;
}

.hero-search .ai-overview {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .hero-search .ai-overview {
        margin-top: 1rem;
    }
}

.hero-search .search-results {
    margin-top: 2rem;
}

.search-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 0;
}

.search-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.search-logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.ai-badge-top {
    position: absolute;
    top: -8px;
    right: -25px;
    background: var(--gradient);
    color: var(--text-color);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(113, 157, 255, 0.5);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(113, 157, 255, 0.5);
    }
    50% {
        box-shadow: 0 2px 12px rgba(168, 197, 255, 0.7);
    }
}

@keyframes glow-pulse {
    0% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5),
                     0 0 10px rgba(113, 157, 255, 0.8),
                     0 0 20px rgba(113, 157, 255, 0.6),
                     0 0 30px rgba(168, 197, 255, 0.5),
                     0 0 40px rgba(113, 157, 255, 0.4),
                     0 0 50px rgba(168, 197, 255, 0.3);
        filter: drop-shadow(0 0 8px rgba(113, 157, 255, 0.6));
    }
    100% {
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.7),
                     0 0 15px rgba(113, 157, 255, 1),
                     0 0 25px rgba(113, 157, 255, 0.8),
                     0 0 35px rgba(168, 197, 255, 0.7),
                     0 0 50px rgba(113, 157, 255, 0.6),
                     0 0 60px rgba(168, 197, 255, 0.4),
                     0 0 70px rgba(113, 157, 255, 0.3);
        filter: drop-shadow(0 0 12px rgba(113, 157, 255, 0.8)) 
                drop-shadow(0 0 20px rgba(168, 197, 255, 0.5));
    }
}

.search-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.search-box-container {
    width: 100%;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(10, 10, 20, 0.6);
    border: 1px solid rgba(113, 157, 255, 0.25);
    border-radius: 30px;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 10px rgba(113, 157, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.search-image-icon {
    position: relative;
    width: 32px;
    height: 32px;
    margin-right: 0.5rem;
    flex-shrink: 0;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.search-image-icon:hover {
    border-color: rgba(113, 157, 255, 0.6);
    transform: scale(1.05);
}

.image-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.remove-image {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    transition: var(--transition);
    z-index: 10;
}

.search-image-icon:hover .remove-image {
    opacity: 1;
}

.remove-image:hover {
    background: var(--highlight);
    border-color: var(--highlight);
}

.search-box:hover {
    transform: translate3d(0, -2px, 0); /* GPU accelerated, removed scale */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(113, 157, 255, 0.2);
    border-color: rgba(113, 157, 255, 0.4);
}

.search-box:focus-within {
    transform: translate3d(0, -2px, 0); /* Reduced movement */
    box-shadow: 0 8px 25px rgba(113, 157, 255, 0.4), 0 0 20px rgba(168, 197, 255, 0.25);
    border-color: rgba(113, 157, 255, 0.7);
}

.search-icon {
    color: var(--text-muted);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-color);
    font-size: 1rem;
    padding: 0;
}

.search-box input::placeholder {
    color: var(--text-muted);
}


.search-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.search-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(10, 10, 20, 0.6);
    border: 1px solid rgba(113, 157, 255, 0.25);
    border-radius: 4px;
    color: var(--text-color);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.search-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.ai-overview {
    max-width: 900px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: rgba(10, 10, 20, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(113, 157, 255, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(113, 157, 255, 0.15);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.ai-overview:hover {
    transform: translate3d(0, -3px, 0); /* GPU accelerated, removed scale */
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(113, 157, 255, 0.2);
    border-color: rgba(113, 157, 255, 0.4);
}

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

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(113, 157, 255, 0.15);
    border: 1px solid rgba(113, 157, 255, 0.4);
    border-radius: 20px;
    color: #719dff;
    font-size: 0.85rem;
    font-weight: 500;
}

.ai-badge svg {
    color: #719dff;
}

.ai-image-preview-mobile {
    display: none;
}

.ai-image-preview-desktop {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    cursor: pointer;
    transition: var(--transition);
}

.ai-image-preview-desktop:hover {
    border-color: rgba(113, 157, 255, 0.6);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(113, 157, 255, 0.4);
}

.ai-image-preview-desktop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.image-modal.active {
    display: flex;
}

.image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--text-color);
    width: 40px;
    height: 40px;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10001;
    font-weight: 300;
    line-height: 1;
}

.image-modal-close:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.ai-content {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    align-items: start;
}

.ai-text {
    flex: 1;
}

.ai-intro {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.ai-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-list li {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.ai-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8ab4f8;
    font-weight: bold;
    font-size: 1.2rem;
}

.search-results {
    max-width: 900px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(113, 157, 255, 0.2);
    background: rgba(10, 10, 20, 0.6);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(113, 157, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(113, 157, 255, 0.15);
}

.results-header {
    margin-bottom: 1.5rem;
}

.results-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.result-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.result-url {
    color: #719dff;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.result-title {
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.result-title a {
    color: #719dff;
    font-size: 1.25rem;
    font-weight: 400;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.result-title a:hover {
    text-decoration: underline;
    color: #5b8fff;
}

.result-title a:visited {
    color: #719dff;
}

.result-snippet {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.related-searches {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.related-title {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.related-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.related-item {
    color: #719dff;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    background: rgba(10, 10, 20, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(113, 157, 255, 0.25);
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.related-item:hover {
    background: rgba(113, 157, 255, 0.15);
    border-color: rgba(113, 157, 255, 0.4);
    color: #5b8fff;
}

.pagination {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.pagination-logo-img {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    opacity: 0.8;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.page-number {
    color: #719dff;
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
    min-width: 32px;
    text-align: center;
}

.page-number:hover {
    background: rgba(113, 157, 255, 0.15);
    color: #5b8fff;
}

.page-number.active {
    color: var(--text-color);
    background: rgba(113, 157, 255, 0.25);
}

.page-next {
    color: #719dff;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}

.page-next:hover {
    background: rgba(113, 157, 255, 0.15);
    color: #5b8fff;
}


.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 4rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: -1px;
    filter: drop-shadow(0 0 1.5px rgba(113, 157, 255, 0.15));
}

.about {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}


.about-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(113, 157, 255, 0.4);
}

.about-text p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.tardigrade-facts {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(113, 157, 255, 0.15);
    border-radius: 15px;
    border-left: 4px solid var(--highlight);
    backdrop-filter: blur(10px);
}

.tardigrade-facts h3 {
    margin-bottom: 1rem;
    color: var(--highlight);
    font-size: 1.3rem;
}

.tardigrade-facts ul {
    list-style: none;
    padding-left: 0;
}

.tardigrade-facts li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.6;
}

.tardigrade-facts li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--highlight);
    font-weight: bold;
    font-size: 1.2rem;
}

.how-to-buy {
    padding: 4rem 0 1.5rem;
    background: transparent;
    position: relative;
    scroll-margin-top: 100px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step {
    padding: 2rem;
    background: rgba(10, 10, 20, 0.6);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(113, 157, 255, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(113, 157, 255, 0.1);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(113, 157, 255, 0.4);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(113, 157, 255, 0.4);
}

.step h3 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
}

.step p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.contract-address {
    text-align: center;
    padding: 2rem;
    background: rgba(10, 10, 20, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(113, 157, 255, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(113, 157, 255, 0.1);
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.exchange-buttons {
    margin-top: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(10, 10, 20, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(113, 157, 255, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(113, 157, 255, 0.1);
}

.exchange-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.exchange-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    background: rgba(10, 10, 20, 0.8);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), all 0.3s ease;
    will-change: transform; /* GPU hint */
    transform: translate3d(0, 30px, 0); /* Use 3D transform for GPU */
}

.exchange-btn.animate-in {
    opacity: 1;
    transform: translate3d(0, 0, 0); /* GPU accelerated */
}

.exchange-btn {
    border: 1px solid rgba(113, 157, 255, 0.3);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.exchange-btn:hover {
    background: rgba(113, 157, 255, 0.2);
    border-color: rgba(113, 157, 255, 0.6);
    transform: translate3d(0, -3px, 0) scale(1.03); /* Reduced movement, GPU accelerated */
    box-shadow: 0 6px 20px rgba(113, 157, 255, 0.4), 0 0 15px rgba(168, 197, 255, 0.2);
}

.exchange-name {
    color: #ffffff;
}

.contract-address p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.address-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.address-box code {
    background: rgba(10, 10, 20, 0.7);
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    font-size: clamp(0.75rem, 1.8vw, 0.9rem);
    word-break: keep-all;
    color: var(--highlight);
    font-family: 'Courier New', monospace;
    border: 1px solid rgba(113, 157, 255, 0.3);
    backdrop-filter: blur(10px);
    text-align: center;
}

.clickable-address {
    cursor: pointer;
    user-select: all;
    transition: color 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
}

.clickable-address:hover {
    color: var(--highlight);
    opacity: 0.9;
    border-color: rgba(113, 157, 255, 0.5);
}

.clickable-address:active {
    opacity: 0.7;
}
    -webkit-backdrop-filter: blur(10px);
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

button.btn-copy,
.btn-copy {
    padding: 1rem 2rem !important;
    background: linear-gradient(135deg, #4269b9 0%, #719dff 50%, #4269b9 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-size: 1rem !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 15px rgba(113, 157, 255, 0.4) !important;
    display: inline-block !important;
}

button.btn-copy:hover,
button.btn-copy:focus,
.btn-copy:hover,
.btn-copy:focus {
    transform: scale(1.05) !important;
    box-shadow: 0 5px 20px rgba(113, 157, 255, 0.5) !important;
    background: linear-gradient(135deg, #5b8fff 0%, #719dff 50%, #4269b9 100%) !important;
}

button.btn-copy:active,
.btn-copy:active {
    transform: scale(0.98) !important;
}

.address-box .btn-copy,
.contract-address .btn-copy,
.hero-contract-address .btn-copy {
    padding: 1rem 2rem !important;
    background: linear-gradient(135deg, #4269b9 0%, #719dff 50%, #4269b9 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-size: 1rem !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 15px rgba(113, 157, 255, 0.4) !important;
    display: inline-block !important;
}

.address-box .btn-copy:hover,
.contract-address .btn-copy:hover,
.hero-contract-address .btn-copy:hover,
.address-box .btn-copy:focus,
.contract-address .btn-copy:focus,
.hero-contract-address .btn-copy:focus {
    transform: scale(1.05) !important;
    box-shadow: 0 5px 20px rgba(113, 157, 255, 0.5) !important;
    background: linear-gradient(135deg, #5b8fff 0%, #719dff 50%, #4269b9 100%) !important;
}

.about-section {
    padding: 6rem 0;
    background: transparent;
    position: relative;
    scroll-margin-top: 100px;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.about-text-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-text-column .section-title {
    text-align: left;
    margin-bottom: 0;
}

.about-text {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
}

.about-text p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.wel-signature {
    font-size: 1.3rem;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin-left: 0.5rem;
}

.about-image-column {
    position: relative;
}

.about-image {
    width: 85%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(113, 157, 255, 0.3),
                0 0 80px rgba(168, 197, 255, 0.2);
    border: 2px solid rgba(113, 157, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
                0 0 60px rgba(113, 157, 255, 0.5),
                0 0 100px rgba(168, 197, 255, 0.3);
}

.vision-section {
    padding: 1.5rem 0 4rem;
    background: transparent;
    position: relative;
    scroll-margin-top: 100px;
}

.vision-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.vision-image-column {
    position: relative;
    order: 1;
}

.vision-text-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    order: 2;
}

.vision-text-column .section-title {
    text-align: left;
    margin-bottom: 0;
}

.vision-image {
    width: 85%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(113, 157, 255, 0.3),
                0 0 80px rgba(168, 197, 255, 0.2);
    border: 2px solid rgba(113, 157, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto;
}

.vision-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
                0 0 60px rgba(113, 157, 255, 0.5),
                0 0 100px rgba(168, 197, 255, 0.3);
}

.vision-text {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
}

.vision-text p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.tokenomics {
    padding: 6rem 0;
    background: transparent;
    scroll-margin-top: 100px;
}

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

.tokenomics-item {
    text-align: center;
    padding: 2rem;
    background: rgba(10, 10, 20, 0.6);
    border-radius: 20px;
    border: 1px solid rgba(113, 157, 255, 0.25);
    transition: var(--transition);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(113, 157, 255, 0.1);
}

.tokenomics-item:hover {
    border-color: rgba(113, 157, 255, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tokenomics-item h3 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
}

.large-number {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.tokenomics-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.roadmap {
    padding: 4rem 0 6rem;
    background: transparent;
    scroll-margin-top: 100px;
}

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

.phase {
    padding: 2rem;
    background: rgba(10, 10, 20, 0.6);
    border-radius: 20px;
    border-left: 4px solid rgba(113, 157, 255, 0.6);
    border: 1px solid rgba(113, 157, 255, 0.25);
    border-left: 4px solid rgba(113, 157, 255, 0.6);
    transition: var(--transition);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(113, 157, 255, 0.1);
}

.phase:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.phase h3 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
}

.phase p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

.footer {
    padding: 4rem 0 2rem;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    opacity: 0.9;
}

.social-links {
    margin-bottom: 2rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.social-link-icon {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    background: rgba(10, 10, 20, 0.6);
    border: 1px solid rgba(113, 157, 255, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-link-icon:hover,
.social-link-icon:focus {
    background: rgba(113, 157, 255, 0.2);
    border-color: rgba(113, 157, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(113, 157, 255, 0.4);
}

.social-link-icon svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.disclaimer {
    color: var(--text-muted);
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    margin: 1rem auto;
    line-height: 1.6;
    max-width: 800px;
}

.copyright {
    color: var(--text-muted);
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .hero .container {
        gap: 3rem;
    }
    
}

@media (max-width: 768px) {
    .navbar .container {
        grid-template-columns: 1fr auto;
        justify-items: start;
    }

    .logo-img {
        height: 35px;
        max-width: 120px;
    }

    .mobile-nav-right {
        display: flex !important;
        align-items: center;
        gap: 0.75rem;
        justify-self: end;
        position: relative;
        z-index: 100;
    }

    .mobile-search-btn {
        display: flex !important;
        width: 40px;
        height: 40px;
        padding: 0;
        flex-shrink: 0;
    }

    .mobile-menu-toggle {
        display: flex !important;
        flex-shrink: 0;
        z-index: 10000 !important;
        position: relative !important;
        pointer-events: auto !important;
        border-radius: 50% !important;
        width: 44px !important;
        height: 44px !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .nav-brand {
        justify-self: start;
    }

    .nav-actions {
        display: none !important;
        visibility: hidden;
    }

    .btn-nav-buy {
        display: none !important;
    }

    .btn-nav-search:not(.mobile-search-btn) {
        display: none !important;
        visibility: hidden;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background-color: #000000;
        background-image: url('img/wel-background.jpeg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        background-repeat: no-repeat;
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        padding-bottom: 3rem;
        transform: translateX(-100%);
        transition: var(--transition);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
                    0 -5px 20px rgba(0, 0, 0, 0.1) inset;
        z-index: 9998;
    }
    
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: -1;
        pointer-events: none;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 40px;
        background: linear-gradient(to bottom, transparent 0%, rgba(26, 26, 46, 0.98) 100%);
        pointer-events: none;
        z-index: 9999;
    }

    .nav-menu li.mobile-social-item {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem 1rem;
        margin: 0;
        border-top: 1px solid rgba(113, 157, 255, 0.2);
        min-height: 50px;
    }
    
    .nav-menu li.mobile-social-item .mobile-social-link {
        background: transparent !important;
        border: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        width: auto;
        height: auto;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
    
    .nav-menu li.mobile-social-item .mobile-social-link svg {
        display: block;
        margin: 0 auto;
    }
    
    .nav-menu li.mobile-social-item .mobile-social-link:hover,
    .nav-menu li.mobile-social-item .mobile-social-link:focus {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        transform: none;
    }

    .nav-menu li.mobile-buy-item {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 1.5rem;
        padding: 1rem;
        padding-bottom: 0.5rem;
        border-top: 1px solid rgba(113, 157, 255, 0.2);
        min-height: 70px;
    }

    .mobile-buy-link {
        display: block;
        padding: 0.6rem 1.5rem;
        background: var(--gradient);
        color: var(--text-color);
        text-decoration: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.9rem;
        text-align: center;
        transition: var(--transition);
        border: 2px solid transparent;
        margin: 0 auto;
        max-width: fit-content;
        line-height: 1.2;
        width: auto;
    }

    .mobile-buy-link:hover,
    .mobile-buy-link:focus {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(113, 157, 255, 0.5);
        border-color: rgba(113, 157, 255, 0.5);
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        width: 100%;
    }

    .nav-menu a::after {
        display: none;
    }

    .mobile-buy-btn {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .btn-nav-buy-mobile {
        display: block;
        padding: 1rem 2rem;
        background: var(--gradient);
        color: var(--text-color);
        text-decoration: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1rem;
        transition: var(--transition);
        margin: 0 auto;
        max-width: 200px;
    }

    .btn-nav-buy-mobile:hover,
    .btn-nav-buy-mobile:focus {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(113, 157, 255, 0.5);
    }


    .search-section {
        padding: 4rem 0;
    }

    .search-wrapper {
        padding: 1rem;
    }

    .search-logo-img {
        height: 50px;
        max-width: 150px;
    }

    .ai-badge-top {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
        top: -6px;
        right: -20px;
    }

    .search-subtitle {
        font-size: 0.85rem;
    }

    .search-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .search-btn {
        width: 100%;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 3rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .about-text-column .section-title {
        text-align: center;
    }

    .about-text {
        text-align: center;
    }
    
    .about-image-column {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .about-image {
        margin: 0 auto;
        width: 100%;
        max-width: 500px;
    }

    .vision-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .vision-image-column {
        order: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .vision-image {
        margin: 0 auto;
        width: 100%;
        max-width: 500px;
    }

    .vision-text-column {
        order: 2;
    }

    .vision-text-column .section-title {
        text-align: center;
    }

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

    .steps {
        grid-template-columns: 1fr;
    }

    .tokenomics-content {
        grid-template-columns: 1fr;
    }

    .roadmap-phases {
        grid-template-columns: 1fr;
    }

    .address-box {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .address-box code {
        text-align: center;
        white-space: nowrap;
        font-size: clamp(0.65rem, 2.2vw, 0.75rem);
        padding: 0.75rem 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .btn-copy {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .chart-section .container {
        padding: 0;
    }

    #dexscreener-embed {
        width: calc(100% - 30px);
        max-width: calc(100% - 30px);
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .logo-img {
        height: 60px;
        max-width: 100px;
    }

    .hero {
        padding-top: 90px;
        min-height: auto;
        padding-bottom: 2rem;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .about,
    .about-section,
    .how-to-buy,
    .tokenomics,
    .roadmap,
    .search-section,
    .chart-section {
        padding: 3rem 0;
    }

    .about-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .chart-section {
        text-align: center;
        padding-left: 0;
        padding-right: 0;
    }

    .chart-section .container {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    #dexscreener-embed {
        padding-bottom: 0;
        border-radius: 15px;
        min-height: 600px;
        height: 600px;
        margin: 15px auto;
        margin-left: auto;
        margin-right: auto;
        width: calc(100% - 30px);
        max-width: calc(100% - 30px);
        box-sizing: border-box;
        display: block;
        position: relative;
        left: 0;
        right: 0;
    }

    #dexscreener-embed iframe {
        min-height: 600px;
        height: 600px !important;
    }

    .search-wrapper {
        padding: 0.5rem;
    }

    .result-title {
        font-size: 1.1rem;
    }

    .search-logo-img {
        height: 40px;
        max-width: 120px;
    }

    .ai-badge-top {
        font-size: 0.6rem;
        padding: 0.15rem 0.35rem;
        top: -5px;
        right: -15px;
    }

    html {
        overflow-x: hidden !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        height: auto;
        min-height: 100%;
    }
    
    html, body {
        min-height: 100%;
        height: auto !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative !important;
    }
    
    body {
        position: relative !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }
    
    body > * {
        position: relative;
        z-index: 1;
    }
    
    section {
        width: 100% !important;
        max-width: 100vw !important;
        overflow: visible !important;
        position: relative !important;
        box-sizing: border-box;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* Force all sections to be visible on mobile - no animations */
    .chart-section,
    .gallery-section,
    .game-preview-section,
    .how-to-buy,
    .tokenomics,
    .roadmap,
    .diamond-tard-section,
    .ai-search-section {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        transform: none !important;
        transition: none !important;
    }
    
    /* Force animate-in class immediately on mobile */
    .chart-section.animate-in,
    .gallery-section.animate-in,
    .game-preview-section.animate-in,
    .how-to-buy.animate-in,
    .tokenomics.animate-in,
    .roadmap.animate-in,
    .diamond-tard-section.animate-in,
    .ai-search-section.animate-in {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .hero-section {
        padding: 8rem 0 3rem;
        overflow: visible !important;
        min-height: auto;
        display: block !important;
        visibility: visible !important;
    }
    
    .hero-section::before {
        top: -100%;
        height: 300%;
    }
    
    .hero-section .container {
        padding: 0 20px !important;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .hero-text-column {
        text-align: center;
        align-items: center;
        gap: 1rem;
        padding-left: 0;
        display: contents;
    }

    .hero-video-column {
        order: 2;
        width: 100%;
        padding: 0;
    }
    
    /* Reorder hero elements on mobile: Title → Video → Text → Buy Now */
    .hero-title {
        order: 1 !important;
        margin-bottom: 0.75rem;
    }
    
    .hero-video-column {
        order: 2 !important;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        order: 3 !important;
        margin-bottom: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .hero-actions {
        order: 4 !important;
        margin-top: 0.5rem;
        width: 100%;
        align-items: center;
    }
    
    .hero-content-wrapper {
        gap: 1rem;
    }
    
    /* Reorder hero elements on mobile: Title → Video → Text → Buy Now */
    .hero-content-wrapper > .hero-title {
        order: 1;
    }
    
    .hero-content-wrapper > .hero-video-column {
        order: 2;
    }
    
    .hero-content-wrapper > .hero-text-column {
        order: 3;
    }
    
    .hero-text-column .hero-title {
        order: 1;
    }
    
    .hero-text-column .hero-subtitle {
        order: 2;
    }
    
    .hero-text-column .hero-actions {
        order: 3;
    }

    .hero-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .hero-video {
        width: 100%;
        max-width: 100%;
        margin: 1.5rem 0;
    }
    
    .video-wrapper {
        border-radius: 15px;
    }
    
    .hero-trailer-video {
        width: 100%;
        border-radius: 15px;
    }

    .play-button-icon {
        width: 60px;
        height: 60px;
    }
    
    .hero-actions {
        gap: 1.5rem;
        width: 100%;
    }
    
    .hero-actions .contract-address {
        width: 100%;
        padding: 1.5rem 1rem;
    }

    .hero-text {
        gap: 1.25rem;
        padding: 0 1rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
        line-height: 1;
        margin-bottom: 0.5rem;
        text-align: center;
        order: 1;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 1rem;
        text-align: center;
        max-width: 100%;
        order: 3;
    }

    .hero-description {
        font-size: clamp(1.1rem, 4vw, 1.4rem);
        line-height: 1.5;
        padding: 0 0.5rem;
        text-align: center;
    }

    .hero-image {
        order: -1;
        margin-bottom: 1rem;
        padding-top: 50px !important;
    }

    .hero-image img {
        max-width: 85%;
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    }

    .hero-exchanges {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }

    .contract-address {
        margin-top: 2rem;
        padding: 1.5rem 1rem;
    }

    .address-box {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .address-box code {
        white-space: nowrap;
        font-size: clamp(0.6rem, 2.8vw, 0.7rem);
        padding: 0.75rem 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        text-align: center;
    }

    .btn-copy {
        width: 100%;
        white-space: nowrap;
    }

    .ai-search-section {
        margin-top: 2.5rem;
        padding: 0 0.5rem;
    }

    .search-subtitle {
        font-size: 0.8rem;
    }

    .footer-logo-img {
        height: 60px;
        max-width: 120px;
    }

    .ai-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        align-items: center;
    }

    .ai-image-preview-desktop {
        display: none;
    }

    .ai-image-preview-mobile {
        display: block;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.1);
        flex-shrink: 0;
        cursor: pointer;
        transition: var(--transition);
        order: 1;
    }

.ai-image-preview-mobile:hover {
    border-color: rgba(113, 157, 255, 0.6);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(113, 157, 255, 0.4);
}

    .ai-image-preview-mobile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .ai-header {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }

    .ai-text {
        width: 100%;
        text-align: left;
        order: 2;
    }

    .hero-search .ai-overview {
        margin-top: 1rem;
    }

    .contract-address {
        margin-top: 1.5rem;
        padding: 1.5rem 1rem;
    }

    .address-box {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .address-box code {
        white-space: nowrap;
        font-size: clamp(0.55rem, 3.2vw, 0.65rem);
        padding: 0.75rem 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        text-align: center;
    }

    .btn-copy {
        width: 100%;
        white-space: nowrap;
    }

    .exchange-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .exchange-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .image-modal {
        padding: 1rem;
    }

    .footer-logo-img {
        height: 60px;
        max-width: 150px;
    }

    .image-modal-content {
        max-width: 95%;
        max-height: 85vh;
    }

    .image-modal-close {
        top: -30px;
        right: -10px;
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .related-items {
        grid-template-columns: 1fr;
    }

    .pagination-numbers {
        gap: 0.25rem;
    }

    .page-number {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }

    .pagination-logo-img {
        height: 60px;
        max-width: 120px;
    }

    .step,
    .tokenomics-item,
    .phase {
        padding: 1.5rem;
    }

    .contract-address {
        padding: 1.5rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

/* ============================================
   GAME PREVIEW SECTION (Homepage)
   ============================================ */
/* Gallery Section */
.gallery-section {
    padding: 4rem 0;
    background: transparent;
    position: relative;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
    scroll-margin-top: 100px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.gallery-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.gallery-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(10, 10, 20, 0.6);
    border: 2px solid rgba(113, 157, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    will-change: transform;
    transform: translateZ(0);
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: translate3d(0, -8px, 0);
    box-shadow: 0 12px 40px rgba(113, 157, 255, 0.4),
                0 0 30px rgba(113, 157, 255, 0.2);
    border-color: rgba(113, 157, 255, 0.6);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    transform: translateZ(0);
}

.gallery-item:hover .gallery-image {
    transform: translateZ(0) scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    width: 100%;
}

.gallery-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.gallery-item-description {
    font-size: 1rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 3rem 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .gallery-section .container {
        width: 100%;
        max-width: 100vw;
        padding: 0 1rem;
        margin: 0 auto;
        overflow-x: hidden;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 1.5rem;
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .gallery-header {
        margin-bottom: 2rem;
        padding: 0;
        width: 100%;
    }
    
    .gallery-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        padding: 0 1rem;
    }
    
    .gallery-description {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .gallery-item {
        width: 100%;
        max-width: 100%;
        margin: 0;
        aspect-ratio: 1;
    }
    
    .gallery-item:hover {
        transform: none; /* Disable hover lift on mobile */
    }
    
    .gallery-overlay {
        opacity: 1; /* Always show overlay on mobile */
        padding: 1.5rem;
    }
    
    .gallery-item-title {
        font-size: 1.2rem;
    }
    
    .gallery-item-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 2rem 0;
    }
    
    .gallery-grid {
        gap: 1rem;
    }
    
    .gallery-header {
        margin-bottom: 1.5rem;
    }
}

/* ============================================
   DIAMOND TARD SECTION
   ============================================ */
.diamond-tard-section {
    padding: 6rem 0;
    background: transparent;
    position: relative;
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
    scroll-margin-top: 100px;
}

.diamond-tard-section.animate-in {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
}

.diamond-tard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.diamond-tard-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    background: rgba(10, 10, 20, 0.6);
    border: 2px solid rgba(113, 157, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(113, 157, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    transform: translateZ(0);
    aspect-ratio: 1;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.diamond-tard-image:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6),
                0 0 50px rgba(113, 157, 255, 0.3);
}

.diamond-tard-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 25px;
}

.diamond-tard-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.diamond-tard-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.diamond-tard-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.diamond-tard-tagline {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--highlight);
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .diamond-tard-section {
        padding: 3rem 0;
    }
    
    .diamond-tard-section .container {
        padding: 0 1rem;
    }
    
    .diamond-tard-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        max-width: 100%;
    }
    
    .diamond-tard-image {
        order: 1;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        aspect-ratio: 1;
    }
    
    .diamond-tard-text {
        order: 2;
        align-items: center;
        gap: 1.25rem;
        padding: 0 0.5rem;
    }
    
    .diamond-tard-title {
        font-size: clamp(2rem, 7vw, 2.5rem);
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }
    
    .diamond-tard-description {
        font-size: 1rem;
        line-height: 1.7;
        text-align: center;
        max-width: 100%;
    }
    
    .diamond-tard-tagline {
        font-size: 1.1rem;
        margin-top: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .diamond-tard-section {
        padding: 2.5rem 0;
    }
    
    .diamond-tard-content {
        gap: 1.75rem;
    }
    
    .diamond-tard-image {
        border-radius: 20px;
    }
    
    .diamond-tard-text {
        gap: 1rem;
        padding: 0;
    }
    
    .diamond-tard-title {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
        margin-bottom: 0.5rem;
    }
    
    .diamond-tard-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .diamond-tard-tagline {
        font-size: 1rem;
        margin-top: 0.25rem;
    }
}

.game-preview-section {
    padding: 4rem 0;
    background: transparent;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
    scroll-margin-top: 100px;
}

.game-preview-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Title, Description, and Play Button - Compact */
.game-preview-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out;
}

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

.game-preview-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -1px;
    filter: drop-shadow(0 0 2px rgba(113, 157, 255, 0.15))
            drop-shadow(0 0 4px rgba(168, 197, 255, 0.15));
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.game-preview-description {
    font-size: clamp(0.9rem, 1.5vw, 0.9rem);
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 2rem;
}

/* Top 3 Players - Below Title/Description */
.game-preview-top-players {
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.top-players-title-compact {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.5px;
}

/* Top Players Grid - Match Game Page Style */
.top-players-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.top-player-card-compact {
    background: rgba(10, 10, 20, 0.8);
    border: 2px solid rgba(113, 157, 255, 0.3);
    border-radius: 20px;
    padding: 1.25rem;
    backdrop-filter: blur(20px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.top-player-card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
}

.top-player-card-compact:hover {
    border-color: rgba(113, 157, 255, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(113, 157, 255, 0.3);
}

.top-player-rank-compact {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--highlight);
    margin-bottom: 1rem;
}

.top-player-avatar-compact {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--highlight);
    margin: 0 auto 1rem;
    display: block;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(113, 157, 255, 0.5);
}

.top-player-info-compact {
    text-align: center;
}

.top-player-name-compact {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.top-player-handle-compact {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.top-player-score-compact {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--highlight);
    background: rgba(113, 157, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    display: inline-block;
}

.top-player-placeholder-compact {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-muted);
    padding: 2rem;
    font-size: 1.1rem;
    background: rgba(10, 10, 20, 0.4);
    border: 1px solid rgba(113, 157, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

/* Features Compact */
.game-preview-actions {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.game-features-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item-compact {
    font-size: 0.9rem;
    color: var(--text-color);
    padding: 1rem 1.25rem;
    background: rgba(10, 10, 20, 0.8);
    border: 2px solid rgba(113, 157, 255, 0.3);
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

.feature-item-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
}

.feature-item-compact:hover {
    background: rgba(10, 10, 20, 0.95);
    border-color: rgba(113, 157, 255, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(113, 157, 255, 0.3);
}

.feature-item-compact:hover::before {
    opacity: 1;
}

/* Play Button - Match Game Page Style */
.game-play-btn {
    position: relative;
    padding: 1rem 2rem;
    border: 2px solid transparent;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: inherit;
    overflow: hidden;
    text-decoration: none;
    z-index: 1;
    background: var(--gradient);
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(113, 157, 255, 0.4),
                0 0 30px rgba(113, 157, 255, 0.2);
    border: 2px solid rgba(113, 157, 255, 0.5);
}

.game-play-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.game-play-btn:hover::before {
    left: 100%;
}

.game-play-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 35px rgba(113, 157, 255, 0.6),
                0 0 50px rgba(168, 197, 255, 0.4);
    border-color: rgba(113, 157, 255, 0.8);
}

.game-play-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.game-play-btn .btn-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.game-play-btn .btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    transition: width 0.3s, height 0.3s;
    pointer-events: none;
    z-index: -1;
}

.game-play-btn:hover .btn-glow {
    width: 300px;
    height: 300px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .game-preview-section {
        padding: 3rem 0;
    }
    
    .game-preview-header {
        margin-bottom: 2rem;
    }
    
    .game-preview-description {
        margin-bottom: 1.5rem;
    }
    
    .game-preview-top-players {
        margin-bottom: 2rem;
    }
    
    .top-players-title-compact {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .top-players-grid-compact {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .top-player-card-compact {
        padding: 1rem;
    }
    
    .top-player-avatar-compact {
        width: 60px;
        height: 60px;
        border-width: 2px;
    }
    
    .top-player-rank-compact {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .top-player-name-compact {
        font-size: 1rem;
    }
    
    .top-player-handle-compact {
        font-size: 0.85rem;
    }
    
    .top-player-score-compact {
        font-size: 1.2rem;
        padding: 0.4rem 0.8rem;
    }
    
    .game-features-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .feature-item-compact {
        font-size: 0.85rem;
        padding: 0.875rem 1rem;
    }
    
    .game-play-btn {
        width: 100%;
        max-width: 400px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

