/* =========================================

   1. VARIABLES & RESET

   ========================================= */

:root {

    --primary: #00E676;

    --secondary: #FFD700;

    --bg-dark: #050505;

    --glass-bg: rgba(10, 10, 10, 0.9);

    --glass-border: rgba(0, 230, 118, 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; }



body {

    background-color: var(--bg-dark);

    color: #ffffff;

    font-family: var(--font-body);

    overflow-x: hidden;

}



a { text-decoration: none; color: #ffffff; transition: 0.3s; }

ul { list-style: none; }



h1, h2, h3, h4 {

    font-family: var(--font-head);

    color: var(--primary);

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 1rem;

}



p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.6; }



.highlight-gold { color: var(--secondary); text-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }

.text-neon { color: var(--primary); text-shadow: 0 0 10px rgba(0, 230, 118, 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; }

.dark-bg { background: rgba(255, 255, 255, 0.02); }

.section-header { text-align: center; margin-bottom: 4rem; }

.section-header h2 { font-size: 2.5rem; }

.center-text { text-align: center; }





/* =========================================

   2. BACKGROUND EFFECTS

   ========================================= */

#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;

}

.hologram-img {

    width: 500px;

    height: 500px;

    object-fit: contain;

    opacity: 0.1; /* Watermark effect */

    animation: rotate-logo 60s linear infinite;

    border-radius: 50%;

   

}

.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;

}

.hologram-icon {

    font-size: 300px; color: var(--primary); opacity: 0.1;

    filter: drop-shadow(0 0 20px var(--primary));

    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. COMPONENTS

   ========================================= */

.btn {

    display: inline-block; background-color: var(--primary); color: #000;

    border: 2px solid var(--secondary); padding: 12px 30px;

    font-family: var(--font-head); font-weight: 700; text-transform: uppercase;

    cursor: pointer; transition: 0.3s; border-radius: 50px;

}

.btn:hover { background-color: var(--secondary); box-shadow: 0 0 15px var(--secondary); transform: translateY(-2px); }

.btn-sm { padding: 8px 20px; font-size: 0.8rem; }



.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); transform: translateY(-5px); box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); }



/* Nav */

.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: 10px; }

.nav-logo-icon { font-size: 2rem; color: var(--secondary); margin-right: 10px; }

.nav-links { display: flex; gap: 2rem; }

.nav-links a { color: #fff; font-family: var(--font-head); font-size: 0.9rem; text-transform: uppercase; }

.nav-links a:hover, .nav-links a.active { color: var(--secondary); }

.nav-btn-container { display: flex; align-items: center; gap: 1rem; }

.nav-logo-img { height: 40px; width: 40px; border-radius: 50%; border: 2px solid var(--secondary); object-fit: cover; }

.mobile-toggle { display: none; font-size: 1.5rem; color: var(--primary); cursor: pointer; }



/* =========================================

   4. PAGE SPECIFIC: ROADMAP

   ========================================= */

.page-hero { padding-top: 150px; text-align: center; padding-bottom: 2rem; }

.page-hero h1 { font-size: 3.5rem; margin-bottom: 0.5rem; }



/* Completed Grid */

.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }

.completed-card { text-align: center; }

.check-icon {

    font-size: 2rem; color: var(--secondary); margin-bottom: 1rem;

    border: 2px solid var(--secondary); width: 60px; height: 60px;

    display: flex; align-items: center; justify-content: center;

    border-radius: 50%; margin: 0 auto 1rem;

    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);

}



/* TIMELINE SECTION */

.timeline-container { position: relative; max-width: 900px; margin: 0 auto; padding: 40px 0; }

.timeline-beam {

    position: absolute; content: ''; width: 2px; height: 100%;

    background: linear-gradient(180deg, transparent, var(--primary), var(--secondary), transparent);

    left: 50%; transform: translateX(-50%); top: 0; box-shadow: 0 0 15px var(--primary); z-index: 1;

}



.timeline-item { padding: 10px 40px; position: relative; width: 50%; box-sizing: border-box; z-index: 2; }

.timeline-item.left { left: 0; text-align: right; }

.timeline-item.right { left: 50%; text-align: left; }



.timeline-dot {

    position: absolute; width: 20px; height: 20px; background: var(--bg-dark);

    border: 3px solid var(--secondary); border-radius: 50%; top: 30px;

    right: -10px; z-index: 3; box-shadow: 0 0 10px var(--secondary);

}

.timeline-item.right .timeline-dot { left: -10px; }



.timeline-content { padding: 20px 30px; position: relative; border-radius: 10px; }

.phase-badge {

    display: inline-block; background: var(--primary); color: #000;

    font-family: var(--font-head); font-weight: bold; padding: 5px 15px;

    border-radius: 4px; margin-bottom: 10px; font-size: 0.9rem;

}



/* Milestone List Styling (Green Hover Effect) */

.milestone-list { margin-top: 1rem; padding: 0; }

.milestone-list li {

    padding: 12px 15px; margin-bottom: 8px; border-radius: 8px;

    transition: background-color 0.3s ease, transform 0.2s ease;

    display: flex; align-items: center; gap: 10px; font-size: 1.05rem;

    border-bottom: 1px solid rgba(255,255,255,0.05); color: #ddd;

}

.timeline-item.left .milestone-list li { flex-direction: row-reverse; }



/* GREEN HOVER EFFECT */

.milestone-list li:hover {

    background-color: rgba(0, 230, 118, 0.2);

    cursor: default; border-color: var(--primary);

    transform: translateX(5px);

}

.timeline-item.left .milestone-list li:hover { transform: translateX(-5px); }



.milestone-list li.completed { color: var(--secondary); text-decoration: line-through; opacity: 0.8; }

.milestone-list li i { color: var(--primary); }



/* Expansion Grid */

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }

.expand-card h3 { display: flex; align-items: center; gap: 10px; color: #fff; margin-bottom: 1rem; }

.expand-card ul li { display: flex; align-items: center; margin-bottom: 10px; color: #ccc; }

.expand-card ul li::before { content: '›'; color: var(--secondary); font-size: 1.5rem; margin-right: 10px; line-height: 0; }



/* Long Term Vision */

.vision-card { text-align: center; border: 2px solid var(--primary); background: linear-gradient(135deg, rgba(0, 230, 118, 0.1), rgba(0,0,0,0.9)); max-width: 800px; margin: 0 auto; }

.vision-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 3rem; margin-top: 2rem; }

.vision-item { display: flex; flex-direction: column; align-items: center; width: 150px; }

.vision-item i { font-size: 3rem; color: var(--secondary); margin-bottom: 1rem; text-shadow: 0 0 15px var(--secondary); }

.vision-item p { font-weight: bold; color: #fff; }



/* 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-brand { max-width: 300px; }

.footer-brand h2 { font-family: 'Orbitron', sans-serif; font-size: 2.5rem; color: var(--primary); margin-bottom: 0.5rem; letter-spacing: 2px; }

.footer-brand p { color: #888; font-size: 1rem; margin-bottom: 0.5rem; }

.footer-brand p:last-child { color: var(--secondary) !important; font-weight: bold; margin-top: 1rem; }

.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 { max-width: 400px; }

.footer-form h4 { font-family: 'Orbitron', sans-serif; color: var(--primary) !important; margin-bottom: 1.5rem; font-size: 1.1rem; letter-spacing: 1px; text-transform: uppercase; }

.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; }



/* Mobile Responsive */

@media (max-width: 900px) {

    .timeline-beam { left: 30px; }

    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }

    .timeline-item.left, .timeline-item.right { left: 0; text-align: left; }

    .timeline-dot { left: 20px; }

    .timeline-item.right .timeline-dot { left: 20px; }

    .grid-2, .grid-4 { grid-template-columns: 1fr; }

    .timeline-item.left .milestone-list li { flex-direction: row; }

    .footer-content { flex-direction: column; text-align: center; }

    .input-group { justify-content: center; }

}

@media (max-width: 768px) {

    .nav-links { display: none; }

    .mobile-toggle { display: block; padding-right: 20px;}

    .nav-btn-container {

        gap: 10px; /* Smaller gap on mobile */

    }

}