* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* open-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v40-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/open-sans-v40-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/open-sans-v40-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/open-sans-v40-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/open-sans-v40-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/open-sans-v40-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}
@font-face {
  font-family: 'Nunito-Bold';
  src: url('/assets/fonts/Nunito-Bold.woff2') format('woff2'),
       url('/assets/fonts/Nunito-Bold.woff') format('woff'),
       url('/assets/fonts/Nunito-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Nunito-Black';
  src: url('/assets/fonts/Nunito-Black.woff2') format('woff2'),
       url('/assets/fonts/Nunito-Black.woff') format('woff'),
       url('/assets/fonts/Nunito-Black.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
html, body {
    min-height: 100vh;
	height: auto;
    margin: 0;
    padding: 0;
}
body {
    font-family: "Open Sans", sans-serif;
    background: linear-gradient(90deg,
        #013f22,  /* Dark Forest Green */
        #016c34,  /* Deep Green */
        #019943,  /* Medium Bold Green */
        #01d145,  /* Your Vibrant Green */
        #02b03c,  /* Slightly darker accent */
        #027d2f,  /* Rich supportive tone */
        #014d1e   /* Grounding dark green */
    );
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
	padding-bottom: 20px;
    position: relative;
    min-height: 100vh;
	}
.main-drop-down{
    overflow: auto;
    position: fixed;
    left: -100%;
    width: 100%;
    max-width: 450px;
    background-color: #111111;
    padding: 20px 20px;
    transition: 0.5s;
    box-shadow: 0 0 80px -20px rgb(0 0 0);
    z-index: 14;
}
.drop-down li{
    background: #01d145;
    list-style: none;
    text-align: center;
    padding: 10px 0px;
    border-bottom: 1px soild #333333;
	color: #ffffff;
}

.top-menu h1 {
    font-size: 70px;
    font-weight: 700;
    letter-spacing: 5px;
    color: #fff;
    text-align: center;
    font-family: Nunito-Black;
    text-transform: uppercase;
	margin: 25px 0 20px 0;
}
.top-menu h1 span {
    display: block;
    font-size: 30px;
    margin-top: 0px;
    letter-spacing: 2px;
}
.higher-text {
    color: #ffffff;
    position: absolute;
    width: auto;
    height: auto;
    text-align: center;
    left: 50%;
    top: 65%;
    transform: translate(-50%, -50%);
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.7);
    line-height: 40px;
    border-radius: 20px;
    font-size: 30px;
    padding: 10px 20px;
	display: none;
	pointer-events: none;
	user-select: none;
}
.token-action-logo:active .higher-text {
	display: normal;
}


.token-action-logo {
    position: relative;
    height: 300px;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 13;
    background-image: url(/assets/images/believe-button.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    margin: 0 auto;
	touch-action: manipulation; 
}
.token-action-logo:hover {
    cursor: pointer;
}
.token-action-logo.active {
    background-image: url(/assets/images/believe-button-action.png);
}
.token-action-logo img {
    max-width: 50%;
    max-height: 100%;
}
.top-menu {
    user-select: none;
    padding: 100px 10px 0px 10px;
    display: flex;
    flex-direction: column;
}
.mid-section {
    display: flex;
    position: relative;
	 user-select: none;           /* Standard property */
    -webkit-user-select: none;   /* For Safari and older versions of Chrome */
    -moz-user-select: none;      /* For Firefox */
    -ms-user-select: none;       /* For Internet Explorer/Edge (pre-Chromium) */
}
.higher-count {
    font-size:60px;
    letter-spacing: 5px;
    color: #fff;
    text-align: center;
    font-weight: 900;
    flex-grow: 1;
	font-family: 'Nunito-Bold';
}
ul.countery-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 18px;
    border-bottom: 1px solid #333333;
	color: #ffffff;
}

ul.countery-list {list-style: none;font-family: 'Open Sans';}

span.c-img img {
    width: 28px;
    border-radius: 4px;
}

span.c-img {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-menu {
    position: absolute;
    left: 50%;
    background-color: #fff;
    width: 100%;
    max-width: 1000px;
    display: flex;
    align-items: center !important;
    gap: 20px;
    top: 0;
    border-radius: 0px 0px 30px 30px;
    padding: 5px 20px 5px;
    cursor: pointer;
    font-family: 'Open Sans';
    font-weight: 700;
    transform: translateX(-50%);
    z-index: 15;
	align-items: center;
    justify-content: center;
}

.main-menu img {
    max-width: 50px;
}
img.top-logo {
    max-width: 65px;
	border-radius: 100px;
}
.leader-name {
    flex-grow: 1;
    font-size: 25px;
    display: none;
}

.arrow_img {
    display: flex;
    transform: rotate(180deg);
    width: 35px;
    height: 35px;
    background-color: #01d145;
    color: #fff;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
}
.arrow_img:hover {
    background-color: #013f22;
}

.arrow_img svg {
    width: 20px;
    height: auto;
}
.menu-wraper.active .arrow_img {
    transform: rotate(0deg);
}
.countery-name {
    flex-grow: 1;
}
.main-menu .social_links {
    margin-left: auto;
}
.social_links a.btn {
    color: #222222;
    font-size: inherit;
    border: none;
    margin: 0 10px;
    padding: 0;
    width: auto;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}
.social_links a.btn:hover {
    color: #013f22;
}
.higher-message {
    font-size: 28px;
    color: #fff;
    text-align: center;
    font-weight: 700;
    padding: 15px 15px;
    z-index: 999999;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 600px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    letter-spacing: 3px;
	display: none;
}
.higher-message.achieved {
	display: block !important;
}
.top-list-section {
    flex-grow: 1;
    font-family: 'Open Sans';
    display: flex;
    justify-content: space-between;
    font-size: 24px;
}

.top-list-section > div {
    display: flex;
    align-items: center;
}
.menu-wraper.active .top-list-section {
    display: none;
}
.menu-wraper.active .leader-name {
    display: block;
}
.top-list-section .c-img img {
    width: 40px;
	margin-right: 5px;
}
.menu-wraper.active .main-drop-down {
    left: 0;
    height: 100vh;
    padding-bottom: 100px;
	z-index: 9999;
}
a.tweet-btn , .send-tele, a.btn {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Open Sans';
    font-weight: 700;
    border: 2px solid #fff;
    border-radius: 20px;
    padding: 15px 25px;
    letter-spacing: 2px;
    position: relative;
    z-index: 99;
    margin: 0;
}

a.tweet-btn:hover, .send-tele:hover {
	background: #ffffff;
	color: #222222;
}

.token-contract {
    text-align: center;
    color: #fff;
    font-family: 'Open Sans';
    padding: 15px 0px;
    position: relative;
    z-index: 99;
	margin: 25px 0;
	display: flex;
    justify-content: center;
}
.token-contract span {
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
	gap: 10px;
}
.token-contract span:hover {
    background: #111111;
}

.footer-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 500px;
    position: relative;
    margin: 0 auto 25px auto;
}
.top-menu .social_links {
	display: none;
}
.disclaimer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #ffffff;
    font-size: 12px;
    line-height: 22px;
    padding: 15px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3); /* Optional: Background for readability */
    box-sizing: border-box;
}

.main-drop-down .logo-area {
    display: flex;
    align-items: center;
    vertical-align: middle;
    gap: 20px;
    font-size: 20px;
    line-height: 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    margin: 0 0 25px 0;
    justify-content: center;
}


@media(max-width:767px){
    .token-contract {
    font-size: 12px;
    overflow: hidden;
}

.token-home, .main-menu .social_links {
    display: none;
}
.top-menu .social_links {
    background: #000000;
    display: flex;
    gap: 25px;
    justify-content: center;
    padding: 15px 0 10px 0;
}
.top-menu .social_links svg, .top-menu .social_links img {
  width: 20px !important;
  height: 20px !important;
}
.social_links a.btn {
    color: #ffffff;
}
    .footer-actions {
        max-width: 90%;
    margin: 25px auto 10px auto;
    }
a.tweet-btn, .send-tele, a.btn {
    font-size: 12px;
    padding: 10px 15px;
}

.top-menu {
    padding: 0;
}

    .main-menu img {max-width: 30px;}

.top-list-section {
    font-size: 18px;
}

.arrow_img {
    width: 35px;
    height: 35px;
    transform: rotate(0deg);
}

.arrow_img svg {
    width: 20px;
}
.token-action-logo {
    position: relative;
    height: 250px;
    width: 250px;
}
.main-menu {position: fixed; top: initial;bottom: 0;border-radius: 20px 20px 0px 0px;padding: 16px 16px 8px;z-index:99999999;}
.menu-wraper {
  position: relative;
  min-height: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}
.menu-wraper.active .arrow_img {
    transform: rotate(180deg);
}
.top-menu h1 {
    font-size: 30px;
	line-height: 50px;
	margin: 25px 0 5px 0;
}
.top-menu h1 span {
    font-size: 16px;
}
.higher-count {
    font-size: 38px;
}
.higher-text {
    line-height: 25px;
    font-size: 15px;
    padding: 5px 10px
}
.higher-message {
    font-size: 25px;
    letter-spacing: 3px;
    width: 90%;
    margin: 0 auto;
}
.token-contract span {
    font-size: 10px;
}
.token-contract img {
    max-width: 20px;
	max-height: 20px;
}
.disclaimer {
    bottom: 60px;
}
}


@media (max-width: 480px) {
    a.tweet-btn, .send-tele, a.btn {
        font-size: 12px;
        padding: 10px 15px;
    }
    .token-contract span {
        font-size: 8px;
    }



}