/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    --primary: #00E676; 
    --secondary: #FFD700; 
    --bg-dark: #050505;
    --glass-bg: rgba(10, 10, 10, 0.9); /* Darker glass */
    --glass-border: rgba(255, 215, 0, 0.3);
    --text-main: #ffffff;
    --text-muted: #e0e0e0;
    --font-head: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* =========================================
   2. GLOBAL BACKGROUND (UNTOUCHED)
   ========================================= */
#global-background {
    position: fixed; top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: -100; background-color: var(--bg-dark);
    overflow: hidden; pointer-events: none;
}

.cyber-grid {
    position: absolute; bottom: -30%; left: -50%; width: 200%; height: 80%;
    background-image: 
        linear-gradient(rgba(0, 230, 118, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 230, 118, 0.1) 1px, transparent 1px);
    background-size: 80px 80px; transform: rotateX(70deg);
    mask-image: linear-gradient(to top, #000, transparent 80%);
    -webkit-mask-image: linear-gradient(to top, #000, transparent 80%);
    animation: grid-move 20s linear infinite; z-index: -10;
}
@keyframes grid-move { 0% { transform: rotateX(70deg) translateY(0); } 100% { transform: rotateX(70deg) translateY(80px); } }

.hero-hologram {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    display: flex; justify-content: center; align-items: center;
    pointer-events: none; z-index: -5;
}
.hero-hologram::before {
    content: ''; position: absolute; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.1) 0%, transparent 70%);
    border-radius: 50%; filter: blur(80px); opacity: 0.4;
    animation: pulse 4s infinite alternate;
}
.hero-hologram img {
    width: 450px; height: 450px; object-fit: contain;
    mix-blend-mode: screen; opacity: 0.15;
    animation: rotate-logo 60s linear infinite;
}
@keyframes pulse { 0% { opacity: 0.2; transform: scale(0.9); } 100% { opacity: 0.5; transform: scale(1.1); } }
@keyframes rotate-logo { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.floating-icons { position: absolute; width: 100%; height: 100%; pointer-events: none; z-index: -4; }
.coin { position: absolute; width: 60px; height: 60px; opacity: 0.1; animation: float 10s ease-in-out infinite; }
.btc { top: 15%; left: 10%; filter: sepia(100%) saturate(300%) drop-shadow(0 0 10px #FFD700); }
.eth { top: 60%; right: 15%; filter: hue-rotate(90deg) drop-shadow(0 0 10px #00E676); animation-delay: 2s; }
.sol { top: 25%; right: 25%; filter: sepia(100%) drop-shadow(0 0 10px #FFD700); animation-delay: 4s; }
.bnb { bottom: 20%; left: 20%; filter: grayscale(100%) hue-rotate(90deg) drop-shadow(0 0 10px #00E676); animation-delay: 1s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

#particle-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -2; }

/* =========================================
   3. GENERAL UI STYLES
   ========================================= */
body { background-color: transparent; color: #ffffff !important; font-family: var(--font-body); overflow-x: hidden; }
a { text-decoration: none; color: #ffffff; transition: 0.3s; }
ul { list-style: none; }

h1, h2, h3 { font-family: var(--font-head); color: var(--primary); text-transform: uppercase; letter-spacing: 1px; }
p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.highlight-gold { color: var(--secondary); text-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 10; }
.section-pad { padding: 6rem 0; position: relative; z-index: 5; }
.center-text { text-align: center; }
.dark-bg { background: rgba(0,0,0,0.6); }

/* Components */
.btn {
    display: inline-block; background-color: var(--primary); color: #000 !important;
    border: 2px solid var(--secondary); padding: 12px 30px;
    font-family: var(--font-head); font-weight: 700; cursor: pointer; text-transform: uppercase;
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.4); transition: 0.3s;
    border-radius: 50px; clip-path: none;
}
.btn:hover { background-color: var(--secondary); border-color: var(--primary); box-shadow: 0 0 20px rgba(255, 215, 0, 0.6); }
.btn-sm { padding: 8px 20px; font-size: 0.8rem; }
.btn-outline { background: transparent; color: var(--primary) !important; border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #000 !important; }

.glass-card {
    background: var(--glass-bg); backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border); border-radius: 15px;
    padding: 2.5rem; box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    transition: 0.4s; overflow: hidden;
}
.glass-card:hover { border-color: var(--secondary); box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); transform: translateY(-5px); }

/* Navigation */
.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 1rem 0; background: #000000; border-bottom: 1px solid rgba(0, 230, 118, 0.2); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-head); font-size: 1.8rem; color: var(--primary); display: flex; align-items: center; gap: 15px; }
.nav-logo-img { height: 40px; width: 40px; border-radius: 50%; border: 2px solid var(--secondary); object-fit: cover; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: #fff !important; font-family: var(--font-head); font-size: 0.9rem; text-transform: uppercase; }
.nav-links a.active { color: var(--secondary) !important; border-bottom: 2px solid var(--secondary); }
.nav-links a:hover { color: var(--secondary) !important; }
.nav-btn-container { display: flex; align-items: center; gap: 1rem; }
.mobile-toggle { display: none; font-size: 1.5rem; color: var(--primary); cursor: pointer; }

/* Page Hero */
.page-hero { padding-top: 180px; padding-bottom: 100px; text-align: center; position: relative; z-index: 5; }
.page-hero h1 { font-size: 4rem; margin-bottom: 1rem; text-shadow: 0 0 20px var(--primary); color: #fff; }
.page-hero p { font-size: 1.5rem; color: #eee; }

/* Layouts */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.glow-card { display: flex; justify-content: center; align-items: center; height: 300px; }
.big-icon { font-size: 8rem; color: var(--secondary); opacity: 0.8; }
.stats-row { display: flex; gap: 2rem; margin-top: 2rem; }
.stats-row h3 { color: var(--primary); font-size: 2rem; margin-bottom: 0; }
.stats-row span { color: var(--secondary); font-size: 0.9rem; text-transform: uppercase; }

.comparison-grid { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.problem-card, .solution-card { flex: 1; min-height: 350px; }
.problem-card { border-color: rgba(255, 50, 50, 0.5); }
.problem-card .card-header i { color: #ff4444; }
.solution-card { border-color: var(--primary); }
.solution-card .card-header i { color: var(--primary); }
.card-header { display: flex; align-items: center; gap: 15px; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1rem; }
.comparison-grid ul li { margin-bottom: 10px; padding-left: 20px; position: relative; color: #ddd; }
.comparison-grid ul li::before { content: '•'; position: absolute; left: 0; color: var(--secondary); }
.connector { font-size: 3rem; color: var(--secondary); }

.vm-grid { display: grid; grid-template-columns: 1fr 1px 1fr; gap: 2rem; align-items: center; text-align: center; }
.vm-divider { height: 100%; background: linear-gradient(to bottom, transparent, var(--secondary), transparent); }
.vm-box h2 { font-size: 3rem; margin-bottom: 1rem; }

.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.value-card { text-align: center; }
.value-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.team-member { text-align: center; }
.member-img { width: 100px; height: 100px; border-radius: 50%; border: 2px solid var(--secondary); margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--primary); background: #111; }
.role { display: block; color: var(--secondary); margin-bottom: 10px; font-size: 0.9rem; text-transform: uppercase; }
.socials { margin-top: 1rem; }
.socials a { color: #fff; margin: 0 5px; font-size: 1.2rem; }
.socials a:hover { color: var(--primary); }

.partners-wrapper { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; border-top: 1px solid rgba(255,215,0,0.2); border-bottom: 1px solid rgba(255,215,0,0.2); padding: 3rem 0; }
.partner-logo { font-family: var(--font-head); font-weight: 900; color: rgba(255, 255, 255, 0.3); font-size: 1.5rem; transition: 0.3s; }
.partner-logo:hover { color: var(--secondary); text-shadow: 0 0 10px var(--secondary); }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.resource-card h3 i { margin-right: 10px; }
.color-palette { display: flex; gap: 10px; margin: 1rem 0; }
.swatch { width: 30px; height: 30px; border-radius: 50%; border: 1px solid #fff; }
.job-pill { display: inline-block; padding: 8px 20px; background: rgba(0, 230, 118, 0.1); border: 1px solid var(--primary); border-radius: 20px; margin: 5px; color: var(--primary); }

/* Footer */
footer { background: #000; padding: 4rem 0 2rem; border-top: 2px solid var(--primary); position: relative; z-index: 10; }
.footer-content { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 4rem; }
.footer-links { display: flex; flex-direction: column; gap: 1rem; }
.footer-links a { color: #aaa !important; font-size: 1rem; transition: 0.3s; text-transform: capitalize; }
.footer-links a:hover { color: var(--primary) !important; padding-left: 5px; }
.footer-form h4 { color: var(--primary) !important; margin-bottom: 10px; }
.input-group { display: flex; gap: 10px; }
.input-group input { background: #111; border: 1px solid var(--secondary); color: #fff !important; padding: 12px 15px; width: 250px; outline: none; font-family: 'Rajdhani', sans-serif; }
.input-group .btn { background: var(--primary); color: #000 !important; border: none; padding: 12px 25px; font-family: 'Orbitron', sans-serif; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; border-radius: 0; clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%); transition: 0.3s; }
.input-group .btn:hover { background: var(--secondary); box-shadow: 0 0 15px var(--secondary); transform: translateY(-2px); }
.copyright { text-align: center; color: #555 !important; font-size: 0.9rem; padding-top: 3rem; margin-top: 0; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .split-layout, .comparison-grid, .vm-grid { grid-template-columns: 1fr; }
    .connector { transform: rotate(90deg); margin: 1rem 0; }
    .vm-divider { width: 100%; height: 1px; background: linear-gradient(to right, transparent, var(--secondary), transparent); }
    .page-hero h1 { font-size: 2.5rem; }
    .footer-content { flex-direction: column; align-items: center; text-align: center; gap: 3rem; }
    .input-group { flex-direction: column; width: 100%; }
    .input-group input, .input-group .btn { width: 100%; }
}