:root {
    --primary: #ffb703;
    --bg: #0b0b0b;
    --card: #141414;
    --border: #222;
}
html {
  scroll-behavior: smooth;
}


* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    background: radial-gradient(circle at top, #111, #000);
    color: #fff;
}

/* ===== NAV ===== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 28px;
    background: rgba(5, 5, 5, .9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #111;
    position: sticky;
    top: 0;
    z-index: 1000;
}

#logo {
    text-decoration: none;
    color: var(--primary);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;

}

.logo img {
    width: 38px;
    height: 38px
}

.menu {
    display: flex;
    gap: 28px;
    align-items: center;
}

.menu-link {
    position: relative;
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
}

.menu-link:hover,
.menu-link.active {
    color: var(--primary)
}

.menu-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: .3s;
}

.menu-link:hover::after,
.menu-link.active::after {
    width: 100%
}

.menu-btn {
    color: #555;
    font-size: 14px;
    cursor: not-allowed;
    text-align: center;
}

.menu-btn span {
    display: block;
    font-size: 9px;
    color: var(--primary);
    margin-top: 3px;
}

/* ===== HERO ===== */
header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #111, #1c1c1c);
    position: relative;
    z-index: 0;

}

.bg-video {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: -1; 
}


/* Youtube Video Section Start */


.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.7),
    0 0 25px rgba(255, 183, 3, 0.25);
}





/* Youtube Video Section End */

@keyframes rotateX360 {
    0% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(90deg);
    }

    100% {
        transform: rotateY(0deg);
    }
}
.glass{
    
    background: rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 5px;
    padding: 1px 5px;
    /* border: 1px solid rgba(255,255,255,0.18); */
    box-shadow:
        0 10px 40px rgba(0,0,0,0.8),
        inset 0 0 20px rgba(255,255,255,0.05);
        border: none !important;
        
}
.glassi{
    display: inline-block;
        
}

.bgt{
   background:  rgba(0, 0, 0, 0.8) !important;
   border: none !important;

}


header h1 {
    font-size: 52px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

header p {
    font-size: 18px;
    color: #aaa;
}


#msg{
    display:block;
    margin:0px 3px;
    font-size:12px;
    text-align: left;
}
.error{
    color:#ff6b6b;
}
.success{
    color:#51cf66;
}




/* ===== BUTTON ===== */
.btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--primary), #ffd166);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: .3s;
    cursor: pointer;
}

.btnDisable{
    cursor: not-allowed;
    pointer-events:none;
    background: linear-gradient(135deg, #998e75 , #d4c6a8);
}
.loader{
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #00000088;
    text-align: center;
    top:0;
    left: 0;
    border-radius: 18px;
    cursor: not-allowed;

}
.loaderinside {
display: block;
  width: 150px;
  height: 22px;
  border-radius: 20px;
  background:
   linear-gradient(orange 0 0) 0/0% no-repeat
   lightblue;
  animation: l2 2s infinite steps(20);
}
@keyframes l2 {
    100% {background-size:110%}
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 183, 3, .35);
}

/* ===== SECTION ===== */
section {
    padding: 20px;
    max-width: 1050px;
    margin: auto;
}

h2 {
    text-align: center;
    margin-bottom: 45px;
    font-size: 34px;
}

.card {
    background: linear-gradient(180deg, #151515, #0e0e0e);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    transition: .3s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .6);
}

.card ul,
.card ol {
    line-height: 1.9;
    color: #ccc;
}

.chart {
    width: 550px;
    display: block;
    margin: 0 auto;
}


/* ===== ROADMAP ===== */
.roadmap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.roadmap-item {
    background: linear-gradient(180deg, #161616, #0e0e0e);
    border: 1px solid #222;
    border-radius: 18px;
    padding: 26px;
    position: relative;
    transition: .3s;
}

.roadmap-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .6);
}

.roadmap-phase {
    font-size: 12px;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 10px;
}

.roadmap-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffb703;
    margin-bottom: 12px;
}

.roadmap-item ul {
    padding-left: 18px;
    margin: 0;
    color: #ccc;
    line-height: 1.7;
}

/* ===== CLEAN ROADMAP ===== */
.roadmap-clean {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.roadmap-box {
    background: linear-gradient(180deg, #161616, #0f0f0f);
    border: 1px solid #222;
    border-radius: 18px;
    padding: 26px;
    transition: .3s;
    position: relative;
    text-align: center;
}

.roadmap-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .55);
}

.roadmap-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 183, 3, .15);
    color: #ffb703;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
    margin: 0 auto;

}

.roadmap-icon img {
    width: 50px;
    display: inline-block;
    margin-bottom: 10px;
}

.roadmap-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.roadmap-text {
    font-size: 14px;
    color: #bbb;
    line-height: 1.6;
}

.roadmap-note {
    margin-top: 22px;
    font-size: 13px;
    color: #888;
    text-align: center;
}


/* ===== CA BOX ===== */
.ca-box {
    background: #000;
    border: 1px dashed var(--primary);
    padding: 18px;
    border-radius: 14px;
    word-break: break-all;
    text-align: center;
    font-size: 14px;
    color: var(--primary);
    cursor: pointer;
}

.add-box {
    display: inline-block;
    background: #000;
    border: 1px dashed var(--primary);
    padding: 0px 6px;
    border-radius: 4px;
    word-break: break-all;
    text-align: center;
    font-size: 12px;
    color: var(--primary);
    cursor: pointer;    
}

/* ===== FORM ===== */
form input,
form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    background: #0b0b0b;
    border: none;
    color: #fff;
    resize: vertical;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

form textarea {
    max-height: 250px;
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    padding: 20px;
    background: #050505;
    font-size: 14px;
    color: #666;
    border-top: 1px solid #111;
}

.logoFooter img {
    height: 80px;
}

/* ===== FOOTER SOCIAL ===== */
.footer-social {
    margin: 18px 0 10px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.footer-social a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0b0b0b;
    border: 1px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #bbb;
    font-size: 18px;
    transition: all .3s ease;
}

.footer-social a:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 183, 3, .25);
}

.footer-social a img {
    height: 40px;
}



/* ===== RESPONSIVE MENU ===== */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 2px;
    background: var(--primary);
    display: block;
    transition: 0.3s ease;
}


.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

#litepaper{
    margin: 0 !important;
    border:none !important;
    border-radius: 10px !important;
    padding:10px !important;
}


/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

    nav {
        padding: 14px 18px;
    }

    .menu-toggle {
        display: flex;
    }

    .menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, .97);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 22px;
        padding: 30px 0;
        display: none;
        border-bottom: 1px solid #111;
    }

    .menu.open {
        display: flex;
    }

    .menu-link,
    .menu-btn {
        font-size: 16px;
    }

    header {
        padding: 70px 20px 20px 20px;
        height: 100vh !important;
    }

    header .headerLogo img {
        width: 220px;
        height: auto;
    }

    h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .card {
        padding: 22px;
    }

    .roadmap-clean {
        gap: 18px;
    }

    footer {
        font-size: 13px;
    }

    .footer-social a {
        width: 44px;
        height: 44px;
    }

    .footer-social a img {
        height: 30px;
    }

    .chart {
        width: 100%;
    }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {

    header h3 {
        font-size: 16px;
    }

    .btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .logo {
        font-size: 18px;
    }

    .logo img {
        width: 32px;
        height: 32px;
    }

    .chart {
        width: 100%;
    }
}