 :root { --color-primary: #00ff88; --color-secondary: #0a0a0a; --color-accent: #00ffff; --color-background: #050508; --color-text: #ffffff; --color-text-dim: #888888; --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; } * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; } body { font-family: var(--font-body); background-color: var(--color-background); color: var(--color-text); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; } .landing-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.15) 0%, rgba(5, 5, 8, 0.98) 70%); backdrop-filter: blur(10px); z-index: 10000; display: flex; align-items: center; justify-content: center; transition: opacity 0.8s ease, visibility 0.8s ease; } .landing-overlay.hidden { opacity: 0; visibility: hidden; pointer-events: none; } .landing-content { text-align: center; animation: landing-fade-in 1.2s ease-out; } @keyframes landing-fade-in { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } } .landing-hint { margin-top: 2rem; font-size: 1.1rem; color: var(--color-text-dim); animation: hint-pulse 2s ease-in-out infinite; } @keyframes hint-pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } } .card-container { perspective: 2000px; width: 380px; height: 530px; margin: 0 auto; cursor: pointer; } @media (max-width: 768px) { .card-container { width: 320px; height: 445px; } } .up-card { width: 100%; height: 100%; position: relative; transform-style: preserve-3d; transition: transform 0.3s ease; will-change: transform; animation: card-float 6s ease-in-out infinite; } @keyframes card-float { 0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); } 50% { transform: translateY(-20px) rotateX(2deg) rotateY(2deg); } } .up-card:hover { transform: scale(1.05); } .card-inner { width: 100%; height: 100%; position: relative; border-radius: 20px; overflow: hidden; background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 255, 136, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.1); transform-style: preserve-3d; } .card-back { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.2) 0%, transparent 70%); } .card-image { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 2rem; } .card-img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.6)); animation: img-breathe 4s ease-in-out infinite; } @keyframes img-breathe { 0%, 100% { transform: scale(1); filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.6)); } 50% { transform: scale(1.05); filter: drop-shadow(0 0 50px rgba(0, 255, 136, 0.9)); } } .card-holo { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; opacity: 0.5; background-image: repeating-linear-gradient( 0deg, rgba(0, 255, 136, 0.1) 0px, rgba(0, 255, 255, 0.15) 1px, transparent 2px, transparent 3px ), repeating-linear-gradient( 90deg, rgba(0, 255, 136, 0.1) 0px, rgba(0, 255, 255, 0.15) 1px, transparent 2px, transparent 3px ), linear-gradient( 180deg, rgba(0, 255, 136, 0.3) 0%, rgba(0, 255, 255, 0.3) 25%, rgba(0, 255, 136, 0.3) 50%, rgba(0, 255, 255, 0.3) 75%, rgba(0, 255, 136, 0.3) 100% ); background-size: 3px 3px, 3px 3px, 100% 100%; mix-blend-mode: screen; pointer-events: none; animation: holo-shift 3s ease-in-out infinite; } @keyframes holo-shift { 0%, 100% { background-position: 0 0, 0 0, 0 0; opacity: 0.5; } 50% { background-position: 1.5px 1.5px, 1.5px 1.5px, 0 0; opacity: 0.7; } } .card-shine { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; z-index: 3; background: linear-gradient( 135deg, transparent 20%, rgba(0, 255, 136, 0.3) 35%, rgba(0, 255, 255, 0.4) 40%, rgba(255, 255, 255, 0.5) 45%, rgba(0, 255, 255, 0.4) 50%, rgba(0, 255, 136, 0.3) 55%, transparent 70% ); mix-blend-mode: overlay; pointer-events: none; animation: shine-rotate 8s linear infinite; } @keyframes shine-rotate { 0% { transform: rotate(0deg) translateX(0); } 100% { transform: rotate(360deg) translateX(0); } } .card-glare { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 4; background: radial-gradient( circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.4) 0%, rgba(0, 255, 136, 0.3) 15%, rgba(0, 255, 255, 0.2) 30%, transparent 60% ); opacity: 0; transition: opacity 0.3s ease; pointer-events: none; mix-blend-mode: overlay; } .up-card:hover .card-glare { opacity: 1; } .card-info { position: absolute; bottom: 0; left: 0; right: 0; z-index: 5; padding: 2rem; background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 8, 0.95) 40%); text-align: center; pointer-events: none; } .card-title { font-size: 4rem; font-weight: 900; color: var(--color-primary); text-shadow: 0 0 20px var(--color-primary), 0 0 40px var(--color-primary), 0 0 60px var(--color-primary); margin-bottom: 0.5rem; letter-spacing: 0.1em; animation: title-glow-pulse 2s ease-in-out infinite; } @keyframes title-glow-pulse { 0%, 100% { text-shadow: 0 0 20px var(--color-primary), 0 0 40px var(--color-primary); } 50% { text-shadow: 0 0 30px var(--color-primary), 0 0 60px var(--color-primary), 0 0 90px var(--color-primary); } } .card-subtitle { font-size: 0.9rem; color: var(--color-text); font-weight: 600; letter-spacing: 0.15em; margin-bottom: 1.5rem; text-transform: uppercase; } .card-cta { display: inline-flex; align-items: center; gap: 0.75rem; padding: 1rem 2rem; background: rgba(0, 255, 136, 0.2); border: 2px solid var(--color-primary); border-radius: 50px; font-weight: 700; font-size: 1.1rem; color: var(--color-text); text-transform: uppercase; letter-spacing: 0.1em; box-shadow: 0 0 20px rgba(0, 255, 136, 0.4), inset 0 0 20px rgba(0, 255, 136, 0.1); animation: cta-pulse 2s ease-in-out infinite; } @keyframes cta-pulse { 0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(0, 255, 136, 0.4), inset 0 0 20px rgba(0, 255, 136, 0.1); } 50% { transform: scale(1.05); box-shadow: 0 0 40px rgba(0, 255, 136, 0.6), inset 0 0 30px rgba(0, 255, 136, 0.2); } } .cta-icon { font-size: 1.5rem; animation: icon-bounce-landing 1.5s ease-in-out infinite; } @keyframes icon-bounce-landing { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } } #three-canvas { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 0; pointer-events: none; opacity: 0.6; } .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.5rem 0; background: linear-gradient(180deg, rgba(5, 5, 8, 0.98) 0%, rgba(5, 5, 8, 0) 100%); backdrop-filter: blur(20px); } .nav-container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem; } .nav-logo-box { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(0, 255, 136, 0.05); border: 2px solid rgba(0, 255, 136, 0.3); border-radius: 8px; text-decoration: none; transition: all 0.3s ease; animation: nav-box-pulse 3s ease-in-out infinite; width: fit-content; justify-self: start; } .nav-logo-box:hover { background: rgba(0, 255, 136, 0.1); border-color: var(--color-primary); transform: scale(1.05); box-shadow: 0 0 20px rgba(0, 255, 136, 0.3); } @keyframes nav-box-pulse { 0%, 100% { border-color: rgba(0, 255, 136, 0.3); box-shadow: 0 0 10px rgba(0, 255, 136, 0.2); } 50% { border-color: rgba(0, 255, 136, 0.6); box-shadow: 0 0 20px rgba(0, 255, 136, 0.4); } } .bnb-icon-nav { width: 40px; height: 40px; object-fit: contain; filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5)); } .nav-logo { font-size: 2rem; font-weight: 900; letter-spacing: -0.03em; color: var(--color-text); } .nav-logo span { color: var(--color-primary); text-shadow: 0 0 30px var(--color-primary), 0 0 60px var(--color-primary); animation: glow-intense 1.5s ease-in-out infinite; } @keyframes logo-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } } @keyframes glow-intense { 0%, 100% { text-shadow: 0 0 20px var(--color-primary), 0 0 40px var(--color-primary); } 50% { text-shadow: 0 0 40px var(--color-primary), 0 0 80px var(--color-primary), 0 0 100px var(--color-primary); } } .nav-center { display: flex; justify-content: center; align-items: center; width: 100%; } .contract-address { font-family: 'Inter', var(--font-display); color: var(--color-primary); font-weight: 900; font-size: 1.6rem; text-transform: uppercase; letter-spacing: 0.5em; padding: 1.2rem 3rem; background: linear-gradient(135deg, rgba(0, 255, 136, 0.25) 0%, rgba(0, 255, 136, 0.15) 100%); border: 3px solid rgba(0, 255, 136, 0.6); border-radius: 12px; position: relative; overflow: hidden; text-shadow: 0 0 10px var(--color-primary), 0 0 20px var(--color-primary), 0 0 40px var(--color-primary), 0 1px 0 rgba(0, 0, 0, 0.5); animation: ca-pulse 2s ease-in-out infinite; cursor: pointer; transition: all 0.3s ease; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-feature-settings: 'kern' 1; box-shadow: 0 0 25px rgba(0, 255, 136, 0.4), inset 0 0 25px rgba(0, 255, 136, 0.15), 0 4px 15px rgba(0, 0, 0, 0.3); text-rendering: optimizeLegibility; } .contract-address::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(90deg, transparent 0%, rgba(0, 255, 136, 0.3) 50%, transparent 100%); border-radius: 8px; padding: 2px; mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask-composite: xor; -webkit-mask-composite: xor; animation: ca-border-glow 3s ease-in-out infinite; } .contract-address::after { content: ''; position: absolute; top: 50%; left: -100%; width: 100%; height: 1px; background: linear-gradient(90deg, transparent 0%, var(--color-primary) 50%, transparent 100%); animation: ca-shine 4s ease-in-out infinite; } .contract-address:hover { transform: translateY(-1px); text-shadow: 0 0 30px var(--color-primary), 0 0 60px var(--color-primary), 0 0 90px var(--color-primary); background: linear-gradient(135deg, rgba(0, 255, 136, 0.25) 0%, rgba(0, 255, 136, 0.1) 100%); } @keyframes ca-pulse { 0%, 100% { text-shadow: 0 0 15px var(--color-primary); } 50% { text-shadow: 0 0 25px var(--color-primary), 0 0 35px var(--color-primary); } } @keyframes ca-border-glow { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } } @keyframes ca-shine { 0% { left: -100%; top: 50%; } 50% { left: 100%; top: 50%; } 100% { left: 100%; top: 50%; } } .nav-links { display: flex; gap: 0.5rem; align-items: center; justify-self: end; } .audio-btn { background: rgba(0, 255, 136, 0.1); border: 1px solid rgba(0, 255, 136, 0.3); border-radius: 4px; padding: 0.8rem 1rem; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; height: auto; min-height: 44px; position: relative; overflow: visible; } .audio-btn:hover { background: rgba(0, 255, 136, 0.2); border-color: var(--color-primary); transform: scale(1.05); } .audio-btn { --wave-intensity: 0.5; } .audio-btn.playing::before { content: ''; position: absolute; top: 50%; left: 50%; width: calc(50px + 20px * var(--wave-intensity)); height: calc(50px + 20px * var(--wave-intensity)); border: 2px solid var(--color-primary); border-radius: 50%; transform: translate(-50%, -50%); animation: sound-wave-1 0.8s ease-in-out infinite; opacity: var(--wave-intensity); } .audio-btn.playing::after { content: ''; position: absolute; top: 50%; left: 50%; width: calc(70px + 30px * var(--wave-intensity)); height: calc(70px + 30px * var(--wave-intensity)); border: 1px solid var(--color-primary); border-radius: 50%; transform: translate(-50%, -50%); animation: sound-wave-2 1.2s ease-in-out infinite 0.3s; opacity: calc(var(--wave-intensity) * 0.7); } @keyframes sound-wave-1 { 0% { transform: translate(-50%, -50%) scale(0.6); opacity: calc(var(--wave-intensity) * 1.2); } 100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; } } @keyframes sound-wave-2 { 0% { transform: translate(-50%, -50%) scale(0.7); opacity: calc(var(--wave-intensity) * 0.8); } 100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; } } .audio-icon, .audio-icon-muted { width: 20px; height: 20px; color: var(--color-primary); transition: color 0.3s ease; } .audio-btn:hover .audio-icon, .audio-btn:hover .audio-icon-muted { color: var(--color-accent); } .market-candles { position: fixed; bottom: 5%; display: flex; gap: 1.2rem; align-items: flex-end; opacity: 0; transition: opacity 0.3s ease; z-index: 50; pointer-events: none; } .market-candles.left { left: 5%; } .market-candles.right { right: 5%; } .market-candles.active { opacity: 0.9; } .candle { width: 20px; background: linear-gradient(to top, var(--color-primary), #00ff44, #88ff88); border-radius: 4px; position: relative; box-shadow: 0 0 20px rgba(0, 255, 136, 0.8), 0 0 40px rgba(0, 255, 136, 0.4); transition: transform 0.08s ease-out; transform-origin: bottom; } .candle:nth-child(1) { height: 80px; } .candle:nth-child(2) { height: 110px; } .candle:nth-child(3) { height: 140px; } .candle:nth-child(4) { height: 100px; } .candle:nth-child(5) { height: 90px; } .candle:nth-child(6) { height: 120px; } .candle:nth-child(7) { height: 95px; } .candle:nth-child(8) { height: 105px; } .candle:nth-child(9) { height: 130px; } .candle:nth-child(10) { height: 85px; } .nav-link { color: var(--color-text-dim); text-decoration: none; font-size: 0.95rem; font-weight: 900; transition: all 0.2s; position: relative; padding: 0.8rem 1rem; background: var(--color-primary); color: var(--color-background); border-radius: 4px; text-transform: uppercase; letter-spacing: 0.05em; animation: button-slide 3s ease-in-out infinite; } @keyframes button-slide { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(5px); } } .nav-link:hover { transform: translateY(-2px); opacity: 0.9; } .nav-cta { padding: 0.8rem 2rem; background: var(--color-primary); color: var(--color-background); text-decoration: none; font-weight: 900; font-size: 0.95rem; border-radius: 4px; transition: all 0.3s; text-transform: uppercase; letter-spacing: 0.05em; position: relative; overflow: visible; display: flex; align-items: center; gap: 0.5rem; } .bnb-icon-btn { width: 28px; height: 28px; object-fit: contain; background: white; border-radius: 50%; padding: 3px; box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); } .nav-cta::before { content: ''; position: absolute; top: -3px; left: -3px; right: -3px; bottom: -3px; border: 3px solid var(--color-primary); border-radius: 4px; clip-path: polygon(0 0, 20% 0, 20% 3px, 3px 3px, 3px 20%, 0 20%); animation: arrow-loop 5s linear infinite; box-shadow: 0 0 10px var(--color-primary), 0 0 20px var(--color-primary), 0 0 30px var(--color-primary), inset 0 0 10px var(--color-primary); filter: brightness(1.5); } @keyframes arrow-loop { 0% { clip-path: polygon(0 0, 20% 0, 20% 3px, 3px 3px, 3px 20%, 0 20%); box-shadow: 0 0 15px var(--color-primary), 0 0 25px var(--color-primary), 0 0 40px var(--color-primary), inset 0 0 15px var(--color-primary); } 12.5% { clip-path: polygon(80% 0, 100% 0, 100% 20%, calc(100% - 3px) 20%, calc(100% - 3px) 3px, 80% 3px); box-shadow: 0 0 20px var(--color-primary), 0 0 30px var(--color-primary), 0 0 50px var(--color-primary), inset 0 0 20px var(--color-primary); } 25% { clip-path: polygon(100% 80%, 100% 100%, 80% 100%, 80% calc(100% - 3px), calc(100% - 3px) calc(100% - 3px), calc(100% - 3px) 80%); box-shadow: 0 0 15px var(--color-primary), 0 0 25px var(--color-primary), 0 0 40px var(--color-primary), inset 0 0 15px var(--color-primary); } 37.5% { clip-path: polygon(20% 100%, 0 100%, 0 80%, 3px 80%, 3px calc(100% - 3px), 20% calc(100% - 3px)); box-shadow: 0 0 20px var(--color-primary), 0 0 30px var(--color-primary), 0 0 50px var(--color-primary), inset 0 0 20px var(--color-primary); } 50% { clip-path: polygon(0 20%, 0 0, 20% 0, 20% 3px, 3px 3px, 3px 20%); box-shadow: 0 0 15px var(--color-primary), 0 0 25px var(--color-primary), 0 0 40px var(--color-primary), inset 0 0 15px var(--color-primary); } 62.5% { clip-path: polygon(80% 0, 100% 0, 100% 20%, calc(100% - 3px) 20%, calc(100% - 3px) 3px, 80% 3px); box-shadow: 0 0 20px var(--color-primary), 0 0 30px var(--color-primary), 0 0 50px var(--color-primary), inset 0 0 20px var(--color-primary); } 75% { clip-path: polygon(100% 80%, 100% 100%, 80% 100%, 80% calc(100% - 3px), calc(100% - 3px) calc(100% - 3px), calc(100% - 3px) 80%); box-shadow: 0 0 15px var(--color-primary), 0 0 25px var(--color-primary), 0 0 40px var(--color-primary), inset 0 0 15px var(--color-primary); } 87.5% { clip-path: polygon(20% 100%, 0 100%, 0 80%, 3px 80%, 3px calc(100% - 3px), 20% calc(100% - 3px)); box-shadow: 0 0 20px var(--color-primary), 0 0 30px var(--color-primary), 0 0 50px var(--color-primary), inset 0 0 20px var(--color-primary); } 100% { clip-path: polygon(0 20%, 0 0, 20% 0, 20% 3px, 3px 3px, 3px 20%); box-shadow: 0 0 15px var(--color-primary), 0 0 25px var(--color-primary), 0 0 40px var(--color-primary), inset 0 0 15px var(--color-primary); } } .nav-cta:hover { background: var(--color-accent); transform: translateY(-3px) scale(1.05); } .ticker-marquee { position: absolute; top: 20%; left: 0; width: 100%; overflow: hidden; background: rgba(0, 255, 136, 0.1); border-top: 2px solid var(--color-primary); border-bottom: 2px solid var(--color-primary); padding: 1rem 0; z-index: 2; box-shadow: 0 0 40px rgba(0, 255, 136, 0.3); } .ticker-track { display: flex; gap: 4rem; animation: ticker-scroll 15s linear infinite; width: max-content; } @keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } } .ticker-item { font-size: 3rem; font-weight: 900; color: var(--color-primary); text-shadow: 0 0 20px var(--color-primary); white-space: nowrap; letter-spacing: 0.05em; } .hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 6rem 2rem; z-index: 1; overflow: hidden; } .hero-bg-image { position: absolute; top: 20%; left: 0; width: 100%; height: 80%; background-image: url('./mumu3d.png'); background-size: cover; background-position: center; background-repeat: no-repeat; opacity: 0.15; z-index: -1; animation: bg-zoom 20s ease-in-out infinite alternate; } @keyframes bg-zoom { 0% { transform: scale(1); } 100% { transform: scale(1.1); } } .hero-content { text-align: center; max-width: 1000px; z-index: 2; } .hero-title { font-family: var(--font-display); font-size: clamp(8rem, 20vw, 18rem); font-weight: 900; letter-spacing: -0.05em; line-height: 0.85; margin-bottom: 2rem; background: linear-gradient(180deg, #ffffff 0%, var(--color-primary) 50%, var(--color-accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: title-glitch 3s ease-in-out infinite, title-float 4s ease-in-out infinite; position: relative; text-shadow: 0 0 100px rgba(0, 255, 136, 0.8); filter: drop-shadow(0 0 50px rgba(0, 255, 136, 0.6)); } @keyframes title-glitch { 0%, 90%, 100% { transform: translate(0, 0); } 92% { transform: translate(-2px, 2px); } 94% { transform: translate(2px, -2px); } 96% { transform: translate(-2px, -2px); } 98% { transform: translate(2px, 2px); } } @keyframes title-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } } .hero-subtitle { font-size: clamp(1.2rem, 3vw, 2rem); color: var(--color-text); margin-bottom: 3rem; margin-top: -1.5rem; line-height: 1.6; font-weight: 500; } body.loaded .hero-subtitle .word { display: inline-block; opacity: 0; animation: word-fade-in 0.5s ease-out forwards; margin: 0 0.3rem; } body:not(.loaded) .hero-subtitle .word { display: inline-block; opacity: 0; margin: 0 0.3rem; } body.loaded .hero-subtitle .word:nth-child(1) { animation-delay: 0.1s; } body.loaded .hero-subtitle .word:nth-child(2) { animation-delay: 0.2s; } body.loaded .hero-subtitle .word:nth-child(3) { animation-delay: 0.3s; } body.loaded .hero-subtitle .word:nth-child(4) { animation-delay: 0.4s; } body.loaded .hero-subtitle .word:nth-child(5) { animation-delay: 0.5s; } body.loaded .hero-subtitle .word:nth-child(6) { animation-delay: 0.6s; } body.loaded .hero-subtitle .word:nth-child(7) { animation-delay: 0.9s; } body.loaded .hero-subtitle .word:nth-child(8) { animation-delay: 1.0s; } body.loaded .hero-subtitle .word:nth-child(9) { animation-delay: 1.1s; } body.loaded .hero-subtitle .word:nth-child(10) { animation-delay: 1.2s; } @keyframes word-fade-in { 0% { opacity: 0; transform: translateY(20px) scale(0.8); filter: blur(10px); } 100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); } } .hero-subtitle .word.highlight { color: var(--color-primary); font-weight: 700; } body.loaded .hero-subtitle .word.glow { font-size: 1.3em; color: var(--color-primary); font-weight: 900; text-shadow: 0 0 20px var(--color-primary); animation: word-fade-in 0.5s ease-out forwards, word-glow 1.5s ease-in-out infinite; animation-delay: 1.2s, 1.7s; } body:not(.loaded) .hero-subtitle .word.glow { font-size: 1.3em; color: var(--color-primary); font-weight: 900; opacity: 0; } @keyframes word-glow { 0%, 100% { text-shadow: 0 0 20px var(--color-primary), 0 0 40px var(--color-primary); transform: scale(1); } 50% { text-shadow: 0 0 40px var(--color-primary), 0 0 80px var(--color-primary); transform: scale(1.1); } } .hero-cta { display: inline-flex; align-items: center; gap: 1rem; padding: 1.5rem 4rem; background: var(--color-primary); color: var(--color-background); text-decoration: none; font-weight: 900; font-size: 1.5rem; border-radius: 8px; transition: all 0.3s; box-shadow: 0 0 40px rgba(0, 255, 136, 0.6), 0 10px 30px rgba(0, 0, 0, 0.5); position: relative; overflow: hidden; text-transform: uppercase; letter-spacing: 0.1em; animation: cta-mega-pulse 2s ease-in-out infinite; } .bnb-icon-hero { width: 56px; height: 56px; object-fit: contain; background: white; border-radius: 50%; padding: 6px; box-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.4); animation: icon-bounce 2s ease-in-out infinite; } @keyframes icon-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } } @keyframes cta-mega-pulse { 0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(0, 255, 136, 0.6), 0 10px 30px rgba(0, 0, 0, 0.5); } 50% { transform: scale(1.05); box-shadow: 0 0 60px rgba(0, 255, 136, 1), 0 15px 40px rgba(0, 0, 0, 0.7); } } .hero-cta::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent); animation: cta-shine 3s ease-in-out infinite; } @keyframes cta-shine { 0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); } 100% { transform: translateX(100%) translateY(100%) rotate(45deg); } } .hero-cta:hover { background: var(--color-accent); transform: translateY(-5px) scale(1.1); box-shadow: 0 0 80px rgba(0, 255, 255, 1), 0 20px 50px rgba(0, 0, 0, 0.8); } .cta-arrow { font-size: 2rem; transition: transform 0.3s; } .hero-cta:hover .cta-arrow { transform: translate(5px, -5px) scale(1.2); } .scroll-indicator { position: absolute; bottom: 4rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; } .scroll-line { width: 2px; height: 60px; background: linear-gradient(180deg, var(--color-primary) 0%, transparent 100%); animation: scroll-animate 2s ease-in-out infinite; } @keyframes scroll-animate { 0%, 100% { opacity: 0.3; transform: translateY(0) scaleY(1); } 50% { opacity: 1; transform: translateY(15px) scaleY(1.2); } } .section { position: relative; min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 6rem 2rem; z-index: 1; } .container { max-width: 1400px; margin: 0 auto; width: 100%; } .up-section { background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.15) 0%, transparent 70%); position: relative; overflow: hidden; padding-top: 8rem; padding-bottom: 2rem; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; } .up-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('./bull3d.png'); background-size: contain; background-position: center; background-repeat: no-repeat; opacity: 0.15; z-index: 0; animation: bg-zoom 20s ease-in-out infinite alternate; } .up-content { text-align: center; position: relative; z-index: 2; } .up-arrows { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; display: flex; justify-content: space-around; align-items: flex-end; z-index: 1; opacity: 0.3; pointer-events: none; } .arrow-line { width: 4px; height: 0; background: linear-gradient(180deg, transparent 0%, var(--color-primary) 100%); border-radius: 2px; box-shadow: 0 0 20px var(--color-primary); animation: arrow-ascend 2s ease-out infinite; position: relative; } .arrow-line::before { content: '↑'; position: absolute; top: -30px; left: 50%; transform: translateX(-50%); font-size: 2rem; color: var(--color-primary); text-shadow: 0 0 20px var(--color-primary); } .arrow-line:nth-child(1) { animation-delay: 0s; } .arrow-line:nth-child(2) { animation-delay: 0.2s; } .arrow-line:nth-child(3) { animation-delay: 0.4s; } .arrow-line:nth-child(4) { animation-delay: 0.6s; } .arrow-line:nth-child(5) { animation-delay: 0.8s; } @keyframes arrow-ascend { 0% { height: 0; opacity: 0; } 50% { opacity: 1; } 100% { height: 80vh; opacity: 0; } } .up-title { font-size: clamp(3rem, 8vw, 6rem); font-weight: 900; color: var(--color-primary); text-shadow: 0 0 40px var(--color-primary), 0 0 80px var(--color-primary); margin-bottom: 1.5rem; letter-spacing: 0.05em; animation: title-rise 3s ease-out infinite; } @keyframes title-rise { 0%, 100% { transform: translateY(0); text-shadow: 0 0 40px var(--color-primary); } 50% { transform: translateY(-30px); text-shadow: 0 0 80px var(--color-primary), 0 0 120px var(--color-primary); } } .up-staircase { margin-bottom: 3rem; display: flex; flex-direction: column; gap: 1rem; align-items: center; width: 100%; } .staircase-line { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 700; color: var(--color-text); display: block; text-align: center; opacity: 0; animation: stair-fade-in 0.8s ease-out forwards; } .staircase-line.line-1 { animation-delay: 0.2s; } .staircase-line.line-2 { animation-delay: 0.5s; } .staircase-line.line-3 { animation-delay: 0.8s; } .stair-one { color: var(--color-primary); text-shadow: 0 0 20px var(--color-primary); font-weight: 900; } .stair-text { color: var(--color-text); font-weight: 600; } @keyframes stair-fade-in { 0% { opacity: 0; transform: translateX(-30px) translateY(10px); } 100% { opacity: 1; transform: translateX(0) translateY(0); } } .up-large { display: flex; justify-content: center; align-items: center; } .bounce-arrow { width: clamp(200px, 30vw, 400px); height: auto; filter: drop-shadow(0 0 30px var(--color-primary)) drop-shadow(0 0 60px var(--color-primary)); } .arrow-path { stroke-dasharray: 100 500; animation: draw-loop 2s linear infinite; } @keyframes draw-loop { from { stroke-dashoffset: 600; } to { stroke-dashoffset: 0; } } .community { background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.08) 0%, rgba(5, 5, 8, 0.95) 70%); position: relative; min-height: 100vh; padding-top: 8rem; margin-top: 4rem; } .community::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; } .community-content { text-align: center; max-width: 600px; margin: 0 auto; background: rgba(5, 5, 8, 0.88); padding: 2.5rem 2rem; border-radius: 16px; backdrop-filter: blur(15px); border: 2px solid rgba(0, 255, 136, 0.25); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 255, 136, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1); animation: community-float 6s ease-in-out infinite; transition: transform 0.3s ease, box-shadow 0.3s ease; } .community-content:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 255, 136, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15); } @keyframes community-float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-8px) rotate(0.5deg); } } .community-description { font-size: clamp(1.8rem, 3.5vw, 3rem); color: var(--color-text); margin-bottom: 1rem; line-height: 1.6; font-weight: 700; animation: fade-in-up 1s ease-out, text-glow 3s ease-in-out infinite; } .community-subtitle { font-size: clamp(2rem, 4vw, 3.5rem); color: var(--color-primary); margin-bottom: 3rem; line-height: 1.4; font-weight: 900; text-shadow: 0 0 15px rgba(0, 255, 136, 0.4); animation: fade-in-up 1.2s ease-out 0.3s backwards; opacity: 0.95; } @keyframes text-glow { 0%, 100% { text-shadow: 0 0 10px rgba(0, 255, 136, 0.3); } 50% { text-shadow: 0 0 20px rgba(0, 255, 136, 0.6), 0 0 30px rgba(0, 255, 136, 0.4); } } @keyframes fade-in-up { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } } .community-links { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; } .community-link { display: inline-flex; align-items: center; gap: 1rem; padding: 1.5rem 3rem; background: rgba(0, 255, 136, 0.1); border: 2px solid var(--color-primary); color: var(--color-text); text-decoration: none; font-weight: 700; font-size: 1.2rem; border-radius: 8px; transition: all 0.3s; text-transform: uppercase; letter-spacing: 0.05em; position: relative; overflow: visible; animation: link-pulse 4s ease-in-out infinite; } @keyframes link-pulse { 0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); } 50% { transform: scale(1.02); box-shadow: 0 0 20px 0 rgba(0, 255, 136, 0.3); } } .community-link svg { width: 28px; height: 28px; } .bnb-icon-community { width: 36px; height: 36px; object-fit: contain; transition: transform 0.3s ease; } .community-link:hover .bnb-icon-community { transform: scale(1.1) rotate(5deg); } .community-link:hover { background: var(--color-primary); color: var(--color-background); transform: translateY(-5px) scale(1.1); } .community-link.pulse::before { content: ''; position: absolute; top: -4px; left: -4px; right: -4px; bottom: -4px; border: 2px solid var(--color-primary); border-radius: 8px; animation: arrow-loop-community 5s linear infinite; box-shadow: 0 0 15px var(--color-primary), 0 0 30px var(--color-primary), 0 0 45px var(--color-primary), inset 0 0 15px var(--color-primary); filter: brightness(1.5); } @keyframes arrow-loop-community { 0%, 100% { clip-path: polygon(0 0, 25% 0, 25% 4px, 4px 4px, 4px 25%, 0 25%); } 25% { clip-path: polygon(75% 0, 100% 0, 100% 25%, calc(100% - 4px) 25%, calc(100% - 4px) 4px, 75% 4px); } 50% { clip-path: polygon(100% 75%, 100% 100%, 75% 100%, 75% calc(100% - 4px), calc(100% - 4px) calc(100% - 4px), calc(100% - 4px) 75%); } 75% { clip-path: polygon(25% 100%, 0 100%, 0 75%, 4px 75%, 4px calc(100% - 4px), 25% calc(100% - 4px)); } } .community-footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(0, 255, 136, 0.15); opacity: 0.7; } .community-footer .footer-text { text-align: center; color: var(--color-text-dim); font-size: 0.9rem; margin-bottom: 0.5rem; } .community-footer .footer-text span { color: var(--color-primary); font-weight: 700; } .community-footer .footer-disclaimer { text-align: center; color: var(--color-text-dim); font-size: 0.75rem; opacity: 0.6; } @media (max-width: 768px) { .nav-links { gap: 1rem; } .nav-link { font-size: 0.85rem; } .nav-cta { padding: 0.6rem 1.5rem; font-size: 0.85rem; } .ticker-marquee { top: 15%; } .ticker-item { font-size: 2rem; } .hero-title { font-size: clamp(5rem, 15vw, 10rem); } .hero-subtitle { font-size: clamp(1rem, 2.5vw, 1.5rem); } .hero-cta { padding: 1.2rem 2.5rem; font-size: 1.2rem; } .up-title { font-size: clamp(2.5rem, 8vw, 4rem); } .up-subtitle { font-size: clamp(1rem, 2.5vw, 1.5rem); } .up-large { font-size: clamp(8rem, 18vw, 15rem); } .community-links { width: 100%; } .community-link { width: 100%; justify-content: center; } } .pumpfun-link { background: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%) !important; color: white !important; font-weight: 900; position: relative; overflow: hidden; } .pumpfun-link::before { content: '🚀'; margin-right: 0.5rem; } .pumpfun-link:hover { background: linear-gradient(135deg, #ff6b35 0%, #ff8500 100%) !important; transform: translateY(-2px) scale(1.05); box-shadow: 0 5px 20px rgba(255, 69, 0, 0.4); } #contract-addr { color: inherit; font-weight: inherit; } @media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; } }
