
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', sans-serif;
}

body{
    background:#000;
    color:#fff;
}

/* HEADER */
.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 30px;
    position:relative;
}

.logo{
    color:#b6ff00;
    font-size:22px;
    font-weight:bold;
}

/* TOGGLE BUTTON */
.menu-toggle{
    display:none;
    font-size:26px;
    color:#b6ff00;
    cursor:pointer;
}

/* NAV */
.nav{
    display:flex;
    gap:20px;
    background:#000;
    border:2px solid #b6ff00;
    border-radius:30px;
    padding:8px 20px;
}

.nav a{
    text-decoration:none;
    color:#fff;
    font-size:14px;
}

.nav a.active{
    background:#b6ff00;
    color:#000;
    padding:5px 15px;
    border-radius:20px;
}

.page-btn{
    background:#b6ff00;
    color:#000;
    padding:6px 15px;
    border-radius:20px;
    font-size:13px;
}

/* HERO */
.hero{
    text-align:center;
    padding:60px 20px;
}

.hero h1{
    font-size:80px;
    font-weight:800;
    background:linear-gradient(90deg,#b6ff00,#7fff00);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero h2{
    font-size:28px;
    color:#ff4dd2;
    margin-top:10px;
}

.hero p{
    max-width:800px;
    margin:20px auto;
    font-size:14px;
    color:#aaa;
    line-height:1.6;
}

.btn{
    display:inline-block;
    margin-top:20px;
    padding:10px 20px;
    border:2px solid #00eaff;
    color:#00eaff;
    font-size:13px;
}

/* SIDE ELEMENTS */
.left-bar, .right-bar{
    position:absolute;
    top:40%;
    width:20px;
    height:150px;
    background:linear-gradient(#b6ff00,transparent);
    border-radius:20px;
}

.left-bar{
    left:10px;
}

.right-bar{
    right:10px;
}

/* MOBILE RESPONSIVE */
@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    .nav{
        display:none;
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        flex-direction:column;
        border:none;
        border-top:2px solid #b6ff00;
        border-radius:0;
        padding:20px 0;
        text-align:center;
    }

    .nav.show{
        display:flex;
    }

    .nav a{
        padding:10px 0;
        border-bottom:1px solid #222;
    }

    .hero h1{
        font-size:45px;
    }

    .hero h2{
        font-size:20px;
    }

    .hero p{
        font-size:12px;
    }

    .page-btn{
        display:none;
    }
}


/* ABOUT SECTION */
.about{
    padding:80px 20px;
    background:#000;
}

.about-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

/* LEFT */
.about-content{
    flex:1;
}

.about-content h2{
    font-size:36px;
    color:#b6ff00;
    margin-bottom:20px;
}

.about-content p{
    font-size:14px;
    color:#aaa;
    line-height:1.7;
    margin-bottom:15px;
}

.about-btn{
    display:inline-block;
    margin-top:10px;
    padding:10px 20px;
    border:2px solid #00eaff;
    color:#00eaff;
    font-size:13px;
    text-decoration:none;
    transition:0.3s;
}

.about-btn:hover{
    background:#00eaff;
    color:#000;
}

/* RIGHT */
.about-image{
    flex:1;
    text-align:center;
}

.about-image img{
    width:100%;
    max-width:450px;
    border-radius:15px;
    border:2px solid #b6ff00;
    box-shadow:0 0 20px rgba(182,255,0,0.3);
}

/* RESPONSIVE */
@media(max-width:768px){

    .about-container{
        flex-direction:column;
        text-align:center;
    }

    .about-content h2{
        font-size:28px;
    }

    .about-image img{
        max-width:100%;
    }
}



/* ROADMAP */
.roadmap{
    padding:80px 20px;
    background:#000;
}

.roadmap-title{
    text-align:center;
    font-size:38px;
    color:#b6ff00;
    margin-bottom:50px;
}

/* TIMELINE LINE */
.timeline{
    position:relative;
    max-width:1000px;
    margin:auto;
}

.timeline::after{
    content:'';
    position:absolute;
    width:3px;
    background:#b6ff00;
    top:0;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
}

/* CONTAINER */
.container{
    padding:20px 40px;
    position:relative;
    width:50%;
}

/* LEFT / RIGHT */
.left{
    left:0;
}

.right{
    left:50%;
}

/* DOT */
.container::before{
    content:'';
    position:absolute;
    width:15px;
    height:15px;
    background:#b6ff00;
    border-radius:50%;
    top:25px;
    right:-8px;
    z-index:1;
}

.right::before{
    left:-8px;
}

/* CONTENT BOX */
.content{
    background:#111;
    padding:20px;
    border-radius:10px;
    border:1px solid rgba(182,255,0,0.3);
    transition:0.3s;
}

.content:hover{
    transform:translateY(-5px);
    box-shadow:0 0 15px rgba(182,255,0,0.3);
}

/* TEXT */
.content h3{
    color:#b6ff00;
    margin-bottom:10px;
}

.content p{
    font-size:13px;
    color:#aaa;
    margin-bottom:10px;
}

.content span{
    font-size:12px;
    color:#00eaff;
}

/* RESPONSIVE */
@media(max-width:768px){

    .timeline::after{
        left:20px;
    }

    .container{
        width:100%;
        padding-left:60px;
        padding-right:20px;
    }

    .container::before{
        left:15px;
    }

    .right{
        left:0;
    }
}


/* FAQ */
.faq{
    padding:80px 20px;
    background:#000;
    text-align:center;
}

.faq-title{
    font-size:36px;
    color:#b6ff00;
    margin-bottom:40px;
}

.faq-container{
    max-width:800px;
    margin:auto;
}

/* ITEM */
.faq-item{
    margin-bottom:15px;
    border:1px solid rgba(182,255,0,0.3);
    border-radius:10px;
    overflow:hidden;
}

/* QUESTION */
.faq-question{
    padding:15px 20px;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#111;
    color:#fff;
    font-size:15px;
    transition:0.3s;
}

.faq-question:hover{
    background:#1a1a1a;
}

/* ANSWER */
.faq-answer{
    max-height:0;
    overflow:hidden;
    background:#000;
    color:#aaa;
    font-size:13px;
    line-height:1.6;
    padding:0 20px;
    transition:0.4s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer{
    max-height:200px;
    padding:15px 20px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}

/* ICON */
.faq-question span{
    font-size:20px;
    color:#b6ff00;
    transition:0.3s;
}

/* RESPONSIVE */
@media(max-width:768px){
    .faq-title{
        font-size:28px;
    }
}


/* FOOTER */
.footer{
    background:#000;
    padding:60px 20px 20px;
    border-top:1px solid rgba(182,255,0,0.2);
}

/* CONTAINER */
.footer-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

/* LOGO */
.footer-logo{
    color:#b6ff00;
    font-size:26px;
    margin-bottom:15px;
}

/* TEXT */
.footer-col p{
    font-size:13px;
    color:#aaa;
    line-height:1.6;
}

/* HEADINGS */
.footer-col h3{
    color:#fff;
    margin-bottom:15px;
}

/* LINKS */
.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:10px;
}

.footer-col ul li a{
    text-decoration:none;
    color:#aaa;
    font-size:13px;
    transition:0.3s;
}

.footer-col ul li a:hover{
    color:#b6ff00;
    padding-left:5px;
}

/* SOCIAL */
.socials{
    display:flex;
    gap:15px;
}

.socials a{
    width:35px;
    height:35px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #b6ff00;
    border-radius:50%;
    color:#b6ff00;
    text-decoration:none;
    transition:0.3s;
}

.socials a:hover{
    background:#b6ff00;
    color:#000;
}

/* BOTTOM */
.footer-bottom{
    text-align:center;
    margin-top:40px;
    font-size:12px;
    color:#666;
    border-top:1px solid rgba(255,255,255,0.1);
    padding-top:15px;
}

/* RESPONSIVE */
@media(max-width:900px){
    .footer-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .socials{
        justify-content:center;
    }
}