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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    position: relative;
    font-size: 16px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid #808080;
    overflow-x: hidden;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 900;
    color: #808080;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 15px rgba(128, 128, 128, 0.8);
}

.nav-logo i {
    font-size: 2.2rem;
    animation: pulse 2s infinite;
}

.logo-icon-group {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.logo-bat {
    font-size: 2rem;
    color: #808080;
    text-shadow: 0 0 10px rgba(128, 128, 128, 0.8);
    transform: rotate(-15deg);
    animation: batSwing 3s ease-in-out infinite;
    z-index: 2;
}

.logo-jeet {
    font-size: 1.8rem;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    animation: jeetHit 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes batSwing {
    0%, 100% { 
        transform: rotate(-15deg) translateX(0);
    }
    50% { 
        transform: rotate(-5deg) translateX(-3px);
    }
}

@keyframes jeetHit {
    0%, 100% { 
        transform: translateX(0) scale(1);
        opacity: 1;
    }
    50% { 
        transform: translateX(5px) scale(0.9);
        opacity: 0.7;
    }
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Orbitron', monospace;
}

.nav-menu a:hover {
    color: #808080;
    text-shadow: 0 0 10px rgba(128, 128, 128, 0.5);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #808080, #666666);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    position: relative;
    z-index: 1002;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    background: 
        linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%),
        radial-gradient(circle at 20% 80%, rgba(128, 128, 128, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(128, 128, 128, 0.08) 0%, transparent 50%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 80px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="blood" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23ff0000" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23blood)"/></svg>');
    opacity: 0.4;
    animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(5px) rotate(-1deg);
    }
    75% {
        transform: translateY(-5px) rotate(0.5deg);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.token-info {
    margin-bottom: 20px;
}

.token-symbol {
    font-size: 3rem;
    font-weight: 900;
    color: #808080;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 20px rgba(128, 128, 128, 0.8);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(128, 128, 128, 0.8); }
    to { text-shadow: 0 0 30px rgba(128, 128, 128, 1), 0 0 40px rgba(128, 128, 128, 0.5); }
}

.token-name {
    font-size: 1.2rem;
    color: #cccccc;
    font-family: 'Orbitron', monospace;
    margin-bottom: 10px;
}

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

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 15px;
}

.video-play-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4);
}

.play-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.6);
}

.play-button i {
    color: black;
    font-size: 2rem;
    margin-left: 5px;
}

.video-play-overlay.hidden {
    display: none;
}

.hero-video video {
    max-width: 100%;
    max-height: 450px;
    width: 600px;
    height: 400px;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    background: rgba(0, 0, 0, 0.3);
    display: block;
    margin: 0 auto;
}

.hero-video video:hover {
    border-color: rgba(255, 215, 0, 0.6);
    transform: scale(1.02);
    transition: all 0.3s ease;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Orbitron', monospace;
}

.highlight {
    color: #808080;
    text-shadow: 0 0 30px rgba(128, 128, 128, 0.8);
    animation: glow 2s ease-in-out infinite alternate;
    font-weight: 900;
    letter-spacing: 2px;
}

.coin-text {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    font-weight: 700;
    letter-spacing: 1px;
    animation: coinGlow 3s ease-in-out infinite alternate;
}

@keyframes coinGlow {
    from { 
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
        color: #ffffff;
    }
    to { 
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.3);
        color: #f0f0f0;
    }
}

    .hero-subtitle {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        color: #cccccc;
        font-weight: 300;
        font-family: 'Orbitron', monospace;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

.contract-address {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #808080;
    font-weight: 500;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 10px rgba(128, 128, 128, 0.5);
    background: rgba(128, 128, 128, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(128, 128, 128, 0.3);
    display: inline-block;
    letter-spacing: 0.5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all;
    max-width: 100%;
    box-sizing: border-box;
    line-height: 1.4;
}

.negan-image-container {
    margin: 40px 0;
    position: relative;
    display: block;
    text-align: center;
    width: 100%;
    padding: 0;
}

.negan-image {
    width: 450px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 20px;
    border: 4px solid #ffd700;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

.negan-image::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -20px;
    right: -20px;
    height: 60px;
    background: 
        radial-gradient(ellipse at 20% 100%, rgba(255, 69, 0, 0.9) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(255, 165, 0, 0.8) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(255, 107, 53, 0.9) 0%, transparent 50%),
        linear-gradient(to top, rgba(255, 69, 0, 0.8) 0%, rgba(255, 165, 0, 0.6) 50%, transparent 100%);
    border-radius: 50% 50% 0 0;
    z-index: -1;
    animation: realFire 1.2s ease-in-out infinite alternate;
    filter: blur(0.5px);
}

.negan-image::after {
    content: '';
    position: absolute;
    top: -40px;
    left: -10px;
    right: -10px;
    height: 40px;
    background: 
        radial-gradient(ellipse at 30% 100%, rgba(255, 255, 255, 0.9) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 100%, rgba(255, 255, 255, 0.7) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.8) 0%, transparent 40%);
    border-radius: 50% 50% 0 0;
    z-index: -1;
    animation: fireCore 0.8s ease-in-out infinite alternate;
    filter: blur(0.3px);
}



.negan-image::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(45deg, #808080, #666666, #808080);
    border-radius: 20px;
    z-index: -1;
    animation: greenBorder 2s ease-in-out infinite;
}

.negan-image:hover {
    transform: scale(1.05);
}

@keyframes realFire {
    0% {
        transform: scaleY(1) scaleX(1);
        background: 
            radial-gradient(ellipse at 20% 100%, rgba(255, 69, 0, 0.9) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 100%, rgba(255, 165, 0, 0.8) 0%, transparent 50%),
            radial-gradient(ellipse at 50% 100%, rgba(255, 107, 53, 0.9) 0%, transparent 50%),
            linear-gradient(to top, rgba(255, 69, 0, 0.8) 0%, rgba(255, 165, 0, 0.6) 50%, transparent 100%);
    }
    25% {
        transform: scaleY(1.1) scaleX(0.95);
        background: 
            radial-gradient(ellipse at 25% 100%, rgba(255, 69, 0, 0.9) 0%, transparent 50%),
            radial-gradient(ellipse at 75% 100%, rgba(255, 165, 0, 0.8) 0%, transparent 50%),
            radial-gradient(ellipse at 45% 100%, rgba(255, 107, 53, 0.9) 0%, transparent 50%),
            linear-gradient(to top, rgba(255, 69, 0, 0.8) 0%, rgba(255, 165, 0, 0.6) 50%, transparent 100%);
    }
    50% {
        transform: scaleY(0.9) scaleX(1.05);
        background: 
            radial-gradient(ellipse at 30% 100%, rgba(255, 69, 0, 0.9) 0%, transparent 50%),
            radial-gradient(ellipse at 70% 100%, rgba(255, 165, 0, 0.8) 0%, transparent 50%),
            radial-gradient(ellipse at 40% 100%, rgba(255, 107, 53, 0.9) 0%, transparent 50%),
            linear-gradient(to top, rgba(255, 69, 0, 0.8) 0%, rgba(255, 165, 0, 0.6) 50%, transparent 100%);
    }
    75% {
        transform: scaleY(1.05) scaleX(0.98);
        background: 
            radial-gradient(ellipse at 15% 100%, rgba(255, 69, 0, 0.9) 0%, transparent 50%),
            radial-gradient(ellipse at 85% 100%, rgba(255, 165, 0, 0.8) 0%, transparent 50%),
            radial-gradient(ellipse at 55% 100%, rgba(255, 107, 53, 0.9) 0%, transparent 50%),
            linear-gradient(to top, rgba(255, 69, 0, 0.8) 0%, rgba(255, 165, 0, 0.6) 50%, transparent 100%);
    }
    100% {
        transform: scaleY(1) scaleX(1);
        background: 
            radial-gradient(ellipse at 20% 100%, rgba(255, 69, 0, 0.9) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 100%, rgba(255, 165, 0, 0.8) 0%, transparent 50%),
            radial-gradient(ellipse at 50% 100%, rgba(255, 107, 53, 0.9) 0%, transparent 50%),
            linear-gradient(to top, rgba(255, 69, 0, 0.8) 0%, rgba(255, 165, 0, 0.6) 50%, transparent 100%);
    }
}

@keyframes fireCore {
    0% {
        transform: scaleY(1) scaleX(1);
        opacity: 0.9;
        background: 
            radial-gradient(ellipse at 30% 100%, rgba(255, 255, 255, 0.9) 0%, transparent 40%),
            radial-gradient(ellipse at 70% 100%, rgba(255, 255, 255, 0.7) 0%, transparent 40%),
            radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.8) 0%, transparent 40%);
    }
    25% {
        transform: scaleY(1.2) scaleX(0.9);
        opacity: 1;
        background: 
            radial-gradient(ellipse at 35% 100%, rgba(255, 255, 255, 0.9) 0%, transparent 40%),
            radial-gradient(ellipse at 65% 100%, rgba(255, 255, 255, 0.7) 0%, transparent 40%),
            radial-gradient(ellipse at 45% 100%, rgba(255, 255, 255, 0.8) 0%, transparent 40%);
    }
    50% {
        transform: scaleY(0.8) scaleX(1.1);
        opacity: 0.8;
        background: 
            radial-gradient(ellipse at 40% 100%, rgba(255, 255, 255, 0.9) 0%, transparent 40%),
            radial-gradient(ellipse at 60% 100%, rgba(255, 255, 255, 0.7) 0%, transparent 40%),
            radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.8) 0%, transparent 40%);
    }
    75% {
        transform: scaleY(1.1) scaleX(0.95);
        opacity: 0.95;
        background: 
            radial-gradient(ellipse at 25% 100%, rgba(255, 255, 255, 0.9) 0%, transparent 40%),
            radial-gradient(ellipse at 75% 100%, rgba(255, 255, 255, 0.7) 0%, transparent 40%),
            radial-gradient(ellipse at 55% 100%, rgba(255, 255, 255, 0.8) 0%, transparent 40%);
    }
    100% {
        transform: scaleY(1) scaleX(1);
        opacity: 0.9;
        background: 
            radial-gradient(ellipse at 30% 100%, rgba(255, 255, 255, 0.9) 0%, transparent 40%),
            radial-gradient(ellipse at 70% 100%, rgba(255, 255, 255, 0.7) 0%, transparent 40%),
            radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.8) 0%, transparent 40%);
    }
}



.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #aaaaaa;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 2;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 15px;
    box-sizing: border-box;
}

.highlight-text {
    color: #e8e8e8;
    font-weight: 800;
    font-size: 1.2rem;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 8px rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.diamond-text {
    color: #e8e8e8;
    font-weight: 800;
    font-size: 1.2rem;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 8px rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.spiritual-text {
    color: #e8e8e8;
    font-weight: 800;
    font-size: 1.2rem;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 8px rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.belief-text {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Orbitron', monospace;
    font-style: normal;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
    animation: beliefGlow 3s ease-in-out infinite alternate;
}

@keyframes beliefGlow {
    0% { 
        text-shadow: 0 2px 4px rgba(255, 255, 255, 0.4);
        color: #ffffff;
    }
    100% { 
        text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8), 0 0 12px rgba(255, 255, 255, 0.3);
        color: #f0f8ff;
    }
}

.moon-text {
    color: #e8e8e8;
    font-weight: 800;
    font-size: 1.2rem;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 8px rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.join-text {
    color: #ffd700;
    font-weight: 700;
    font-size: 1.3rem;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.4);
    letter-spacing: 0.5px;
    animation: joinGlow 3s ease-in-out infinite alternate;
}

.with-negan-text {
    color: #ffd700;
    font-weight: 700;
    font-size: 1.3rem;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.4);
    letter-spacing: 0.5px;
    animation: joinGlow 3s ease-in-out infinite alternate;
}

.ascend-text {
    color: #ffd700;
    font-weight: 700;
    font-size: 1.3rem;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.4);
    letter-spacing: 0.5px;
    animation: joinGlow 3s ease-in-out infinite alternate;
}

@keyframes joinGlow {
    0% { text-shadow: 0 2px 4px rgba(255, 215, 0, 0.4); }
    100% { text-shadow: 0 2px 8px rgba(255, 215, 0, 0.8), 0 0 12px rgba(255, 215, 0, 0.3); }
}



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

.price-ticker {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.price-item {
    background: rgba(128, 128, 128, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
    border: 1px solid rgba(128, 128, 128, 0.3);
    backdrop-filter: blur(10px);
    min-width: 120px;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 5px;
}

.price-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #808080;
    font-family: 'Orbitron', monospace;
}

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

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-wrap: nowrap;
    line-height: 1.2;
    min-height: 44px;
}

.btn-primary {
    background: linear-gradient(135deg, #808080, #666666);
    color: black;
    box-shadow: 0 4px 20px rgba(128, 128, 128, 0.5);
    border: 2px solid #808080;
    font-weight: 800;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(128, 128, 128, 0.7);
    background: linear-gradient(135deg, #666666, #808080);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #808080;
}

.btn-secondary:hover {
    background: #808080;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(128, 128, 128, 0.4);
}

.btn-tertiary {
    background: linear-gradient(135deg, #808080, #666666);
    color: black;
    border: 2px solid #808080;
    box-shadow: 0 4px 20px rgba(128, 128, 128, 0.4);
    font-weight: 800;
}

.btn-tertiary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(128, 128, 128, 0.6);
    background: linear-gradient(135deg, #666666, #808080);
}

.btn-spiritual {
    background: linear-gradient(135deg, #808080, #666666);
    color: black;
    border: 2px solid #808080;
    position: relative;
    overflow: hidden;
    font-weight: 800;
}

.btn-spiritual::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;
}

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

.btn-spiritual:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(128, 128, 128, 0.6);
    background: linear-gradient(135deg, #666666, #808080);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: #808080;
    font-size: 1.5rem;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #808080;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 20px rgba(128, 128, 128, 0.6);
}

.section-header p {
    font-size: 1.3rem;
    color: #cccccc;
    font-family: 'Orbitron', monospace;
}

/* Spiritual Journey Section */
.spiritual {
    background: 
        linear-gradient(135deg, #1a0a1a 0%, #0a0a0a 50%, #1a0a1a 100%),
        radial-gradient(circle at 30% 20%, rgba(128, 128, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.spiritual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23808080" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.5;
    animation: starFloat 20s ease-in-out infinite;
}

@keyframes starFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
}

.spiritual-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.spiritual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.spiritual-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(128, 128, 128, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.spiritual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.spiritual-card:hover::before {
    opacity: 1;
}

.spiritual-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.spiritual-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: white;
    position: relative;
    z-index: 1;
    animation: spiritualPulse 3s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

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

.spiritual-card h3 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.spiritual-card p {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    position: relative;
    z-index: 1;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.belief-manifesto {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.belief-manifesto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.05), transparent, rgba(0, 255, 255, 0.05));
    animation: manifestoGlow 4s ease-in-out infinite;
}

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

.manifesto-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.manifesto-header i {
    font-size: 2rem;
    color: #ffd700;
    animation: scrollFloat 2s ease-in-out infinite;
}

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

.manifesto-header h3 {
    color: #ffd700;
    font-size: 1.8rem;
    font-family: 'Orbitron', monospace;
    margin: 0;
}

.manifesto-content {
    position: relative;
    z-index: 1;
}

.manifesto-content p {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 1.3rem;
    line-height: 1.8;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.2);
}

.manifesto-content strong {
    color: #ffd700;
    font-weight: 700;
}

.manifesto-signature {
    text-align: right;
    font-style: italic;
    color: #ff6b35 !important;
    font-weight: 700;
    margin-top: 30px;
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-right: 20px;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.3);
    transform: rotate(-2deg);
}

.manifesto-signature::before {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    border-radius: 1px;
}

.manifesto-signature::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 0;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.5), transparent);
    border-radius: 1px;
}

/* Jeet Game Section */
.jeet-game {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 100%);
    position: relative;
    overflow: hidden;
}

.jeet-game::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.game-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.game-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.score-board {
    margin-bottom: 30px;
}

.score-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.score-label {
    color: #cccccc;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
}

.score-value {
    color: #ff6b35;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
}

.game-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.game-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.game-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.game-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.game-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#gameCanvas {
    border: 3px solid #ff6b35;
    border-radius: 15px;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
    max-width: 100%;
    height: auto;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.game-message {
    text-align: center;
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 90%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.game-message h3 {
    color: #ff6b35;
    margin-bottom: 8px;
    font-size: 1.5rem;
    font-family: 'Orbitron', monospace;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.game-message p {
    margin-bottom: 8px;
    font-size: 1rem;
    color: #cccccc;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.game-message .game-btn {
    margin-top: 10px;
    align-self: center;
}

.game-instructions {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.08));
    padding: 30px 40px;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 107, 53, 0.4);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.game-instructions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ff6b35);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.game-instructions h3 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-family: 'Orbitron', monospace;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 3px 6px rgba(255, 107, 53, 0.4);
    font-weight: 900;
    position: relative;
}

.game-instructions h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.game-instructions ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.game-instructions li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #f0f0f0;
    font-size: 1.1rem;
    line-height: 1.4;
    padding: 10px 14px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border-left: 3px solid #ff6b35;
    transition: all 0.3s ease;
}

.game-instructions li:hover {
    background: rgba(255, 107, 53, 0.15);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.game-instructions i {
    color: #ff6b35;
    font-size: 1.4rem;
    width: 30px;
    text-align: center;
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.5);
}

/* Mobile Controls */
.mobile-controls {
    display: none;
    position: relative;
    margin-top: 20px;
    z-index: 100;
    gap: 8px;
    justify-content: center;
}

.mobile-control-row {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.mobile-btn {
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: rgba(128, 128, 128, 0.9);
    color: white;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.mobile-btn:active {
    transform: scale(0.95);
    background: rgba(128, 128, 128, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mobile-btn:hover {
    background: rgba(128, 128, 128, 1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Specific arrow positioning for better control */
.mobile-btn-left {
    margin-right: 60px;
}

.mobile-btn-right {
    margin-left: 60px;
}

/* Tokenomics Section */
.tokenomics {
    background: linear-gradient(135deg, #1a0a1a 0%, #0a0a0a 100%);
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

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

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

.tokenomics-card:hover {
    transform: translateY(-10px);
    border-color: #808080;
    box-shadow: 0 15px 40px rgba(128, 128, 128, 0.2);
}

.tokenomics-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #808080, #666666);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.tokenomics-card h3 {
    color: #808080;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-family: 'Orbitron', monospace;
}

.tokenomics-value {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: 'Orbitron', monospace;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
    text-align: center;
}

.tokenomics-card p {
    color: #cccccc;
    line-height: 1.6;
}

.jeets-warning {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
    border: 2px solid #ff4444;
}

.warning-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.jeets-warning h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: 'Orbitron', monospace;
}

.jeets-warning p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.jeets-meme {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    animation: bounce 1s infinite;
}

/* Roadmap Section */
.roadmap {
    background: #0a0a0a;
}

.roadmap-content {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: space-between;
}

.roadmap-phase {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(128, 128, 128, 0.2);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 250px;
}

.roadmap-phase:hover {
    transform: translateY(-10px);
    border-color: #808080;
    box-shadow: 0 15px 35px rgba(128, 128, 128, 0.3);
}

.phase-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #808080, #666666);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
    font-size: 1.5rem;
    font-family: 'Orbitron', monospace;
    flex-shrink: 0;
}

.phase-content h3 {
    color: #808080;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-family: 'Orbitron', monospace;
}

.phase-content ul {
    list-style: none;
}

.phase-content li {
    margin-bottom: 8px;
    color: #cccccc;
    font-size: 1.1rem;
}

/* Community Section */
.community {
    background: linear-gradient(135deg, #1a0a1a 0%, #0a0a0a 100%);
}

.community-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

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

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #808080;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #808080;
    margin-bottom: 10px;
    font-family: 'Orbitron', monospace;
}

.stat-label {
    color: #cccccc;
    font-size: 1rem;
    font-family: 'Orbitron', monospace;
}

.community-benefits {
    text-align: center;
}

.community-benefits h3 {
    color: #808080;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-family: 'Orbitron', monospace;
    text-align: center;
}

.community-benefits ul {
    list-style: none;
    text-align: center;
}

.community-benefits li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #cccccc;
    font-size: 1.1rem;
    text-align: center;
}

.community-benefits i {
    color: #808080;
    font-size: 1.2rem;
}

.social-links-section {
    text-align: center;
}

.social-links-section h3 {
    color: #808080;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-family: 'Orbitron', monospace;
}

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

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
}

.social-btn.telegram {
    background: linear-gradient(135deg, #0088cc, #00aaff);
}

.social-btn.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.social-btn.discord {
    background: linear-gradient(135deg, #7289da, #5865f2);
}

.social-btn.reddit {
    background: linear-gradient(135deg, #808080, #666666);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Buy Section */
.buy {
    background: #0a0a0a;
}

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

.buy-steps h3 {
    color: #808080;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-family: 'Orbitron', monospace;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #808080, #666666);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    font-family: 'Orbitron', monospace;
}

.step-content h4 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-family: 'Orbitron', monospace;
}

.step-content p {
    color: #cccccc;
    line-height: 1.6;
}

.buy-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(128, 128, 128, 0.2);
    width: 100%;
    box-sizing: border-box;
}

.contract-info h3 {
    color: #808080;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-family: 'Orbitron', monospace;
    word-wrap: break-word;
}

.contract-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    min-height: 40px;
}

.contract-label {
    color: #cccccc;
    font-weight: 600;
    min-width: 120px;
    word-wrap: break-word;
}

.contract-value {
    color: #808080;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all;
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.4;
}

.copy-btn {
    background: none;
    border: none;
    color: #808080;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(128, 128, 128, 0.2);
    transform: scale(1.1);
}

.buy-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
}

.buy-btn.uniswap {
    background: linear-gradient(135deg, #ff007a, #ff6b35);
}

.buy-btn.pancakeswap {
    background: linear-gradient(135deg, #d1884f, #f7931e);
}

.buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #000000;
    padding: 60px 0 20px;
    border-top: 2px solid #ff6b35;
}

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

.footer-section h4 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-family: 'Orbitron', monospace;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 10px;
}

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

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

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

.footer-section ul li a:hover {
    color: #ff6b35;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaaaaa;
    font-family: 'Orbitron', monospace;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .nav-menu {
        display: none !important;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        z-index: 9999;
        padding: 40px 20px 20px 20px;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: block !important;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 10px 0;
        list-style: none;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 16px 20px;
        color: #ffffff !important;
        text-decoration: none;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        font-size: 1.1rem;
        font-weight: 500;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 107, 53, 0.3);
        border-color: #ff6b35;
        transform: translateY(-2px);
    }
    
    .hamburger {
        display: flex !important;
        z-index: 10000;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .token-symbol {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .negan-image {
        width: 280px;
        height: auto;
        max-width: 100%;
        object-fit: contain;
        border-radius: 18px;
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    }
    
    .negan-image-container {
        margin: 30px 0;
        padding: 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 15px;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 15px 20px;
        font-size: 0.8rem;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        gap: 5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        flex-wrap: nowrap;
        line-height: 1.2;
        min-height: 44px;
    }
    
    .price-ticker {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin: 15px 0;
        width: 100%;
    }
    
    .price-item {
        width: 100%;
        max-width: 250px;
        padding: 10px 15px;
        text-align: center;
        box-sizing: border-box;
    }
    
    .tokenomics-content,
    .community-content,
    .buy-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
        width: 100%;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
    }
    
    .tokenomics-card {
        padding: 15px;
        min-height: auto;
        width: 100%;
        box-sizing: border-box;
    }
    
    .community-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
    }
    
    .stat-item {
        padding: 12px;
        text-align: center;
        box-sizing: border-box;
    }
    
    .roadmap-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .roadmap-phase {
        min-width: auto;
        width: 100%;
        padding: 20px;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }
    
    .social-btn {
        width: 100%;
        max-width: 220px;
        padding: 12px 15px;
        box-sizing: border-box;
    }
    
    .spiritual-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
        width: 100%;
    }
    
    .spiritual-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
    }
    
    .spiritual-card {
        min-height: 200px;
        padding: 15px 12px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .spiritual-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
        word-wrap: break-word;
    }
    
    .spiritual-card p {
        font-size: 0.85rem;
        line-height: 1.4;
        word-wrap: break-word;
    }
    
    .spiritual-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .hero-video video {
        width: 100%;
        height: 200px;
        max-height: 200px;
        max-width: 100%;
        box-shadow: none;
        filter: none;
        object-fit: cover;
        background-image: url('cover.jpeg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .video-play-overlay {
        display: none !important;
    }
    
    .game-container {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 8px;
        width: 100%;
    }
    
    #gameCanvas {
        width: 800px;
        height: 400px;
        max-width: 100%;
    }
    
    .mobile-controls {
        display: block;
        gap: 12px;
    }
    
    .mobile-control-row {
        gap: 12px;
    }
    
    .mobile-btn-left {
        margin-right: 20px;
    }
    
    .mobile-btn-right {
        margin-left: 20px;
    }
    
    .game-area {
        position: relative;
    }
    
    .game-instructions {
        padding: 20px 25px;
        max-width: 100%;
        margin: 0 10px;
    }
    
    .game-message {
        padding: 15px;
        max-width: 95%;
    }
    
    .game-message h3 {
        font-size: 1.3rem;
    }
    
    .game-message p {
        font-size: 0.9rem;
    }
    
    .game-instructions h3 {
        font-size: 1.3rem;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }
    
    .game-instructions li {
        font-size: 0.95rem;
        padding: 8px 10px;
        gap: 10px;
    }
    
    .game-instructions i {
        font-size: 1rem;
        width: 20px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.8;
        padding: 0 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contract-address {
        font-size: 0.85rem;
        padding: 8px 12px;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-all;
        max-width: 100%;
        box-sizing: border-box;
        display: block;
        text-align: center;
        line-height: 1.4;
        letter-spacing: 0.3px;
    }
    
    .highlight-text,
    .diamond-text,
    .spiritual-text,
    .moon-text {
        font-size: 1rem;
        letter-spacing: 0.5px;
        line-height: 1.4;
    }
    
    .belief-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    
    .container {
        padding: 0 8px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .token-symbol {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .negan-image {
        width: 220px;
        height: auto;
        max-width: 100%;
        object-fit: contain;
        border-radius: 16px;
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    }
    
    .negan-image-container {
        margin: 25px 0;
        padding: 0;
    }
    
    .btn {
        padding: 12px 15px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 250px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        flex-wrap: nowrap;
        line-height: 1.2;
        min-height: 44px;
    }
    
    .hero-buttons {
        gap: 10px;
        margin-top: 12px;
    }
    
    .price-ticker {
        gap: 8px;
        margin: 12px 0;
    }
    
    .price-item {
        max-width: 200px;
        padding: 8px 12px;
    }
    
    .price-value {
        font-size: 1rem;
    }
    
    .tokenomics-card,
    .buy-form {
        padding: 8px;
        width: 100%;
        box-sizing: border-box;
        margin: 0;
    }
    
    .tokenomics-value {
        font-size: 1.2rem;
        line-height: 1.1;
        word-wrap: break-word;
    }
    
    .jeets-warning {
        padding: 15px 12px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .mobile-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .game-instructions {
        padding: 10px 12px;
        margin: 0 3px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .game-message {
        padding: 8px;
        max-width: 98%;
    }
    
    .game-message h3 {
        font-size: 1rem;
    }
    
    .game-message p {
        font-size: 0.75rem;
    }
    
    .game-instructions h3 {
        font-size: 1rem;
        letter-spacing: 0.5px;
        margin-bottom: 10px;
        word-wrap: break-word;
    }
    
    .game-instructions li {
        font-size: 0.85rem;
        padding: 5px 6px;
        gap: 6px;
        word-wrap: break-word;
    }
    
    .game-instructions i {
        font-size: 0.85rem;
        width: 16px;
    }
    
    #gameCanvas {
        width: 800px;
        height: 400px;
        max-width: 100%;
    }
    
    .mobile-controls {
        margin-top: 10px;
        gap: 8px;
        width: 100%;
    }
    
    .mobile-control-row {
        gap: 8px;
    }
    
    .mobile-btn-left {
        margin-right: 15px;
    }
    
    .mobile-btn-right {
        margin-left: 15px;
    }
    
    .hero-video video {
        width: 100%;
        height: 150px;
        max-height: 150px;
        max-width: 100%;
        box-shadow: none;
        filter: none;
        object-fit: cover;
        background-image: url('cover.jpeg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .video-play-overlay {
        display: none !important;
    }
    
    .jeets-warning h3 {
        font-size: 1.2rem;
        word-wrap: break-word;
    }
    
    .hero-description {
        font-size: 0.8rem;
        line-height: 1.4;
        padding: 0 8px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .nav-menu.active {
        padding: 15px;
    }
    
    .nav-menu.active a {
        font-size: 1rem;
        padding: 12px 15px;
    }
    
    .contract-address {
        font-size: 0.85rem;
        padding: 8px 10px;
        margin-bottom: 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-all;
        max-width: 100%;
        box-sizing: border-box;
        display: block;
        text-align: center;
        line-height: 1.4;
        letter-spacing: 0.2px;
        background: rgba(128, 128, 128, 0.15);
        border-radius: 6px;
        border: 1px solid rgba(128, 128, 128, 0.4);
    }
    
    .highlight-text,
    .diamond-text,
    .spiritual-text,
    .moon-text {
        font-size: 1rem;
        letter-spacing: 0.1px;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .belief-text {
        font-size: 1rem;
        line-height: 1.4;
        word-wrap: break-word;
    }
    
    .manifesto-signature {
        font-size: 1.8rem;
        margin-top: 25px;
        padding-right: 15px;
        transform: rotate(-1deg);
    }
    
    .manifesto-signature::before {
        width: 100px;
        bottom: -6px;
    }
    
    .manifesto-signature::after {
        width: 70px;
        bottom: -10px;
    }
    
    .manifesto-content p {
        font-size: 1.1rem;
        line-height: 1.7;
        letter-spacing: 0.3px;
        color: #ffffff;
        font-family: 'Roboto', sans-serif;
        font-weight: 400;
    }
    
    .spiritual-card {
        min-height: 180px;
        padding: 12px 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .spiritual-card h3 {
        font-size: 0.95rem;
        margin-bottom: 8px;
        word-wrap: break-word;
    }
    
    .spiritual-card p {
        font-size: 0.8rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .spiritual-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .tokenomics-value {
        font-size: 1.1rem;
        line-height: 1.1;
        word-wrap: break-word;
    }
    
    .community-stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .stat-item {
        padding: 10px;
    }
    
    .social-btn {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
        word-wrap: break-word;
    }
    
    .section-header p {
        font-size: 0.85rem;
        word-wrap: break-word;
    }
    
    .contract-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 8px;
        margin-bottom: 8px;
        width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .contract-label {
        min-width: auto;
        font-size: 0.75rem;
        width: 100%;
        font-weight: 600;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .contract-value {
        font-size: 0.55rem;
        word-break: break-all;
        width: 100%;
        line-height: 1.2;
        letter-spacing: 0.1px;
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .step-content p {
        font-size: 0.65rem;
        line-height: 1.3;
        word-break: break-all;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .copy-btn {
        align-self: flex-end;
        margin-top: 5px;
    }
    
    .contract-info {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
        margin: 0;
    }
    
    .contract-info h3 {
        font-size: 1rem;
        margin-bottom: 10px;
        word-wrap: break-word;
    }
}

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

.tokenomics-card,
.stat-item,
.roadmap-phase {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

/* Main wrapper to keep everything centered */
body > * {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Global fix for mobile zoom issues */
* {
    max-width: 100%;
    box-sizing: border-box;
}

/* Ensure sections don't overflow */
section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #ff6b35;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f7931e;
}

/* Mobile Navigation Styles */
.nav-menu.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    padding: 20px;
    backdrop-filter: blur(10px);
    border-top: 2px solid #ff6b35;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.3s ease-out;
    min-height: 200px;
}

.nav-menu.active ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.nav-menu.active li {
    margin: 8px 0;
    width: 100%;
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-menu.active li {
    margin: 10px 0;
    text-align: center;
    list-style: none;
    width: 100%;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-menu.active a {
    font-size: 1.1rem;
    padding: 15px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block !important;
    width: 100%;
    color: #ffffff !important;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-menu.active a:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateX(5px);
    border-color: #ff6b35;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Touch-friendly improvements */
.btn, .game-btn, .mobile-btn, .social-btn {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn:active, .game-btn:active, .mobile-btn:active, .social-btn:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* Improved mobile scrolling */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Better mobile text selection */
::selection {
    background: rgba(255, 107, 53, 0.3);
    color: white;
}

/* Mobile-optimized animations */
/* Return to Top Button */
.return-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
}

.return-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
}

.return-to-top:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.return-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.return-to-top i {
    animation: bounce 2s infinite;
    pointer-events: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-1px); }
}

@media (max-width: 768px) {
    .return-to-top {
        bottom: 25px;
        right: 25px;
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    }
}

@media (max-width: 480px) {
    .return-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    }
}

@media (max-width: 360px) {
    .return-to-top {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

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

/* Clean Mobile Menu */
@media (max-width: 768px) {
    .nav-menu {
        display: none !important;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        z-index: 9999;
        padding: 20px;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        padding-top: 40px;
    }
    
    .nav-menu li {
        width: 100%;
        max-width: 280px;
        margin: 0;
        list-style: none;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        width: 100%;
        padding: 16px 20px;
        color: #ffffff !important;
        text-decoration: none;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        font-size: 1.1rem;
        font-weight: 500;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 107, 53, 0.2);
        border-color: #ff6b35;
        transform: translateY(-2px);
    }
    
    .hamburger {
        display: flex !important;
        z-index: 10000;
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .hamburger {
        display: none !important;
    }
    .buy-now-mobile {
        display: block;
        position: fixed;
        top: 18px;
        right: 18px;
        z-index: 10001;
    }
    .buy-now-mobile button {
        background: transparent;
        color: #808080;
        border: none;
        padding: 8px 16px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        letter-spacing: 0.5px;
        transition: color 0.2s, transform 0.2s;
        text-decoration: none;
    }
    .buy-now-mobile button:hover {
        color: #fff;
        transform: scale(1.05);
    }
    .buy-now-mobile button:active {
        color: #808080;
        transform: scale(0.95);
    }
}

@media (min-width: 769px) {
    .buy-now-mobile {
        display: none !important;
    }
} 