:root {
    --black-color: #1A1A1A;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Slackey", sans-serif;
    position: relative;
    overflow-x: hidden;
    color: var(--black-color);
    background-color: #e6f0ff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Slackey", sans-serif;
    margin: 0;
    color: var(--black-color);
}

p {
    font-family: "Slackey", sans-serif
    color: var(--black-color);
}

a {
    text-decoration: none;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

img {
    max-width: 100%;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
}

button:focus,
button:hover,
button:active,
button {
    outline: none;
}

:focus-visible {
    outline: none !important;
}
header{
    position: sticky;
    top: 0;
    z-index: 99;
    transition: background 0.3s, box-shadow 0.3s;
}
.main-header.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 10px 0 #000;
}
header .nav-item .nav-link {
    color: var(--black-color);
    font-size: 20px;
}
.header-btn .btn {
    font-size: 20px;
    background: #fff;
    color: var(--primary);
    padding: 10px 30px;
    border-color: #fff;
    box-shadow: 5px 5px 0 0 #000;
}
.header-btn .btn:active,
.header-btn .btn:focus,
.header-btn .btn:hover{
    background-color: #fff !important;
    color: var(--black-color);
    border-color: #fff;
    box-shadow: none;
}
.banner-bg {
    background: url('../img/banner.png') no-repeat center;
    background-size: cover;
    padding: 100px 0 260px;
    position: relative;
    border-bottom: 2px solid #000;
}
.banner-bg:before {
    content: url('../img/banner-img.png');
    position: absolute;
    right: 0;
    top: 0;
}
.banner-content {
    position: relative;
    z-index: 99;
}
.token-address-box {
    background-color: #fff;
    border: 1px solid #000;
    padding: 10px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 110px;
    border-radius: 10px;
    position: relative;
    box-shadow: 4px 4px 0 0 #000;
}
span#copyMsg {
    color: #fff;
    position: absolute;
    right: 40px;
    top: 2px;
}
.token-numb {
    display: flex;
    padding: 0 20px;
}
.token-address-box button {
    font-size: 18px;
    font-weight: 400;
    background-color: #685FEE;
    padding: 12px 5px;
    text-transform: uppercase;
    border-radius: 10px;
    border: 1px solid #000;
    color: #fff;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
}
.token-address-box .token-numb input {
    width: 100%;
    color: #000;
    background: transparent;
    border: 0;
    padding: 0;
    pointer-events: none;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}
.banner-content p {
    font-size: 26px;
    font-weight: 600;
    margin: 25px 0 30px;
}
.banner-content label {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.btn {
    background: #685FEE;
    border: 1px solid #000;
    border-radius: 10px;
    box-shadow: 4px 4px 0 0 #000;
    padding: 10px 30px;
    font-size: 20px;
    text-transform: uppercase;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
}
.btn:hover,
.btn:active,
.btn:focus {
    background-color: #685FEE !important;
    box-shadow: none;
}

/* Marquee Line Css */
.marquee {
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 95px;
    width: 100%;
    border-radius: 0;
    white-space: nowrap;
    background-color: #FFBB03;
    box-shadow: 0 5px 0 0 #000;
    margin-top: 5px;
}
.marquee.marquee-first {
    transform-origin: center;
    transform-box: fill-box;
    width: 100%;
    left: 0;
    z-index: 1;
}
.marquee--inner {
    display: flex;
    width: max-content;
    position: absolute;
    animation: marquee 60s linear infinite;
    top: 18px;
}
.marquee-second .marquee--inner {
    animation: marquee-sec 60s linear infinite;
    animation-delay: 8s;
}
.bbobbi-tx {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}
.bbobbi-tx span {
    margin: 0 20px;
    color: #fff;
}
/* Smooth animations using transforms */
@keyframes marquee {
    0% {
    transform: translateX(0);
    }
    100% {
    transform: translateX(-50%);
    }
}

@keyframes marquee-sec {
    0% {
    transform: translateX(0);
    }
    100% {
    transform: translateX(50%);
    }
}
.about-sec {
    background: url('../img/about-bg.png') no-repeat center;
    background-size: cover;
    padding: 100px 0;
}
.video-box video {
    width: 100%;
    height: 100%;
}
.about-sec p {
    font-size: 25px;
    margin-bottom: 20px;
}
.tokenomics {
    padding: 100px 0 220px;
    background: url('../img/tokenomics-bg.png') no-repeat center;
    background-size: cover;
}
.token-box {
    padding: 20px 40px;
    background: #fff;
    box-shadow: 5px 5px 0 0 #000;
    text-align: center;
    border: 3px solid #000;
    border-radius: 10px;
}
.token-box img {
    display: block;
    text-align: center;
    margin: 0 auto 40px;
}
.token-box a {
    display: block;
}
.roadmap {
    position: relative;
    padding: 100px 0;
}
.roadmap-img1 {
    position: absolute;
    left: 0;
    top: 0;
    max-width: 480px;
    z-index: -1;
}
.roadmap-img2 {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 550px;
    z-index: -1;
}
.roadmap-card {
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    border: 4px solid #000;
    box-shadow: 4px 4px 0 0 #000;
    margin-bottom: 100px;
    position: relative;
    z-index: 9;
    transition: .6s all;
}
.roadmap-card:hover {
    transform: rotate(5deg);
}
.roadmap-card h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 40px;
    color: #fff;
    -webkit-text-stroke: 1px;
    -webkit-text-stroke-color: #000;
    text-shadow: 0px 4px 0 BLACK;
    letter-spacing: -2px;
}
.roadmap-card-inner {
    border: 1px solid #685FEE;
    background: #C3E8FF;
    border-radius: 10px;
    padding: 20px;
}
.roadmap-card-inner h4 {
    font-size: 26px;
    margin-bottom: 15px;
}
.roadmap-card-inner ul li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}
.roadmap-card-inner ul li:before {
    content: url('../img/list-icon.png');
    position: absolute;
    left: -5px;
    top: 0;
}
.roadmap-card:before {
    content: '';
    background: #000;
    width: 10px;
    height: 110px;
    display: block;
    position: absolute;
    bottom: -110px;
    text-align: center;
    margin: 0 auto;
    left: 0;
    right: 0;
}
.roadmap-card:last-child:before {
    display: none;
}
.gallery-container {
  overflow: hidden;
  width: 100%;
  margin-bottom: 30px;
}

.gallery-track {
  display: flex;
  width: max-content;
  animation: scroll 50s linear infinite;
}
.gallery-track2 img,
.gallery-track img {
    max-height: 100%;
    margin-right: 20px;
    flex-shrink: 0;
    border-radius: 10px;
}
.gallery-track2 {
    width: max-content;
    display: flex;
    animation: scroll-right 50s linear infinite;
}
@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.gallery-container a {
    cursor: pointer;
    margin: 0 12px;
    width: 340px;
    height: 340px;
}
footer{
    background: url('../img/footer-bg.png') no-repeat center;
    background-size: cover;
    padding: 40px 0 0;
}
.footer-box {
    background-color: #fff;
    padding: 40px 150px;
    border-radius: 40px;
    box-shadow: 5px 5px 0 0 #000;
    margin-bottom: 550px;
}
.footer-box p {
    font-size: 22px;
    margin-bottom: 40px;
}
.footer-box ul {
    display: flex;
    justify-content: center;
    gap: 0 30px;
}
.footer-box ul li a {
    background: #E1F3FF;
    padding: 15px;
    border-radius: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 5px 0 0 #000;
    transition: .4s all;
}
.footer-box ul li a:hover{
    box-shadow: none;
}
.copyright-text {
    text-align: center;
    background: #000;
    color: #fff;
    font-size: 18px;
    padding: 25px 100px;
    border-radius: 20px;
    width: max-content;
    margin: 0 auto 20px;
}
section.lightslider{
    overflow-x: hidden;
}
/* Media */
@media (max-width: 1199px){
    button.navbar-toggler {
        border: none;
        color: transparent;
    }
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAzMCAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTQgN0gyNlpNNCAxNUgyNlpNNCAyM0gyNloiIGZpbGw9IiM2ODVGRUUiLz4KPHBhdGggZD0iTTQgN0gyNk00IDE1SDI2TTQgMjNIMjYiIHN0cm9rZT0iIzY4NUZFRSIgc3Ryb2tlLW9wYWNpdHk9IjAuNzUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KPC9zdmc+Cg==");
    }
    .nav-item {
        margin-bottom: 20px;
    }
    .offcanvas-header .btn-close{
        opacity: 1;
    }
    .btn-close:focus{
        box-shadow: none !important;
    }
    .navbar-collapse {
        padding: 20px;
    }
    .banner-bg:before {
        max-width: 60%;
    }
    .footer-box {
        padding: 40px 60px;
    }
    .banner-bg{
        z-index: -1;
    }
}
@media (max-width: 991px){
    .banner-bg:after {
        content: '';
        background: #00000061;
        position: absolute;
        right: 0;
        left: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }
    .about-sec p {
        font-size: 20px;
    }
    .gallery-container a {
        width: 250px;
        height: 250px;
    }
    .footer-box p {
        font-size: 18px;
    }
}
@media(max-width: 767px){
    .banner-content p {
        font-size: 20px;
    }
    .token-address-box .token-numb input {
        font-size: 16px;
    }
    .token-address-box button {
        font-size: 16px;
        padding: 8px 4px;
    }
    .token-numb {
        padding: 0 5px;
    }
    .banner-bg:before {
        max-width: 100%;
        right: auto;
        left: 0;
    }
    .navbar-brand img {
        max-width: 100px;
    }
    .bbobbi-tx {
        font-size: 30px;
    }
    .marquee--inner {
        top: 25px;
    }
    .gallery-container a {
        width: 180px;
        height: 180px;
    }
    .tokenomics {
        padding: 80px 0;
    }
    .roadmap-card h2 {
        font-size: 30px;
        color: #fff;
        text-shadow: 0px 2px 0 BLACK;
    }
    .roadmap-card-inner h4 {
        font-size: 22px;
    }
    .roadmap-card-inner ul li {
        font-size: 14px;
    }
    .footer-box {
        padding: 20px;
        margin-bottom: 250px;
    }
    .footer-box p {
        font-size: 16px;
    }
    .footer-box ul {
        gap: 30px;
        flex-wrap: wrap;
    }
    .copyright-text {
        font-size: 14px;
        padding: 15px 20px;
    }
    html,
    body{
        overflow-x: hidden !important;
    }
    .banner-bg:before{
        display: none;
    }
    .banner-bg{
        background: url('../img/banner-img.png');
        overflow-x: hidden;
    }
}