/* General Styles */
body {
    font-family: 'Quantico', sans-serif;
    margin: 0;
    padding: 0;
    
    color: #333;
    background: linear-gradient(45deg, #f5f5f7, #f5f5f7);
    background-size: 400% 400%;
    animation: backgroundAnimation 15s ease infinite;
    
}



@keyframes backgroundAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.navbar-brand img {
    height: 30px;
}
.navbar-light .navbar-toggler{
    border: 0px;
}
.shadow-sm{
    box-shadow:none !important;
}

.bg-white{
    background: transparent !important;
}

.navbar .nav-link {
    color: #333 !important;
    font-weight: 500;
    margin-right: 15px;
}

.navbar .btn-primary {
    background-color: #13b7eb;
    border: none;
    border-radius: 25px;
    color:#FFF !important;
}

.navbar .container{
    background: #FFF;
    padding: 10px;
    border-radius: 30px;
    margin-top:20px;
}

.hero-section {
    padding: 60px 0;
    background: transparent;
    text-align: center;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    color: #222;
}

.btn-big{
    padding: 15px 25px !important;
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn{
        width: 100%;
        margin-bottom: 5px;
    }
}

.hero-title .highlight {
    background: linear-gradient(90deg, #13b7eb, #ff007a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #555;
    margin-top: 10px;
}



.key-features {
    background: #fff;
    text-align: center;
    margin: 0 auto;
    width: 90%;
    border-radius: 25px;
    margin-top: 50px;
}

.key-features h2 {
    font-size: 2rem;
    font-weight: 700;
}

.key-features .highlight {
    color: #13b7eb;
}

footer {
    background-color: transparent;
    color: #333;
}

footer .footer-links a {
    color: white;
    text-decoration: none;
}

.btn {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
    display: inline-block;
    border-radius: 25px;
    padding: 7px 24px;
    text-align: center;
    color: #fff !important;
    background: linear-gradient(90deg, #13b7eb, #ff007a);
    transition: background-color .25s ease-in-out;
    cursor: pointer;
    border: 0px;
}

.btn-pink-blue{
    background: linear-gradient(90deg, #ff007a, #13b7eb);
    color: #fff !important;
}

.btn-white{
    background: #ff007a !important;
    color: #fff !important;
}

.btn-blue{
    background: #13b7eb !important;
    color: #fff !important;
}



.card-header{
    border:0px;
    background: none;
}


.nodes-section {
   
    margin-right: auto;
    margin-left: auto;
    max-width: 1440px;
    min-height: 600px;
    border-radius: 64px;
    padding: 200px var(--container-offset) 200px;
    padding-top: 200px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #FFFFFF;
    /* background-image: url(images/nodes-bg.png); */
    background-image: url(images/star_bg.png);
    width: 90%;
    margin-top: 50px;
    background-attachment: fixed;
}

.guardians_box {
   
    margin-right: auto;
    margin-left: auto;
    max-width: 1440px;
    min-height: 800px;
    border-radius: 64px;
    padding: 200px var(--container-offset) 200px;
    padding-top: 200px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('images/gradient.png');
    width: 90%;
    margin-top: 50px;
}

.guardians_info {
    font-weight: 400;
    font-size: 22px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: 80px;
    max-width: 800px;
    text-align: left;
    color: #fff;
}

@media (max-width: 767px) {
    .guardians_box {
        padding-top: 80px;
        min-height: 600px;
    }
    .guardians_info {
        margin-left: 20px;
        font-size: 18px;
    }
}

/* Roadmap Styles */
.roadmap-section {
    background-color: transparent;
}

.roadmap {
    position: relative;
    margin: 0 auto;
    padding-top: 60px;
    max-width: 1200px;
    overflow-x: auto;
    padding-bottom: 50px;
}

.roadmap::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 4px;
    background: transparent;
}

.roadmap-item {
    position: relative;
    flex: 1;
    text-align: center;
    padding: 25px 20px;
    min-width: 350px;
    
    margin: 10px;
    border-radius: 25px;

    background-size: cover;
    background-repeat: no-repeat;
    border: 2px solid #13b7eb;
    color:#13b7eb;
    background-attachment: fixed;
    background-position: center;
    box-shadow: 0px 10px 5px #e8e5e9;
}



.roadmap-date {
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 20px;
    margin-top: 20px;
}

.roadmap-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.5rem;
}

.roadmap-item ul li {
    margin-bottom: 0.5rem;
}



@media (max-width: 767px) {
    .roadmap {
       
        padding-top: 30px;
    }

    .roadmap::before {
        display: none;
    }

    .roadmap-item {
        padding: 20px 0;
    }

    .roadmap-item::before {
        top: -20px;
    }
}




/* Tokenomics Section Styles */
.tokenomics-section {
    color: #FFFFFF;




    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: auto;
    margin-left: auto;
    max-width: 1440px;
    min-height: 800px;
    border-radius: 64px;
    padding: 200px var(--container-offset) 200px;
    padding-top: 200px;
    /*background-image: url('images/tokenomics.png');*/
    background: linear-gradient(45deg, #13b7eb, #ff007a);
    width: 90%;
    margin-top: 50px;
    
}

.tokenomics-section h2 {
    font-size: 2rem;
    font-weight: 700;
}

.tokenomics-section p {
    font-size: 1rem;
    color: #FFFFFF;
}

.tokenomics-list {
    list-style: none;
    padding: 0;
    font-size: 1rem;
    margin-top: 20px;
}

.tokenomics-list li {
    margin-bottom: 1.9rem;
    display: flex;
    align-items: center;
}

.tokenomics-list li span {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 15px;
    border-radius: 3px;
}

.tokenomics-list li strong {
    font-weight: 600;
}

#tokenomicsChart {
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin: 0 auto;
}
@media (max-width: 767px) {
#tokenomicsChart {
    width: 70%;
    max-width: 500px;
    height: 400px;
    margin: 0 auto;
}
.tokenomics-list {

    margin-left: 30px;
}

}

/* Airdrop Game Mechanics Styles */
.airdrop-section {
    background-color: transparent;
}

.airdrop-section h2 {
    font-size: 2rem;
    font-weight: 700;
}

.airdrop-section p {
    font-size: 1rem;
    color: #555;
}

.airdrop-features {
    list-style: none;
    padding: 0;
}

.airdrop-features li {
    margin-bottom: 1rem;
}

.airdrop-features h5 {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.airdrop-features p {
    margin: 0;
    color: #333;
}

/* Airdrop Allocation List Styles */
.airdrop-allocation {
    list-style: none;
    padding: 0;
    font-size: 1rem;
    column-count: 2;
    column-gap: 40px;
}

.airdrop-allocation li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 25px;
    break-inside: avoid;
}

.airdrop-allocation li::before {
    content: '•';
    color: #13b7eb;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    line-height: 1;
}

.blue-text{
    color: #13b7eb; 
}

@media (max-width: 767px) {
    .airdrop-features li {
        margin-bottom: 1.5rem;
    }

    .airdrop-features h5 {
        font-size: 1.1rem;
    }
}

.color-white{
    color: #FFFFFF;
}
.color-pink{
    color: #ff007a;
}
.color-grey{
    color: #333 !important;
}

.qvrs-token-section .card-text{
    font-size: 18px;
}

.qvrs-token-section{
   
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(images/star_bg.png);
    color: #FFFFFF;
    background-attachment: fixed;
    background-position: center;
    box-shadow: 0px 10px 5px #e8e5e9;
    padding-top: 100px;
    padding-bottom: 100px;
    border-radius: 64px;
    margin-top: 50px;
    margin-left: 100px;
    margin-right: 100px;
    
}

@media (max-width: 767px) {
    .qvrs-token-section{
        margin-top: 10px;
        margin-left: 10px;
    margin-right: 10px;
    background-image: url('images/star-bg-mobile.png');
    background-attachment:initial;
    background-size: contain;
    background-repeat: repeat-y;
    }
 
    .nodes-section{

    background-image: url('images/star-bg-mobile.png');
    background-attachment:initial;
    }

  
 
}

.bg-token{
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background: linear-gradient(90deg, #f9f9f927, #f5daff3d);
    min-height: 250px;
    border-radius: 20px;
    text-align: center;
}
.bg-nodes{
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background: linear-gradient(90deg, #f9f9f927, #f5daff3d);
    min-height: 120px;
    border-radius: 20px;
    text-align: center;
    border:0px;
}

.bg-nodes-blue{
    background-color: transprent;
    border: 2px solid #ffffff;;
}

.bg-nodes .card-header{
    font-size: 25px;
}

.bg-token .card-header{
    font-size: 25px;
}

.big-paragraph{
    font-size: 20px;
}

.video-size{
    width:100%; height:100%;
}

@media (max-width: 767px) {

    .big-paragraph{
        font-size: 16px;
    }
    .video-size{
        width:100%; height:100%;
    }
    
}

#message {
    text-align: center;
    font-size: 20px;
    padding: 0px;
    margin-top: 0px;
    color: #333;
}

.footer-links a {
    font-size: 24px; /* Adjust icon size */
  }
  .footer-links a i {
    vertical-align: middle;
  }


.white-card{
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 20px;
}

.svg-icon{
    margin: 0 auto;
    display: block;
    height: 100%;
}