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

body {
    font-family: 'Arial', sans-serif;
    background: #000000;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    color: #ffffff;
    background: linear-gradient(-45deg, #6bfd6b, #03cf85, #ddff6b, #3a5fe9, #7bf1cc);
    background-size: 400% 400%;
    animation: catGradient 20s ease infinite;
    scroll-behavior: smooth;
}

@keyframes catGradient {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

/* Additional space elements */
.space-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
}

/* Simple, non-rotating stars only */
.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.25) 1px, transparent 1px),
        radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 300px 300px, 250px 250px, 280px 280px, 200px 200px, 350px 350px;
    animation: twinkle 8s ease-in-out infinite;
    will-change: opacity;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

/* FIXED LOADING SCREEN */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #6bfd6b, #03cf85, #ddff6b, #3a5fe9, #7bf1cc);
    background-size: 400% 400%;
    animation: catGradient 15s ease infinite;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    opacity: 1;
    visibility: visible;
}

.loading.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    display: none !important;
}

.spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.spinner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 6px solid rgba(255,255,255,0.2);
    border-top: 6px solid #6bfd6b;
    border-right: 6px solid #03cf85;
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    box-shadow: 
        0 0 20px rgba(107, 253, 107, 0.3),
        inset 0 0 20px rgba(107, 253, 107, 0.1);
}

.spinner::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.1);
    border-bottom: 4px solid #ddff6b;
    border-left: 4px solid #3a5fe9;
    border-radius: 50%;
    animation: spin 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite reverse;
    box-shadow: 
        0 0 15px rgba(221, 255, 107, 0.3),
        inset 0 0 15px rgba(221, 255, 107, 0.1);
}

@keyframes spin {
    0% { 
        transform: rotate(0deg) scale(1);
    }
    50% { 
        transform: rotate(180deg) scale(1.1);
    }
    100% { 
        transform: rotate(360deg) scale(1);
    }
}

.loading-text {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.5),
        0 0 20px rgba(107, 253, 107, 0.6);
    animation: pulse 2s ease-in-out infinite;
    font-family: 'Arial', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.loading-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    text-align: center;
    margin-top: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    animation: fadeInOut 3s ease-in-out infinite;
    font-family: 'Arial', sans-serif;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.05);
    }
}

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

.loading-paws {
    position: absolute;
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.loading-paws::before,
.loading-paws::after {
    content: '🐾';
    position: absolute;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    animation: rotatePaws 3s linear infinite;
}

.loading-paws::before {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.loading-paws::after {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

@keyframes rotatePaws {
    0% { 
        transform: translateX(-50%) rotate(0deg) translateY(0px);
        opacity: 0;
    }
    25% { 
        opacity: 1;
    }
    75% { 
        opacity: 1;
    }
    100% { 
        transform: translateX(-50%) rotate(360deg) translateY(0px);
        opacity: 0;
    }
}

.loading-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 6s linear infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    background: rgba(107, 253, 107, 0.6);
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 1s;
    background: rgba(3, 207, 133, 0.6);
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 2s;
    background: rgba(221, 255, 107, 0.6);
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: 3s;
    background: rgba(58, 95, 233, 0.6);
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: 4s;
    background: rgba(123, 241, 204, 0.6);
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
    background: rgba(107, 253, 107, 0.6);
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(10vh) scale(1);
    }
    100% {
        transform: translateY(0vh) scale(0);
        opacity: 0;
    }
}

/* HEADER STYLES - FIXED FOR MOBILE */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    background: transparent;
    isolation: isolate;
    transform: translateZ(0);
    will-change: transform;
}

.top-menu {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(20, 20, 20, 0.95));
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(107, 253, 107, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(107, 253, 107, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 999999;
    transform: translateZ(0);
}

.top-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(107, 253, 107, 0.1), 
        transparent);
    animation: menuShine 8s ease-in-out infinite;
}

@keyframes menuShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.top-menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8px 24px;
    position: relative;
    z-index: 10004;
}

.logo-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(20, 20, 20, 0.9));
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(107, 253, 107, 0.2);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(107, 253, 107, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 999999;
}

.logo-header.scrolled {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(20, 20, 20, 0.95));
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(107, 253, 107, 0.15);
}

.top-menu.scrolled {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98), rgba(20, 20, 20, 0.98));
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(107, 253, 107, 0.15);
    border-bottom-color: rgba(107, 253, 107, 0.5);
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 24px 30px 24px;
    position: relative;
    z-index: 999999;
}

.main-logo {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 6px 20px rgba(107, 253, 107, 0.4));
    transition: all 0.3s ease;
    animation: logoGlow 3s ease-in-out infinite alternate;
    position: relative;
    z-index: 999999;
}

.main-logo:hover {
    transform: scale(1.05) rotateY(5deg);
    filter: drop-shadow(0 8px 25px rgba(107, 253, 107, 0.6));
    animation: logoHover 0.3s ease-in-out;
}

@keyframes logoHover {
    0% { transform: scale(1) rotateY(0deg); }
    50% { transform: scale(1.08) rotateY(8deg); }
    100% { transform: scale(1.05) rotateY(5deg); }
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 6px 20px rgba(107, 253, 107, 0.4)); }
    100% { filter: drop-shadow(0 6px 20px rgba(107, 253, 107, 0.7)); }
}

/* NAVIGATION - SIMPLIFIED FOR MOBILE */
/* RESPONSIVE MOBILE NAVIGATION - Replace your navigation CSS */

/* Navigation Base Styles */
.navigation {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 999999;
    isolation: isolate;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 800;
    font-family: 'Arial', sans-serif;
    padding: 12px 18px;
    border-radius: 0;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: linear-gradient(45deg, 
        #6bfd6b, 
        #03cf85, 
        #ddff6b, 
        #3a5fe9);
    background-size: 300% 300%;
    border: 3px solid #2c3e50;
    box-shadow: 
        4px 4px 0px #2c3e50,
        inset 0 0 0 2px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0px #2c3e50;
    animation: buttonGlow 3s ease-in-out infinite;
    z-index: 10005;
}

@keyframes buttonGlow {
    0%, 100% {
        background-position: 0% 50%;
        box-shadow: 
            4px 4px 0px #2c3e50,
            inset 0 0 0 2px rgba(255, 255, 255, 0.3);
    }
    50% {
        background-position: 100% 50%;
        box-shadow: 
            4px 4px 0px #2c3e50,
            inset 0 0 0 2px rgba(255, 255, 255, 0.5),
            0 0 15px rgba(107, 253, 107, 0.4);
    }
}

.nav-item::before {
    content: '🐾';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #ddff6b;
    border: 2px solid #2c3e50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #2c3e50;
    transform: rotate(0deg) scale(0);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10006;
}

.nav-item:hover::before {
    transform: rotate(360deg) scale(1);
    background: #6bfd6b;
    box-shadow: 0 0 10px rgba(107, 253, 107, 0.8);
}

.nav-item::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10006;
}

.nav-item:hover::after {
    opacity: 1;
}

.nav-item:hover {
    transform: translateY(-4px) scale(1.05) rotate(2deg);
    background: linear-gradient(45deg, 
        #7bf1cc, 
        #6bfd6b, 
        #ddff6b, 
        #3a5fe9);
    background-size: 200% 200%;
    border-color: #6bfd6b;
    color: #ffffff;
    box-shadow: 
        8px 8px 0px #6bfd6b,
        inset 0 0 0 3px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(107, 253, 107, 0.6);
    animation: buttonGlow 1s ease-in-out infinite;
}

.nav-item:active {
    transform: translateY(2px) scale(0.98) rotate(-1deg);
    box-shadow: 
        2px 2px 0px #6bfd6b,
        inset 0 0 0 3px rgba(255, 255, 255, 0.5);
    transition: all 0.1s ease;
}

/* Mobile Burger Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 12px;
    border-radius: 12px;
    background: linear-gradient(135deg, #6bfd6b, #03cf85);
    border: 3px solid #2c3e50;
    box-shadow: 
        4px 4px 0px #2c3e50,
        0 0 15px rgba(107, 253, 107, 0.3);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000001;
    position: relative;
    overflow: hidden;
}

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

.nav-toggle:hover::before {
    left: 100%;
}

.nav-toggle:hover {
    background: linear-gradient(135deg, #7bf1cc, #6bfd6b);
    border-color: #6bfd6b;
    box-shadow: 
        6px 6px 0px #6bfd6b,
        0 0 20px rgba(107, 253, 107, 0.5);
    transform: translateY(-2px) scale(1.05);
}

.nav-toggle:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 
        2px 2px 0px #6bfd6b,
        0 0 10px rgba(107, 253, 107, 0.3);
}

/* Burger Icon Lines */
.nav-toggle span {
    width: 28px;
    height: 4px;
    background: #2c3e50;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
    box-shadow: 
        1px 1px 0px rgba(0, 0, 0, 0.3),
        inset 0 1px 0px rgba(255, 255, 255, 0.3);
    position: relative;
}

.nav-toggle span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    border-radius: 2px;
}

/* Burger Animation */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-toggle.active {
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    border-color: #ff4757;
    box-shadow: 
        4px 4px 0px #ff4757,
        0 0 20px rgba(255, 107, 107, 0.5);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation Panel */
.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95), 
        rgba(20, 20, 20, 0.95));
    backdrop-filter: blur(20px);
    border-left: 3px solid rgba(107, 253, 107, 0.6);
    box-shadow: 
        -10px 0 30px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(107, 253, 107, 0.2);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000001;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-nav-panel.active {
    right: 0;
}

/* Mobile Navigation Header */
.mobile-nav-header {
    padding: 30px 25px 20px 25px;
    border-bottom: 2px solid rgba(107, 253, 107, 0.3);
    background: linear-gradient(135deg, 
        rgba(107, 253, 107, 0.1), 
        rgba(3, 207, 133, 0.1));
    position: relative;
    overflow: hidden;
}

.mobile-nav-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(107, 253, 107, 0.1), 
        transparent);
    animation: mobileHeaderShine 3s ease-in-out infinite;
}

@keyframes mobileHeaderShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.mobile-nav-logo {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(107, 253, 107, 0.5));
    margin: 0 auto;
    display: block;
}

.mobile-nav-title {
    color: #6bfd6b;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    margin: 15px 0 5px 0;
    text-shadow: 0 2px 10px rgba(107, 253, 107, 0.5);
}

.mobile-nav-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
    flex: 1;
    padding: 30px 20px;
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-item {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    padding: 18px 25px;
    border-radius: 15px;
    background: linear-gradient(135deg, 
        rgba(107, 253, 107, 0.1), 
        rgba(3, 207, 133, 0.1));
    border: 2px solid rgba(107, 253, 107, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    text-align: center;
    transform: translateX(50px);
    opacity: 0;
}

/* Staggered animation for menu items */
.mobile-nav-panel.active .mobile-nav-item:nth-child(1) {
    animation: slideInMobile 0.4s ease-out 0.1s forwards;
}

.mobile-nav-panel.active .mobile-nav-item:nth-child(2) {
    animation: slideInMobile 0.4s ease-out 0.2s forwards;
}

.mobile-nav-panel.active .mobile-nav-item:nth-child(3) {
    animation: slideInMobile 0.4s ease-out 0.3s forwards;
}

.mobile-nav-panel.active .mobile-nav-item:nth-child(4) {
    animation: slideInMobile 0.4s ease-out 0.4s forwards;
}

.mobile-nav-panel.active .mobile-nav-item:nth-child(5) {
    animation: slideInMobile 0.4s ease-out 0.5s forwards;
}

.mobile-nav-panel.active .mobile-nav-item:nth-child(6) {
    animation: slideInMobile 0.4s ease-out 0.6s forwards;
}

.mobile-nav-panel.active .mobile-nav-item:nth-child(7) {
    animation: slideInMobile 0.4s ease-out 0.7s forwards;
}

@keyframes slideInMobile {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.mobile-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(107, 253, 107, 0.2), 
        transparent);
    transition: left 0.5s ease;
}

.mobile-nav-item:hover::before {
    left: 100%;
}

.mobile-nav-item:hover {
    background: linear-gradient(135deg, 
        rgba(107, 253, 107, 0.2), 
        rgba(3, 207, 133, 0.2));
    border-color: rgba(107, 253, 107, 0.6);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 10px 25px rgba(107, 253, 107, 0.3),
        0 0 20px rgba(107, 253, 107, 0.2);
    color: #ffffff;
    text-decoration: none;
}

.mobile-nav-item:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 
        0 5px 15px rgba(107, 253, 107, 0.3);
}

/* Mobile Navigation Footer */
.mobile-nav-footer {
    padding: 20px 25px 30px 25px;
    border-top: 2px solid rgba(107, 253, 107, 0.3);
    background: linear-gradient(135deg, 
        rgba(107, 253, 107, 0.05), 
        rgba(3, 207, 133, 0.05));
    text-align: center;
}

.mobile-nav-footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin: 0;
}

/* MOBILE RESPONSIVE BREAKPOINTS */
@media (max-width: 768px) {
    /* Hide desktop navigation */
    .nav-menu {
        display: none;
    }
    
    /* Show mobile toggle */
    .nav-toggle {
        display: flex;
    }
    
    /* Ensure proper spacing */
    .top-menu-container {
        padding: 8px 20px;
        justify-content: space-between;
    }
    
    /* Add logo to mobile if needed */
    .mobile-nav-brand {
        display: flex;
        align-items: center;
        color: #6bfd6b;
        font-weight: bold;
        font-size: 1.1rem;
        text-decoration: none;
    }
}

@media (max-width: 480px) {
    .mobile-nav-panel {
        width: 100%;
        max-width: 100vw;
    }
    
    .mobile-nav-item {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    .nav-toggle {
        padding: 10px;
    }
    
    .nav-toggle span {
        width: 24px;
        height: 3px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .mobile-nav-panel,
    .mobile-nav-overlay,
    .nav-toggle span,
    .mobile-nav-item {
        transition: none !important;
        animation: none !important;
    }
}

/* Prevent body scroll when mobile menu is open */
.mobile-nav-open {
    overflow: hidden !important;
}

/* MAIN CONTENT */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px 20px 20px;
    text-align: center;
    position: relative;
    z-index: 10007;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 5px solid rgba(255, 255, 255, 0.1);
    margin-top: 180px;
}

h1 {
    font-size: 4rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin: 20px 0;
    font-weight: bold;
}

.subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 40px;
}

/* SECTIONS - FIXED SPACING */
.section-title {
    font-size: 2.5rem;
    color: #ffffff;
    text-align: center;
    margin: 40px 0 30px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #6bfd6b, #03cf85, #ddff6b);
    border-radius: 2px;
}

/* HERO SECTION */
.hero-section {
    margin: 40px 0;
    padding: 40px;
    background: rgba(49, 49, 49, 0.384);
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
}

.hero-title {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 0px rgba(107, 253, 107, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(107, 253, 107, 0.2);
    border-color: rgba(107, 253, 107, 0.5);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #6bfd6b;
    text-shadow: 0 0 15px rgba(107, 253, 107, 0.7);
}

.stat-label {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.9;
}

/* ABOUT SECTION */
.about-section {
    margin: 40px 0;
    padding: 40px;
    background: rgba(49, 49, 49, 0.384);
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-text p {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    gap: 20px;
}

.feature-card {
    padding: 25px;
    background: rgba(49, 49, 49, 0.384);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(107, 253, 107, 0.2);
    border-color: rgba(107, 253, 107, 0.5);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #6bfd6b;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feature-card p {
    color: #ffffff;
    opacity: 0.9;
}

/* ENHANCED TOKENOMICS SECTION */
.tokenomics-section {
    margin: 40px 0;
    padding: 40px;
    background: rgba(49, 49, 49, 0.384);
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
}

.tokenomics-highlight {
    margin: 30px 0;
    padding: 0;
}

.contract-showcase {
    background: linear-gradient(135deg, 
        rgba(107, 253, 107, 0.1), 
        rgba(3, 207, 133, 0.1));
    border: 2px solid rgba(107, 253, 107, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 10px 30px rgba(107, 253, 107, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contract-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(107, 253, 107, 0.05), 
        transparent);
    animation: shimmer 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.contract-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contract-emoji {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.contract-label h3 {
    color: #6bfd6b;
    font-size: 1.8rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.contract-address-display {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin: 20px 0;
}

.contract-text {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(107, 253, 107, 0.5);
    border-radius: 12px;
    padding: 15px 20px;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: #ffffff;
    letter-spacing: 1px;
    word-break: break-all;
    max-width: 100%;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
}

.contract-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(107, 253, 107, 0.8), 
        transparent);
    animation: scanLine 3s ease-in-out infinite;
}

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

.enhanced-copy-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #6bfd6b, #03cf85);
    color: #000000;
    border: 2px solid #2c3e50;
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 
        4px 4px 0px #2c3e50,
        0 0 15px rgba(107, 253, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.enhanced-copy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.5s ease;
}

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

.enhanced-copy-button:hover {
    background: linear-gradient(135deg, #7bf1cc, #6bfd6b);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        6px 6px 0px #6bfd6b,
        0 0 25px rgba(107, 253, 107, 0.5);
}

.enhanced-copy-button:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 
        2px 2px 0px #6bfd6b,
        0 0 15px rgba(107, 253, 107, 0.3);
}

.copy-icon {
    font-size: 1.2rem;
}

.contract-verification {
    margin-top: 15px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 200, 0, 0.2);
    border: 1px solid rgba(0, 200, 0, 0.5);
    border-radius: 20px;
    padding: 8px 16px;
    color: #00ff00;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.supply-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.supply-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.supply-card:hover {
    transform: translateY(-5px);
    border-color: rgba(107, 253, 107, 0.5);
    background: linear-gradient(135deg, 
        rgba(107, 253, 107, 0.1), 
        rgba(3, 207, 133, 0.1));
    box-shadow: 0 15px 35px rgba(107, 253, 107, 0.2);
}

.supply-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.supply-card h3 {
    color: #6bfd6b;
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.supply-number {
    margin: 20px 0;
}

.big-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.currency {
    display: block;
    font-size: 1.2rem;
    color: #6bfd6b;
    font-weight: 600;
    margin-top: 5px;
    text-shadow: 0 0 10px rgba(107, 253, 107, 0.5);
}

.supply-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-style: italic;
}

.tokenomics-features {
    margin: 40px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(107, 253, 107, 0.1), 
        transparent);
    transition: left 0.5s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-3px);
    border-color: rgba(107, 253, 107, 0.4);
    background: rgba(107, 253, 107, 0.1);
    box-shadow: 0 10px 25px rgba(107, 253, 107, 0.15);
}

.feature-item .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.feature-item h4 {
    color: #6bfd6b;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-size: 0.95rem;
}

.chart-section {
    margin: 40px 0;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(107, 253, 107, 0.2);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(15px);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.chart-header h3 {
    color: #6bfd6b;
    font-size: 1.8rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

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

.chart-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(107, 253, 107, 0.2), rgba(3, 207, 133, 0.2));
    border: 1px solid rgba(107, 253, 107, 0.4);
    border-radius: 25px;
    padding: 10px 18px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.chart-link:hover {
    background: linear-gradient(135deg, rgba(107, 253, 107, 0.3), rgba(3, 207, 133, 0.3));
    border-color: rgba(107, 253, 107, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 253, 107, 0.2);
    text-decoration: none;
    color: #ffffff;
}

.quick-stats {
    margin-top: 30px;
}

.stat-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
}

.stat-label-mini {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value-mini {
    color: #6bfd6b;
    font-weight: bold;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(107, 253, 107, 0.3);
}

/* COMMUNITY SECTION - FIXED ICONS */
.community-section {
    margin: 40px 0;
    padding: 40px;
    background: rgba(49, 49, 49, 0.384);
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
    justify-items: center;
}

.community-card {
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.community-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(107, 253, 107, 0.15);
    border-color: rgba(107, 253, 107, 0.5);
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(107, 253, 107, 0.2);
}

.community-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.community-card:hover .community-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(107, 253, 107, 0.4);
    transform: scale(1.1);
}

.community-logo {
    width: 32px !important;
    height: 32px !important;
    object-fit: contain;
    filter: brightness(1) contrast(1);
    transition: all 0.3s ease;
    max-width: 32px;
    max-height: 32px;
    display: block;
}

.community-logo[src*="telegram"] {
    width: 28px !important;
    height: 28px !important;
}

.community-logo[src*="x.webp"],
.community-logo[src*="twitter"] {
    width: 30px !important;
    height: 30px !important;
}

.community-logo[src*="medium"] {
    width: 32px !important;
    height: 32px !important;
}

.community-logo[src*="dex"] {
    width: 30px !important;
    height: 30px !important;
}

.community-logo[src*=".svg"] {
    filter: brightness(1) contrast(1) saturate(1);
    width: 32px !important;
    height: 32px !important;
}

.community-card:hover .community-logo {
    transform: scale(1.1);
    filter: brightness(1.2) contrast(1.1);
}

.community-card h3 {
    color: #6bfd6b;
    margin: 10px 0 8px 0;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.community-card p {
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* JUP INVADEGRRS GAME SECTION - RESTRUCTURED */
.game-section {
    margin: 40px 0;
    padding: 40px;
    background: rgba(49, 49, 49, 0.384);
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.game-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(107, 253, 107, 0.03), 
        transparent,
        rgba(58, 95, 233, 0.03),
        transparent);
    animation: gameGlow 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gameGlow {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

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

.game-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* TOP SECTION: Story Left, Image Right */
.game-top-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.game-story-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    order: 1; /* Story on the left */
}

.game-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 3px solid rgba(107, 253, 107, 0.3);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(107, 253, 107, 0.2);
    transition: all 0.3s ease;
    order: 2; /* Image on the right */
}

.game-image-container:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(107, 253, 107, 0.6);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(107, 253, 107, 0.4);
}

.game-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
    filter: brightness(0.9) contrast(1.1);
}

.game-image-container:hover .game-image {
    filter: brightness(1) contrast(1.2);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.7), 
        rgba(107, 253, 107, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.game-image-container:hover .game-overlay {
    opacity: 1;
}

.play-button-container {
    text-align: center;
}

.play-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #6bfd6b, #03cf85);
    color: #000000;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid #2c3e50;
    box-shadow: 
        6px 6px 0px #2c3e50,
        0 0 25px rgba(107, 253, 107, 0.5);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

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

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

.play-button:hover {
    background: linear-gradient(135deg, #7bf1cc, #6bfd6b);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        8px 8px 0px #6bfd6b,
        0 0 35px rgba(107, 253, 107, 0.7);
    text-decoration: none;
    color: #000000;
}

.play-button:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 
        3px 3px 0px #6bfd6b,
        0 0 20px rgba(107, 253, 107, 0.5);
}

.play-icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.play-text {
    font-weight: 800;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.game-header h3 {
    color: #6bfd6b;
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.game-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.game-badge {
    background: linear-gradient(135deg, 
        rgba(107, 253, 107, 0.2), 
        rgba(3, 207, 133, 0.2));
    border: 1px solid rgba(107, 253, 107, 0.4);
    border-radius: 20px;
    padding: 6px 14px;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.game-badge:hover {
    background: linear-gradient(135deg, 
        rgba(107, 253, 107, 0.3), 
        rgba(3, 207, 133, 0.3));
    border-color: rgba(107, 253, 107, 0.6);
    transform: translateY(-1px);
}

.game-story {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.4), 
        rgba(20, 20, 20, 0.4));
    border: 2px solid rgba(107, 253, 107, 0.2);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.game-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(107, 253, 107, 0.6), 
        transparent);
    animation: storyGlow 4s ease-in-out infinite;
}

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

.game-story h4 {
    color: #6bfd6b;
    font-size: 1.3rem;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.story-content {
    color: #ffffff;
    line-height: 1.7;
}

.story-content p {
    margin: 0 0 15px 0;
    font-size: 1rem;
}

.story-content strong {
    color: #6bfd6b;
    text-shadow: 0 0 8px rgba(107, 253, 107, 0.3);
}

.story-content em {
    color: #ddff6b;
    font-style: italic;
    text-shadow: 0 0 8px rgba(221, 255, 107, 0.3);
}

.story-finale {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, 
        rgba(107, 253, 107, 0.1), 
        rgba(221, 255, 107, 0.1));
    border-radius: 10px;
    border: 1px solid rgba(107, 253, 107, 0.3);
    font-size: 1.1rem;
    color: #6bfd6b;
    text-shadow: 0 0 10px rgba(107, 253, 107, 0.5);
    animation: finaleGlow 3s ease-in-out infinite;
}

@keyframes finaleGlow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* BOTTOM SECTION: Full Width Features and CTA */
.game-bottom-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}

.game-features {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.game-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(107, 253, 107, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(107, 253, 107, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.game-feature:hover {
    background: rgba(107, 253, 107, 0.1);
    border-color: rgba(107, 253, 107, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 253, 107, 0.2);
}

.feature-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    flex-shrink: 0;
}

.feature-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.game-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, 
        rgba(107, 253, 107, 0.05), 
        rgba(58, 95, 233, 0.05));
    border-radius: 25px;
    border: 2px solid rgba(107, 253, 107, 0.2);
    position: relative;
    overflow: hidden;
}

.game-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(107, 253, 107, 0.1), 
        transparent);
    animation: ctaGlow 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ctaGlow {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.main-game-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #6bfd6b, #03cf85);
    color: #000000;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid #2c3e50;
    box-shadow: 
        8px 8px 0px #2c3e50,
        0 0 30px rgba(107, 253, 107, 0.5);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    z-index: 2;
    margin-bottom: 15px;
}

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

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

.main-game-button:hover {
    background: linear-gradient(135deg, #7bf1cc, #6bfd6b);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        12px 12px 0px #6bfd6b,
        0 0 50px rgba(107, 253, 107, 0.8);
    text-decoration: none;
    color: #000000;
}

.main-game-button:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        4px 4px 0px #6bfd6b,
        0 0 25px rgba(107, 253, 107, 0.5);
}

.button-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.button-text {
    font-weight: 800;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.button-arrow {
    font-size: 1.3rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.main-game-button:hover .button-arrow {
    transform: translateX(8px);
}

.game-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-style: italic;
    margin-top: 10px;
}

/* Responsive Design for Game Section */
@media (max-width: 768px) {
    .game-section {
        margin: 30px 0;
        padding: 25px;
    }
    
    .game-showcase {
        gap: 30px;
    }

    .game-top-section {
        grid-template-columns: 1fr; /* Force stack */
        gap: 30px;
    }
    
    .game-story-container {
        order: 2; /* Story below image on mobile */
    }
    
    .game-image-container {
        order: 1; /* Image above story */
    }
    
    .game-header h3 {
        font-size: 1.5rem;
    }
    
    .game-badges {
        justify-content: center;
    }
    
    .game-story {
        padding: 20px;
    }
    
    .story-content p {
        font-size: 0.95rem;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .game-feature {
        padding: 12px 15px;
    }
    
    .main-game-button {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
    
    .play-button {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .game-cta {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .game-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .game-badge {
        min-width: 120px;
        text-align: center;
    }
    
    .story-content p {
        font-size: 0.9rem;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }
    
    .main-game-button {
        flex-direction: column;
        gap: 8px;
        padding: 18px 25px;
    }
    
    .button-arrow {
        transform: rotate(90deg);
    }
    
    .main-game-button:hover .button-arrow {
        transform: rotate(90deg) translateY(3px);
    }
}
/* TWITTER FEED SECTION */
.twitter-feed-section {
    margin: 40px 0;
    padding: 40px;
    background: rgba(49, 49, 49, 0.384);
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
}

.twitter-content {
    margin-top: 30px;
}

.twitter-header {
    margin-bottom: 30px;
}

.twitter-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.twitter-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(107, 253, 107, 0.5);
    box-shadow: 0 0 15px rgba(107, 253, 107, 0.3);
}

.twitter-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.twitter-info {
    flex: 1;
}

.twitter-info h3 {
    color: #6bfd6b;
    margin: 0 0 8px 0;
    font-size: 1.4rem;
    font-weight: bold;
}

.twitter-info p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
}

.follow-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid rgba(29, 161, 242, 0.5);
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
}

.follow-button:hover {
    background: linear-gradient(135deg, #0d8bd9, #0a7bc4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 161, 242, 0.4);
    text-decoration: none;
    color: #ffffff;
}

.follow-icon {
    font-size: 1.1rem;
}

.twitter-timeline-container {
    margin: 30px 0;
    min-height: 600px;
    position: relative;
}

.twitter-timeline {
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.twitter-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.fallback-message {
    text-align: center;
    padding: 40px;
}

.fallback-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.fallback-message h4 {
    color: #6bfd6b;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.fallback-message p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.5;
}

.fallback-link {
    display: inline-block;
    background: linear-gradient(135deg, #6bfd6b, #03cf85);
    color: #000000;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #2c3e50;
    box-shadow: 4px 4px 0px #2c3e50;
}

.fallback-link:hover {
    background: linear-gradient(135deg, #7bf1cc, #6bfd6b);
    transform: translateY(-2px);
    box-shadow: 6px 6px 0px #6bfd6b;
    text-decoration: none;
    color: #000000;
}

.social-quick-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(107, 253, 107, 0.1);
    border-color: rgba(107, 253, 107, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 253, 107, 0.2);
    text-decoration: none;
    color: #ffffff;
}

.social-icon {
    font-size: 1.2rem;
}

.social-text {
    font-size: 0.95rem;
}

/* FAQ SECTION */
.faq-section {
    margin: 40px 0;
    padding: 40px;
    background: rgba(49, 49, 49, 0.384);
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
}

.faq-list {
    margin-top: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(107, 253, 107, 0.2);
    border-color: rgba(107, 253, 107, 0.5);
}

.faq-question {
    color: #6bfd6b;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.faq-answer {
    color: #ffffff;
    line-height: 1.6;
    opacity: 0.9;
}

/* GRRR ANIMATION - ALWAYS ON TOP */
.grrr-animation {
    position: fixed;
    z-index: 2147483647 !important;
    pointer-events: none;
    transition: all 3s ease-in-out;
    opacity: 0;
    isolation: isolate;
    transform: translateZ(0);
    will-change: transform, opacity;
    mix-blend-mode: normal;
}

.grrr-animation.show {
    opacity: 1 !important;
    z-index: 2147483647 !important;
    visibility: visible !important;
    pointer-events: none !important;
}

.grrr-animation img {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
    position: relative;
    z-index: 2147483647 !important;
    isolation: isolate;
    display: block !important;
    visibility: visible !important;
}

.grrr-animation.peek-bottom-left {
    bottom: -150px;
    left: -150px;
}

.grrr-animation.peek-bottom-right {
    bottom: -150px;
    right: -150px;
}

.grrr-animation.peek-bottom-center {
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%) translateZ(0);
}

.grrr-animation.peek-bottom-random1 {
    bottom: -150px;
    left: 10%;
}

.grrr-animation.peek-bottom-random2 {
    bottom: -150px;
    left: 25%;
}

.grrr-animation.peek-bottom-random3 {
    bottom: -150px;
    left: 40%;
}

.grrr-animation.peek-bottom-random4 {
    bottom: -150px;
    left: 60%;
}

.grrr-animation.peek-bottom-random5 {
    bottom: -150px;
    left: 75%;
}

.grrr-animation.peek-bottom-random6 {
    bottom: -150px;
    left: 90%;
}

.grrr-animation.show.peek-bottom-left {
    bottom: 0 !important;
    left: 20px !important;
    z-index: 2147483647 !important;
}

.grrr-animation.show.peek-bottom-right {
    bottom: 0 !important;
    right: 20px !important;
    z-index: 2147483647 !important;
}

.grrr-animation.show.peek-bottom-center {
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) translateZ(0) !important;
    z-index: 2147483647 !important;
}

.grrr-animation.show.peek-bottom-random1 {
    bottom: 0 !important;
    left: 10% !important;
    z-index: 2147483647 !important;
}

.grrr-animation.show.peek-bottom-random2 {
    bottom: 0 !important;
    left: 25% !important;
    z-index: 2147483647 !important;
}

.grrr-animation.show.peek-bottom-random3 {
    bottom: 0 !important;
    left: 40% !important;
    z-index: 2147483647 !important;
}

.grrr-animation.show.peek-bottom-random4 {
    bottom: 0 !important;
    left: 60% !important;
    z-index: 2147483647 !important;
}

.grrr-animation.show.peek-bottom-random5 {
    bottom: 0 !important;
    left: 75% !important;
    z-index: 2147483647 !important;
}

.grrr-animation.show.peek-bottom-random6 {
    bottom: 0 !important;
    left: 90% !important;
    z-index: 2147483647 !important;
}

/* CONFETTI SYSTEM */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999999;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    pointer-events: none;
    opacity: 0.9;
    border-radius: 2px;
    animation: confettiFall linear forwards;
}

.confetti-piece.color-1 {
    background: #6bfd6b;
    box-shadow: 0 0 6px rgba(107, 253, 107, 0.7);
}

.confetti-piece.color-2 {
    background: #03cf85;
    box-shadow: 0 0 6px rgba(3, 207, 133, 0.7);
}

.confetti-piece.color-3 {
    background: #ddff6b;
    box-shadow: 0 0 6px rgba(221, 255, 107, 0.7);
}

.confetti-piece.color-4 {
    background: #3a5fe9;
    box-shadow: 0 0 6px rgba(58, 95, 233, 0.7);
}

.confetti-piece.color-5 {
    background: #7bf1cc;
    box-shadow: 0 0 6px rgba(123, 241, 204, 0.7);
}

.confetti-piece.color-6 {
    background: #ffffff;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.7);
}

.confetti-piece.square {
    border-radius: 2px;
}

.confetti-piece.circle {
    border-radius: 50%;
}

.confetti-piece.rectangle {
    width: 15px;
    height: 8px;
    border-radius: 1px;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotateZ(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotateZ(720deg);
        opacity: 0;
    }
}

.confetti-piece.slow {
    animation-duration: 4s;
}

.confetti-piece.medium {
    animation-duration: 3s;
}

.confetti-piece.fast {
    animation-duration: 2s;
}

/* BIRTHDAY CELEBRATION BUTTON */
.birthday-celebration {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.birthday-celebration.show {
    opacity: 1;
    visibility: visible;
}

.birthday-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b6b, #ffd93d);
    border: 3px solid #ff4757;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 
        0 8px 25px rgba(255, 107, 107, 0.4),
        0 0 20px rgba(255, 217, 61, 0.3);
    animation: birthdayPulse 2s ease-in-out infinite;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.birthday-trigger:hover {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #ff5252, #ffeb3b);
    border-color: #ff4757;
    box-shadow: 
        0 12px 35px rgba(255, 107, 107, 0.6),
        0 0 30px rgba(255, 217, 61, 0.5);
    animation: birthdayHover 0.5s ease-in-out infinite;
}

.birthday-trigger:active {
    transform: scale(0.95);
    box-shadow: 
        0 4px 15px rgba(255, 107, 107, 0.4),
        0 0 15px rgba(255, 217, 61, 0.3);
}

.birthday-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.birthday-text {
    font-size: 0.7rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes birthdayPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 8px 25px rgba(255, 107, 107, 0.4),
            0 0 20px rgba(255, 217, 61, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 10px 30px rgba(255, 107, 107, 0.6),
            0 0 25px rgba(255, 217, 61, 0.5);
    }
}

@keyframes birthdayHover {
    0%, 100% { transform: scale(1.1) rotate(5deg); }
    50% { transform: scale(1.15) rotate(-2deg); }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
        margin-top: 160px;
    }
    
    h1 {
        font-size: 2.5rem;
        margin: 15px 0;
    }
    
    .subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 2rem;
        margin: 30px 0 20px 0;
    }
    
    .hero-section,
    .about-section,
    .tokenomics-section,
    .community-section,
    .twitter-feed-section,
    .faq-section {
        margin: 30px 0;
        padding: 25px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .supply-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .big-number {
        font-size: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .chart-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .chart-links {
        width: 100%;
        justify-content: center;
    }
    
    .stat-bar {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item-mini {
        min-width: auto;
    }
    
    .community-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 20px;
    }
    
    .community-card {
        padding: 20px 15px;
        min-height: 120px;
        max-width: none;
    }
    
    .community-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }
    
    .community-logo {
        width: 28px !important;
        height: 28px !important;
    }
    
    .community-card h3 {
        font-size: 1rem;
        margin: 8px 0 6px 0;
    }
    
    .community-card p {
        font-size: 0.85rem;
    }
    
    .twitter-profile {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 15px;
    }
    
    .twitter-avatar {
        width: 50px;
        height: 50px;
    }
    
    .twitter-info h3 {
        font-size: 1.2rem;
    }
    
    .twitter-info p {
        font-size: 0.9rem;
    }
    
    .follow-button {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .social-quick-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .social-link {
        min-width: 200px;
        justify-content: center;
    }
    
    .birthday-celebration {
        right: 20px;
        top: auto;
        bottom: 100px;
        transform: none;
    }
    
    .birthday-trigger {
        width: 60px;
        height: 60px;
        gap: 4px;
    }
    
    .birthday-icon {
        font-size: 1.2rem;
    }
    
    .birthday-text {
        font-size: 0.6rem;
    }
    
    .confetti-piece {
        width: 8px;
        height: 8px;
    }
    
    .confetti-piece.rectangle {
        width: 12px;
        height: 6px;
    }
    
    .grrr-animation img {
        width: 120px;
    }
    
    .grrr-animation.show.peek-bottom-left {
        left: 10px !important;
    }
    
    .grrr-animation.show.peek-bottom-right {
        right: 10px !important;
    }
    
    .grrr-animation.show.peek-bottom-random1 {
        left: 5% !important;
    }
    
    .grrr-animation.show.peek-bottom-random6 {
        left: 85% !important;
    }
    
    .loading-text {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .loading-subtitle {
        font-size: 0.9rem;
    }
    
    .spinner {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .spinner::before {
        border-width: 4px;
    }
    
    .spinner::after {
        top: 10px;
        left: 10px;
        width: 40px;
        height: 40px;
        border-width: 3px;
    }
    
    .loading-paws {
        width: 100px;
        height: 100px;
    }
    
    .loading-paws::before,
    .loading-paws::after {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .community-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .community-card {
        max-width: 100%;
        padding: 25px 20px;
        min-height: 100px;
    }
    
    .grrr-animation img {
        width: 100px;
    }
    
    .contract-text {
        font-size: 0.9rem;
        padding: 12px 15px;
    }
    
    .enhanced-copy-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    body {
        animation: none;
    }
    
    .grrr-animation {
        transition: opacity 0.3s ease-in-out;
    }
    
    .confetti-piece {
        animation-duration: 1s !important;
    }
    
    .birthday-trigger {
        animation: none !important;
    }
    
    .birthday-trigger:hover {
        animation: none !important;
    }
}

/* Mobile optimizations for space elements */
@media (max-width: 768px) {
    body::after {
        background-size: 80px 80px, 70px 70px, 60px 60px, 70px 70px;
    }
    
    .orbiting-moon {
        width: 8px;
        height: 8px;
    }
    
    .shooting-star {
        width: 2px;
        height: 2px;
    }
    
    .asteroid {
        width: 2px;
        height: 2px;
    }
    
    .orbiting-moon:nth-child(5) {
        animation: orbit1 12s linear infinite;
    }
    
    .orbiting-moon:nth-child(6) {
        animation: orbit2 18s linear infinite;
    }
    
    .orbiting-moon:nth-child(7) {
        animation: orbit3 10s linear infinite;
    }
    
    @keyframes orbit1 {
        0% { transform: rotate(0deg) translateX(25px) rotate(0deg); }
        100% { transform: rotate(360deg) translateX(25px) rotate(-360deg); }
    }
    
    @keyframes orbit2 {
        0% { transform: rotate(0deg) translateX(20px) rotate(0deg); }
        100% { transform: rotate(-360deg) translateX(20px) rotate(360deg); }
    }
    
    @keyframes orbit3 {
        0% { transform: rotate(0deg) translateX(30px) rotate(0deg); }
        100% { transform: rotate(360deg) translateX(30px) rotate(-360deg); }
    }
}

.mobile-menu-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.8) !important;
    z-index: 9999999 !important;
    display: none !important;
    backdrop-filter: blur(5px) !important;
}

.mobile-menu-panel {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 300px !important;
    max-width: 85vw !important;
    height: 100% !important;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(20, 20, 20, 0.95)) !important;
    backdrop-filter: blur(20px) !important;
    border-left: 3px solid #6bfd6b !important;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8) !important;
    transition: right 0.3s ease !important;
    z-index: 9999999 !important;
    overflow-y: auto !important;
    padding: 20px !important;
}

.mobile-menu-header {
    text-align: center !important;
    padding: 20px 0 !important;
    border-bottom: 2px solid rgba(107, 253, 107, 0.3) !important;
    margin-bottom: 30px !important;
}

.mobile-menu-title {
    color: #6bfd6b !important;
    font-size: 1.5rem !important;
    font-weight: bold !important;
    margin: 10px 0 !important;
    text-shadow: 0 0 10px rgba(107, 253, 107, 0.5) !important;
}

.mobile-menu-items {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.mobile-menu-item {
    margin: 15px 0 !important;
}

.mobile-menu-link {
    display: block !important;
    color: white !important;
    text-decoration: none !important;
    padding: 15px 20px !important;
    background: linear-gradient(135deg, rgba(107, 253, 107, 0.1), rgba(3, 207, 133, 0.1)) !important;
    border: 1px solid rgba(107, 253, 107, 0.3) !important;
    border-radius: 10px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
}

.mobile-menu-link:hover {
    background: linear-gradient(135deg, rgba(107, 253, 107, 0.2), rgba(3, 207, 133, 0.2)) !important;
    border-color: rgba(107, 253, 107, 0.6) !important;
    transform: translateY(-2px) !important;
    text-decoration: none !important;
    color: white !important;
}

.mobile-close-btn {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    background: #ff4757 !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 20px !important;
    cursor: pointer !important;
    z-index: 9999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Burger button styles */
.burger-menu-btn {
    display: none !important; /* Force hidden on desktop */
    flex-direction: column !important;
    cursor: pointer !important;
    padding: 10px !important;
    background: linear-gradient(135deg, #6bfd6b, #03cf85) !important;
    border: 2px solid #2c3e50 !important;
    border-radius: 8px !important;
    box-shadow: 4px 4px 0px #2c3e50 !important;
    transition: all 0.3s ease !important;
    visibility: hidden !important; /* Double protection */
    opacity: 0 !important; /* Triple protection */
}

.burger-line {
    width: 25px !important;
    height: 3px !important;
    background: #2c3e50 !important;
    margin: 3px 0 !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
}

/* MOBILE - Show burger, hide desktop menu */
@media (max-width: 768px) {
    .nav-menu {
        display: none !important;
    }
    
    .burger-menu-btn {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        left: auto !important;
    }
    
    .top-menu-container {
        justify-content: space-between !important;
        padding: 8px 20px !important;
    }
}

/* Prevent body scroll when menu open */
.menu-open {
    overflow: hidden !important;
}

/* Active states */
.mobile-menu-overlay.active {
    display: block !important;
}

.mobile-menu-panel.active {
    right: 0 !important;
}

/* FOOTER EMERGENCY FIX - Moved from inline styles */
footer.footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(20, 20, 20, 0.95)) !important;
    backdrop-filter: blur(20px) !important;
    border-top: 3px solid rgba(107, 253, 107, 0.4) !important;
    padding: 40px 0 30px 0 !important;
    margin-top: 60px !important;
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    clear: both !important;
    z-index: 1000 !important;
}

footer.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(107, 253, 107, 0.05), transparent);
    animation: footerShine 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes footerShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.footer-container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    position: relative !important;
    z-index: 2 !important;
}

.footer-content {
    text-align: center !important;
    position: relative !important;
}

.footer-disclaimer {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1)) !important;
    border: 2px solid rgba(255, 193, 7, 0.4) !important;
    border-radius: 15px !important;
    padding: 25px 30px !important;
    margin-bottom: 30px !important;
    position: relative !important;
    overflow: hidden !important;
    backdrop-filter: blur(10px) !important;
}

.disclaimer-icon {
    font-size: 2rem !important;
    margin-bottom: 15px !important;
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.6)) !important;
    display: block !important;
}

.disclaimer-text {
    color: #ffffff !important;
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    position: relative !important;
    z-index: 1 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
}

.disclaimer-text strong {
    color: #ffc107 !important;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.3) !important;
}

.footer-divider {
    height: 2px !important;
    background: linear-gradient(90deg, transparent, rgba(107, 253, 107, 0.6), transparent) !important;
    margin: 30px auto !important;
    max-width: 300px !important;
    border-radius: 1px !important;
    box-shadow: 0 0 10px rgba(107, 253, 107, 0.3) !important;
}

.footer-bottom {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.95rem !important;
}

.footer-copyright p {
    margin: 0 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
}

.footer-links {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
}

.footer-link {
    color: #6bfd6b !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    text-shadow: 0 0 10px rgba(107, 253, 107, 0.3) !important;
}

.footer-link:hover {
    color: #7bf1cc !important;
    transform: translateY(-1px) !important;
    text-shadow: 0 0 15px rgba(107, 253, 107, 0.6) !important;
    text-decoration: none !important;
}

.footer-separator {
    color: rgba(107, 253, 107, 0.5) !important;
    font-weight: bold !important;
}

.footer-cat {
    position: absolute !important;
    bottom: 10px !important;
    right: 30px !important;
    opacity: 0.3 !important;
    transition: all 0.3s ease !important;
}

.footer-cat:hover {
    opacity: 0.8 !important;
    transform: scale(1.1) !important;
}

.footer-cat-text {
    font-size: 2rem !important;
    filter: drop-shadow(0 0 10px rgba(107, 253, 107, 0.5)) !important;
    animation: footerEyeBlink 4s ease-in-out infinite !important;
}

@keyframes footerEyeBlink {
    0%, 90%, 100% { opacity: 1; }
    95% { opacity: 0.3; }
}

/* Mobile responsive */
@media (max-width: 768px) {
    footer.footer {
        padding: 30px 0 25px 0 !important;
        margin-top: 40px !important;
    }
    
    .footer-container {
        padding: 0 15px !important;
    }
    
    .footer-disclaimer {
        padding: 20px 25px !important;
        margin-bottom: 25px !important;
    }
    
    .disclaimer-text {
        font-size: 1rem !important;
    }
    
    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
    }
    
    .footer-links {
        justify-content: center !important;
        gap: 10px !important;
    }
    
    .footer-link {
        font-size: 0.85rem !important;
    }
    
    .footer-cat {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        text-align: center !important;
        margin-top: 20px !important;
        opacity: 0.5 !important;
    }
    
    .footer-cat-text {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .footer-disclaimer {
        padding: 15px 20px !important;
    }
    
    .disclaimer-text {
        font-size: 0.95rem !important;
    }
    
    .footer-links {
        flex-direction: column !important;
        gap: 8px !important;
    }
    
    .footer-separator {
        display: none !important;
    }
}

/* Additional fallback styles to ensure footer displays */
body footer,
body .footer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}