@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
    --bg-dark: #030307;
    --bg-panel: rgba(10, 10, 20, 0.7);
    --neon-blue: #00f3ff;
    --neon-purple: #bc13fe;
    --neon-green: #00ff66;
    --neon-pink: #ff00f0;
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --font-sans: 'Space Grotesk', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

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

html, body {
    width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

#cyber-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: -2;
    background: radial-gradient(circle at center, #0a0a1a 0%, #030307 100%);
    pointer-events: none;
}

.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.3;
    animation: float-orb 20s infinite alternate linear;
    pointer-events: none;
}

.orb-1 {
    width: 400px; height: 400px;
    background: var(--neon-purple);
    top: -100px; left: -100px;
}

.orb-2 {
    width: 300px; height: 300px;
    background: var(--neon-blue);
    bottom: 10%; right: -50px;
    animation-duration: 25s;
    animation-direction: alternate-reverse;
}

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

.navbar {
    background: rgba(3, 3, 7, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1002;
}

.logo-text {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--neon-blue);
    box-shadow: 0 0 5px var(--neon-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    bottom: -4px; left: 0;
    background: var(--neon-blue);
    transition: width 0.3s;
    box-shadow: 0 0 8px var(--neon-blue);
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.btn-cyber {
    background: transparent;
    border: 1px solid var(--neon-purple);
    color: #fff !important;
    padding: 10px 24px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: inset 0 0 10px rgba(188, 19, 254, 0.2), 0 0 10px rgba(188, 19, 254, 0.2);
}

.btn-cyber::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(188, 19, 254, 0.4), transparent);
    transition: all 0.5s;
}

.btn-cyber:hover::before { left: 100%; }
.btn-cyber:hover {
    box-shadow: inset 0 0 20px rgba(188, 19, 254, 0.5), 0 0 20px rgba(188, 19, 254, 0.5);
    background: rgba(188, 19, 254, 0.1);
}

.mobile-only { display: none; }
.desktop-only { display: inline-flex; }

.hero {
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-text { flex: 1 1 500px; }

.badge-web3 {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    border-radius: 4px;
    margin-bottom: 24px;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-text h1 span {
    color: transparent;
    -webkit-text-stroke: 1px var(--neon-purple);
    text-shadow: 0 0 20px rgba(188, 19, 254, 0.4);
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 95%;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.btn-primary-web3 {
    display: inline-block;
    padding: 20px 48px;
    background: var(--text-main);
    color: var(--bg-dark);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    clip-path: polygon(0 0, 90% 0, 100% 30%, 100% 100%, 10% 100%, 0 70%);
    transition: transform 0.2s;
}

.btn-primary-web3::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
    clip-path: polygon(0 0, 91% 0, 100% 29%, 100% 100%, 9% 100%, 0 71%);
    z-index: -1;
}

.btn-primary-web3 .btn-bg {
    position: absolute;
    inset: 4px;
    background: var(--bg-dark);
    clip-path: polygon(0 0, 91% 0, 100% 29%, 100% 100%, 9% 100%, 0 71%);
    z-index: -1;
    transition: background 0.3s;
}

.btn-primary-web3 .btn-text {
    color: #fff;
    text-shadow: 0 0 5px rgba(255,255,255,0.5);
}

.btn-primary-web3:hover { transform: scale(1.05); }
.btn-primary-web3:hover .btn-bg { background: rgba(188, 19, 254, 0.2); }

.pricing-cyber {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--neon-green);
    background: rgba(0, 255, 102, 0.05);
    padding: 10px 20px;
    border: 1px dashed rgba(0, 255, 102, 0.3);
}

.hero-visual {
    flex: 1 1 350px;
    perspective: 1000px;
    width: 100%;
}

.hologram-card {
    background: var(--bg-panel);
    border: 1px solid rgba(0, 243, 255, 0.2);
    padding: 2px;
    position: relative;
    transform: rotateY(-15deg) rotateX(5deg);
    box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 243, 255, 0.1);
    animation: hover-3d 6s infinite ease-in-out alternate;
    width: 100%;
}

.hologram-card::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 20px rgba(0, 243, 255, 0.2);
    pointer-events: none;
}

.scan-line {
    position: absolute;
    width: 100%; height: 4px;
    background: var(--neon-blue);
    box-shadow: 0 0 15px var(--neon-blue);
    top: 0; left: 0;
    opacity: 0.5;
    animation: scan-vertical 3s linear infinite;
    z-index: 10;
}

.card-header {
    background: rgba(0, 0, 0, 0.5);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff3366; }
.dot.yellow { background: #ffcc00; }
.dot.green { background: #00ff66; }

.terminal-title {
    margin-left: auto;
    font-family: var(--font-mono);
    color: var(--neon-blue);
    font-size: 0.9rem;
}

.card-body {
    padding: 30px;
    background: linear-gradient(180deg, rgba(0,0,0,0.8), rgba(10,10,20,0.9));
}

.terminal-text p {
    font-family: var(--font-mono);
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.terminal-text .success-text {
    color: var(--neon-green);
    text-shadow: 0 0 5px var(--neon-green);
    margin-bottom: 30px;
}

.score-display {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 255, 102, 0.05);
    padding: 20px;
    border: 1px solid rgba(0, 255, 102, 0.2);
    border-radius: 8px;
    flex-wrap: wrap;
}

.animate-circle { animation: fill-circle 2s cubic-bezier(0.4, 0, 0.2, 1) forwards; }

.score-info h4 {
    font-family: var(--font-mono);
    color: var(--neon-green);
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.score-info p {
    color: var(--text-main);
    font-size: 0.9rem;
    margin: 0;
}

.stats-section {
    padding: 60px 0;
    background: rgba(0,0,0,0.5);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-box h3 {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.stat-box p {
    color: var(--neon-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.how-it-works-web3 { padding: 100px 0; }

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    font-family: var(--font-mono);
}

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

.arch-card {
    background: var(--bg-panel);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.arch-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.arch-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(0, 243, 255, 0.1);
}
.arch-card:hover::before { transform: translateX(100%); }

.arch-icon { margin-bottom: 30px; }

.arch-card h3 {
    font-family: var(--font-mono);
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: #fff;
}

.arch-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.marquee-section {
    padding: 20px 0;
    background: var(--neon-purple);
    color: #fff;
    font-family: var(--font-mono);
    font-weight: 700;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.marquee-content {
    display: flex;
    gap: 50px;
    animation: scroll-marquee 20s linear infinite;
}

.seo-web3-section { padding: 100px 0; }

.glass-container-large {
    background: var(--bg-panel);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

.glass-container-large h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--neon-blue);
    font-family: var(--font-mono);
}

.glass-container-large p {
    margin-bottom: 24px;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.feature-list {
    list-style: none;
    margin-top: 40px;
}

.feature-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    color: var(--text-main);
}

.feature-list li::before {
    content: '>>';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-family: var(--font-mono);
}

.faq-web3-section {
    padding: 100px 0;
    background: linear-gradient(0deg, var(--bg-dark), rgba(10,10,20,0.8));
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-card {
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 16px;
    background: var(--bg-panel);
}

.faq-trigger {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: none;
    border: none;
    color: #fff;
    font-family: var(--font-mono);
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-icon { color: var(--neon-purple); min-width: 25px;}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 24px;
}

.faq-content p {
    padding-bottom: 24px;
    color: var(--text-muted);
    border-top: 1px dashed rgba(255,255,255,0.1);
    padding-top: 16px;
}

.footer-web3 {
    padding: 80px 24px 30px;
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    position: relative;
}

.footer-web3::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    box-shadow: 0 0 10px var(--neon-blue);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.brand-col { flex: 2 1 300px; }

.crypto-text {
    margin: 20px 0;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.network-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(0, 255, 102, 0.1);
    border: 1px solid rgba(0, 255, 102, 0.3);
    color: var(--neon-green);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    border-radius: 4px;
}

.pulse-dot {
    width: 8px; height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulse-glow 2s infinite;
}

.links-col, .address-col { flex: 1 1 200px; }

.links-col h4, .address-col h4 {
    color: #fff;
    font-family: var(--font-mono);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.links-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.links-col a:hover { color: var(--neon-blue); }

.address-col p {
    color: var(--text-muted);
    margin-bottom: 8px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px dashed rgba(255,255,255,0.1);
    padding-top: 30px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

.app-body { background-color: #010103; overflow-x: hidden; }

.grid-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: 
        linear-gradient(rgba(0, 243, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: perspective(1000px) rotateX(60deg) scale(2.5);
    transform-origin: top;
    z-index: -1;
    opacity: 0.5;
    animation: grid-move 20s linear infinite;
    pointer-events: none;
}

.app-navbar { background: rgba(1, 1, 3, 0.9); }

.app-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: #fff;
}

.app-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 40px;
}

.app-dashboard {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.app-hologram {
    background: rgba(5, 5, 12, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(188, 19, 254, 0.3);
    padding: 50px 40px;
    position: relative;
    box-shadow: 0 0 50px rgba(188, 19, 254, 0.1), inset 0 0 30px rgba(0,0,0,0.8);
}

.app-hologram::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, var(--neon-blue), transparent, var(--neon-purple));
    z-index: -1;
    opacity: 0.5;
}

.hologram-scanline {
    position: absolute;
    width: 100%; height: 2px;
    background: rgba(188, 19, 254, 0.5);
    top: 0; left: 0;
    box-shadow: 0 0 10px var(--neon-purple);
    animation: scan-vertical 4s linear infinite;
    pointer-events: none;
}

.app-header { text-align: center; margin-bottom: 40px; }

.app-header h2 {
    font-family: var(--font-mono);
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.app-header p { color: var(--text-muted); font-size: 0.9rem;}

.btn-connect-web3 {
    width: 100%;
    background: rgba(0,0,0,0.6);
    border: 1px solid var(--neon-blue);
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff;
    font-family: var(--font-mono);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.btn-connect-web3:hover {
    background: rgba(0, 243, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.cyber-divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.cyber-divider::before {
    content: '';
    position: absolute;
    top: 50%; left: 0; width: 100%; height: 1px;
    background: rgba(255,255,255,0.1);
}

.cyber-divider span {
    background: #05050c;
    padding: 0 16px;
    position: relative;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.terminal-input-group {
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 5px;
    margin-bottom: 30px;
}

.prompt-symbol {
    color: var(--neon-green);
    font-family: var(--font-mono);
    padding: 0 15px;
    font-size: 1.2rem;
}

.cyber-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--font-mono);
    font-size: 1rem;
    outline: none;
    width: 100%;
}

.cyber-input::placeholder { color: rgba(255,255,255,0.3); }

.btn-execute {
    background: var(--neon-purple);
    color: #fff;
    border: none;
    padding: 15px 24px;
    font-family: var(--font-mono);
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1rem;
}

.btn-execute:hover {
    background: #d43bfe;
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.5);
}

.system-messages {
    background: rgba(0,0,0,0.5);
    padding: 16px;
    border-left: 2px solid var(--neon-blue);
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

.msg-warn { color: var(--neon-green); margin-bottom: 8px; }
.msg-price { color: var(--neon-purple); }

.scanning-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 12, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.console-output {
    margin-top: 30px;
    font-family: var(--font-mono);
    color: var(--neon-green);
    font-size: 0.85rem;
    text-align: left;
    width: 85%;
    min-height: 100px;
}

.legal-body { padding-top: 100px; }

.legal-container {
    max-width: 900px;
    background: var(--bg-panel);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 60px;
    position: relative;
    margin-bottom: 80px;
}

.legal-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

.legal-header {
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 30px;
}

.legal-header h1 {
    font-family: var(--font-mono);
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 10px;
}

.hash-date {
    color: var(--neon-purple);
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.cyber-section { margin-bottom: 40px; }

.cyber-section h2 {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--neon-blue);
    margin-bottom: 16px;
}

.cyber-section p { color: var(--text-muted); }

.glitch { position: relative; }

.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg-dark);
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--neon-pink);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--neon-blue);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-up.visible { opacity: 1; transform: translateY(0); }
.animate-fade { opacity: 0; transition: opacity 0.8s ease-in; }
.animate-fade.visible { opacity: 1; }

@keyframes float-orb {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}
@keyframes scan-vertical { 0% { top: 0; } 50% { top: 100%; } 100% { top: 0; } }
@keyframes hover-3d {
    0% { transform: rotateY(-5deg) rotateX(2deg); }
    100% { transform: rotateY(5deg) rotateX(5deg); }
}
@keyframes fill-circle { 100% { stroke-dashoffset: 0; } }
@keyframes pulse-opacity {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 102, 0); }
}
@keyframes scroll-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes grid-move { 0% { background-position: 0 0; } 100% { background-position: 0 40px; } }
@keyframes spin-slow { 100% { transform: rotate(360deg); } }
@keyframes spin-fast { 100% { transform: rotate(360deg); } }
@keyframes spin-reverse { 100% { transform: rotate(-360deg); } }
@keyframes spin-reverse-fast { 100% { transform: rotate(-360deg); } }
.spin-slow { transform-origin: center; animation: spin-slow 10s linear infinite; }
.spin-fast { transform-origin: center; animation: spin-fast 2s linear infinite; }
.spin-reverse { transform-origin: center; animation: spin-reverse 8s linear infinite; }
.spin-reverse-fast { transform-origin: center; animation: spin-reverse-fast 1.5s linear infinite; }
@keyframes glitch-anim {
    0% { clip: rect(15px, 9999px, 86px, 0); }
    20% { clip: rect(14px, 9999px, 34px, 0); }
    40% { clip: rect(27px, 9999px, 63px, 0); }
    60% { clip: rect(66px, 9999px, 4px, 0); }
    80% { clip: rect(77px, 9999px, 83px, 0); }
    100% { clip: rect(45px, 9999px, 20px, 0); }
}

/* Mobile Adaptation */
@media (max-width: 992px) {
    .hamburger { display: flex; }
    .desktop-only { display: none; }
    .mobile-only { display: inline-block; width: 100%; text-align: center; margin-top: 20px;}
    
    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(3, 3, 7, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        border-bottom: 1px solid rgba(0, 243, 255, 0.2);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    .hero-content { flex-direction: column; text-align: center; padding-top: 40px; }
    .hero-text h1 { font-size: 3rem; }
    .hero-desc { margin: 0 auto 30px; }
    .cta-wrapper { align-items: center; width: 100%; }
    
    .hologram-card { transform: none; animation: none; margin-top: 30px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .architecture-grid { grid-template-columns: 1fr; }
    
    .footer-top { flex-direction: column; gap: 40px; text-align: center; }
}

@media (max-width: 600px) {
    .hero-text h1 { font-size: 2.3rem; }
    .btn-primary-web3 { width: 100%; padding: 18px 20px; font-size: 1rem; }
    .stats-grid { grid-template-columns: 1fr; }
    
    .glass-container-large, .legal-container { padding: 30px 20px; }
    .glass-container-large h2, .legal-container h1 { font-size: 1.8rem; }
    
    .app-hologram { padding: 30px 20px; }
    .app-header h2 { font-size: 1.4rem; }
    
    .terminal-input-group { flex-direction: column; background: transparent; border: none; padding: 0;}
    .cyber-input { 
        background: rgba(0,0,0,0.8); 
        border: 1px solid rgba(255,255,255,0.2); 
        margin-bottom: 10px;
    }
    .btn-execute { width: 100%; }
    .prompt-symbol { display: none; }
}