/* CSS will go here */
:root {
--primary-color: #1e66f5;
--secondary-color: #0b1426;
--text-color: #ffffff;
--text-secondary: #768396;
--bg-color: #0b1426;
--card-bg: #17223b;
--green: #16c784;
--red: #ea3943;
--border-color: #2a3a57;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Manrope", sans-serif;
}
body {
background-color: #17171A!important;
color: var(--text-color);
line-height: 1.6;
}
.manrope-<uniquifier> {
font-family: "Manrope", sans-serif;
font-optical-sizing: auto;
font-weight: <weight>;
font-style: normal;
}
*,
::after,
::before {
box-sizing: border-box;
}
.lines {
position: absolute;
overflow: hidden;
width: 90vw;
height: 100vh;
z-index: 999;
margin: 0 auto;
}
.lines .line {
position: absolute;
width: 1px;
height: 100%;
top: 0;
left: 50%;
background: rgba(255, 255, 255, 0.1);
}
.lines .line:nth-child(1) {
margin-left: -25%;
}
.lines .line:nth-child(1)::after {
-webkit-animation-delay: 2s;
animation-delay: 2s;
}
.lines .line:nth-child(3) {
margin-left: 25%;
}
.lines .line:nth-child(3)::after {
-webkit-animation-delay: 2.5s;
animation-delay: 2.5s;
}
.lines .line::after {
content: "";
display: block;
position: absolute;
height: 30px;
width: 100%;
top: -50%;
left: 0;
background: linear-gradient(to bottom, rgba(255, 217, 0, 0) 0%, #ffd900 75%, #ffd900 100%);
-webkit-animation: run 5s 0s infinite;
animation: run 5s 0s infinite;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
-webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}
@-webkit-keyframes run {
0% {
top: -50%;
}
100% {
top: 100%;
}
}
@keyframes run {
0% {
top: -50%;
}
100% {
top: 100%;
}
}
.container {
width: 100%;
max-width: 1400px;
margin: 0 auto;
padding: 0 20px;
}
/* Header Styles */
ol, ul{padding-left:0}
header {
background-color: #17171A;
padding:5px 0;
position: sticky;
top: 0;
z-index: 100;
}
.header-container {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
}
.logo img {
height:50px;
margin-right: 10px;
}
.logo h1 {
font-size: 1.5rem;
font-weight: 700;
}
nav ul {
display: flex;
list-style: none;
}
nav ul li {
margin-left: 0px;
}
nav ul li a {
color: var(--text-color);
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
}
nav ul li a:hover {
color: var(--primary-color);
}
.page-wrapper {
position: relative;
margin: 0 auto;
width: 100%;
min-width: 300px;
overflow: hidden;
}
.section-space{
padding: 60px;
}
/* Dropdown Menu Styles */
.dropdown {
position: relative;
}
.dropdown > a {
display: flex;
align-items: center;
gap: 5px;
}
.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
background-color: var(--card-bg);
border: 1px solid var(--border-color);
border-radius: 8px;
padding: 10px 0;
min-width: 200px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
z-index: 9999;
opacity: 0;
visibility: hidden;
transform: translateY(10px);
transition: all 0.3s ease;
}
.dropdown:hover .dropdown-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.dropdown-menu a {
display: block;
padding: 8px 20px;
color: var(--text-color);
text-decoration: none;
transition: all 0.3s;
}
.dropdown-menu a:hover {
background-color: rgba(30, 102, 245, 0.1);
color: var(--primary-color);
}
/* Mobile dropdown styles */
@media (max-width: 768px) {
.dropdown > a {
justify-content: space-between;
}
.dropdown-menu {
position: static;
box-shadow: none;
border: none;
padding: 0;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}
.dropdown.active .dropdown-menu {
max-height: 500px;
padding: 10px 0 10px 20px;
}
.dropdown-menu a {
padding: 8px 0;
}
}
.auth-buttons button {
padding: 8px 16px;
border-radius: 4px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s;
}
.login-btn {
background: transparent;
border: 1px solid var(--primary-color);
color: var(--primary-color);
margin-right: 10px;
}
.login-btn:hover {
background: rgba(30, 102, 245, 0.1);
}
.register-btn {
background: var(--primary-color);
border: 1px solid var(--primary-color);
color: white;
}
.register-btn:hover {
background: #1a5bdc;
}
.mobile-menu-btn {
display: none;
background: none;
border: none;
color: white;
font-size: 1.5rem;
cursor: pointer;
}
/*home-block*/
.home-block {
text-align: center;
padding: 200px 15px;
position: relative;
background: #17171A;
height: 100vh;
width: 100%;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
.tagline {
color: #999;
font-size: 14px;
margin-bottom: 10px;
}
.home-block .title {
font-size: 3rem!important;
font-weight: 700;
line-height: 1.2;
margin-bottom: 20px;
}
.title span {
color: #ffffff;
}
.subtitle {
font-size:1rem;
color: #fbfbfb;
margin-bottom: 30px;
}
.btn-primary {
position: relative;
display: inline-block;
padding: 12px 30px;
color: #17171A;
font-weight: 600;
text-decoration: none;
background: #111;
border-radius: 5px;
z-index: 1;
overflow: hidden;
}
.btn-primary i {margin-left: 10px}
.register-block .btn-primary{
box-shadow: none;
}
.btn-primary::before {
content: "";
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px
background-size: 300% 300%;
border-radius: inherit;
z-index: -1;
animation: animated-border 3s linear infinite;
}
@keyframes animated-border {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.cr-hero-left .shape-1 {
position: absolute;
left: -2px;
top: 16%;
z-index: 1;
}
.side-count1{
position: absolute;
left: -2px;
top: 16%;
z-index: 1;
}
.side-count2{
position: absolute;
left: 5%;
top: 29%;
z-index: 1;
}
.home-icon1{
position: absolute;
right:25%;
top: 16%;
z-index: 1;
}
.home-icon2{
position: absolute;
left: 25%;
top: 45%;
z-index: 1;
}
/* Responsive */
@media (max-width: 768px) {
.title {
font-size: 32px;
}
}
.scroll-container {
width: 100%;
margin: auto;
display: flex;
gap: 20px;
justify-content: center;
}
.announcement {
display: flex!important;
align-items: center;
gap: 12px;
padding: 10px 20px;
border: 1px solid #fbfbfb1f;
border-radius: 30px;
background: transparent;
color: white;
min-width: 500px;
max-width: 500px;
overflow: hidden;
position: relative;
top:200px;
}
.tag {
background-color: #feb800;
color: black;
padding: 4px 10px;
font-size: 12px;
border-radius: 20px;
font-weight: 600;
flex-shrink: 0;
}
.scroll-text-wrapper {
overflow: hidden;
white-space: nowrap;
flex: 1;
position: relative;
}
.scroll-text {
display: inline-block;
white-space: nowrap;
padding-left: 100%;
animation: scroll-left 12s linear infinite;
}
.arrow {
background-color: white;
color: black;
border-radius: 50%;
padding: 5px;
font-size: 12px;
flex-shrink: 0;
height: 30px!important;
width: 30px!important;
}
@keyframes scroll-left {
0% {
transform: translateX(0%);
}
100% {
transform: translateX(-100%);
}
}
/*plotform-block*/
.plotform-block{
background: #17171A;
}
.form-box {
justify-content: left;
margin: 20px 0 50px;
}
.form-box input {
padding: 12px 20px;
border: none;
outline: none;
border-radius: 4px 0 0 4px;
width: 300px;
}
.form-box button {
background: #2e3094;
border: none;
color: white;
padding: 12px 20px;
border-radius: 0 4px 4px 0;
cursor: pointer;
}
.form-box i {margin-left: 10px}
.left-block h2{
font-size:2.2rem;
text-transform: capitalize;
font-weight: 700;
line-height:4rem;
}
.placeholder {color: #000!important}
.left-block h3{
font-size:2rem;
text-transform: capitalize;
font-weight: 600;
line-height:3rem;
color:#f29611;
}
.right-block img{
height: 500px;
object-fit: contain;
}
/*marquee*/
.marquee-wrapper {
background: linear-gradient(139deg, #9968ff 0%, #ff6cb2 49%, #ffaf56 100%);
padding: 30px 0;
overflow: hidden;
position: relative;
}
.marquee {
display: flex;
gap: 50px;
animation: scroll 20s linear infinite;
white-space: nowrap;
padding: 0 100%;
}
.marquee-wrapper:hover .marquee {
animation-play-state: paused;
}
.ticker-item {
color: #2a2a2a;
font-weight: 700;
font-size: 1.1rem;
}
@keyframes scroll {
0% {
transform: translateX(0%);
}
100% {
transform: translateX(-100%);
}
}
/*user-block*/
.user-block {
position: relative;
width: 100%;
height: 300px;
background:#17171A;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.user-block::before {
content: "";
position: absolute;
width: 100%;
height: 100%;
background:radial-gradient(circle, #17171a 0%, #83838300 50%);
opacity: 0.1;
z-index: 1;
}
.card-block {
position: relative;
width: 140px;
height: 180px;
background: #1a1a1a;
border-radius: 10px;
box-shadow: 0 0 10px #000;
display: flex;
align-items: center;
justify-content: center;
z-index: 2;
}
.card-block::before {
content: "";
position: absolute;
top: 10px;
left: 10px;
width: calc(100% - 20px);
height: calc(100% - 20px);
background-image: radial-gradient(#555 1px, transparent 0);
background-size: 10px 10px;
z-index: 0;
opacity: 0.2;
}
.user-block img {
display: block;
text-align: center;
margin: 0px auto;
}
/* Responsive Styles */
@media (max-width: 1024px) {
.hero-content {
flex-direction: column;
text-align: center;
}
.hero-text {
padding-right: 0;
margin-bottom: 40px;
}
.hero-text p {
margin-left: auto;
margin-right: auto;
}
.hero-buttons {
justify-content: center;
}
}
@media (max-width: 768px) {
nav ul, .auth-buttons {
display: none;
}
.mobile-menu-btn {
display: block;
}
.hero-text h2 {
font-size: 2.2rem;
}
.section-header h3 {
font-size: 1.5rem;
}
.features-grid {
grid-template-columns: 1fr;
}
.pairs-table {
display: block;
overflow-x: auto;
}
}
@media (max-width: 480px) {
.hero-buttons {
flex-direction: column;
gap: 10px;
}
.hero-buttons button {
width: 100%;
}
.market-cards {
grid-template-columns: 1fr;
}
.cta h3 {
font-size: 2rem;
}
}
/*registration-block*/
.register-block {
background: #17171A;
}
.register-block .card{
background: transparent;
}
.card {
background-color: #272740;
border-radius:20px!important;
padding: 30px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
display: flex;
flex-direction: column;
align-items: center;
max-width: 500px;
text-align: center;
position: relative;
margin-bottom: 30px!important;
border: 1px solid #2a2a2a!important;
box-shadow: 0 0 5px rgba(255, 244, 150, 0.6); /* X Y Blur Spread Color */
transition: box-shadow 0.3s ease-in-out; /* Smooth transition on hover */
}
.background {
position: fixed;
background-color: #0a0a0a;
width: 100%;
height: 100%;
}
.scroll_container{
position:absolute;
top:0;
left:0;
width:100%;
}
path {
fill: none;
stroke-width: 0.5px;
opacity: 1;
}
/* Optional: Add a subtle glow on hover */
.card:hover {
box-shadow: 0 0 10px rgba(255, 244, 150, 0.9); /* More intense glow on hover */
}
/* Remove margin-bottom from the last card */
.card:last-child {
margin-bottom: 0;
}
.register-block h2
{
font-size: 2.2rem;
text-transform: capitalize;
font-weight: 700;
}
.graphic-section {
position: relative;
/* width: 250px;
height: 200px;*/
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 40px;
}
.circle-container {
position: relative;
display: flex;
justify-content: center;
align-items: center;
width: 100px;
height: 100px;
background: radial-gradient(circle, #ffcc00 0%, #ff9900 70%, transparent 100%);
border-radius: 50%;
box-shadow: 0 0 40px 10px rgba(255, 204, 0, 0.6); /* Stronger glow */
}
.outer-glow-circle {
position: absolute;
/*width: 200px;
height: 200px;*/
border: 1px solid rgba(255, 255, 255, 0.1); /* More subtle ring */
border-radius: 50%;
box-shadow: 0 0 60px 15px rgba(255, 204, 0, 0.3); /* Lighter, wider glow */
animation: pulse 2s infinite alternate; /* Optional: adds a subtle pulsing effect */
}
@keyframes pulse {
from {
transform: scale(0.95);
opacity: 0.8;
}
to {
transform: scale(1);
opacity: 1;
}
}
.inner-circle {
width: 80px;
height: 80px;
background-color: #ffaa00; /* Center circle color */
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 0 0 20px 5px rgba(255, 170, 0, 0.8);
z-index: 1; /* Ensure it's above the outer glow */
}
.inner-circle i {
font-size: 40px;
color: #333; /* Dark color for the user icon */
}
.usdt-tag {
position: absolute;
top: 50px; /* Adjust position relative to the graphic section */
right: -40px; /* Adjust position */
background-color: #ffcc00;
color: #333;
padding: 5px 10px;
border-radius: 5px;
font-weight: bold;
font-size: 0.9em;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
transform: rotate(5deg); /* Slight rotation */
white-space: nowrap; /* Prevent text wrapping */
}
.content-section {
padding: 0 20px;
}
.title {
font-size:1.4rem;
font-weight: 700;
color: #fff;
text-transform: capitalize;
margin-bottom: 15px;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap; /* Allow title and tag to wrap if needed */
}
.ongoing-tag {
background-color: #4CAF50; /* Green color for ongoing */
color: white;
padding: 4px 10px;
border-radius: 20px;
font-size: 0.6em;
font-weight: 600;
margin-left: 10px;
text-transform: uppercase;
letter-spacing: 0.5px;
white-space: nowrap; /* Prevent "Ongoing" from breaking */
}
.description {
font-size:0.8rem;
line-height: 1.6;
color: #b0b0b0;
margin-bottom: 30px;
}
.register-button {
background-color: #ffc107;
color: #333;
padding: 5px 25px;
border: none;
border-radius: 50px;
font-size: 1rem;
font-weight: 500;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
transition: background-color 0.3s ease, transform 0.2s ease;
}
.register-button:hover {
background-color: #ffbb33;
transform: translateY(-2px);
}
.register-button .arrow {
margin-left: 10px;
font-size: 1.2em;
}
/* For grid-like background effect - very simplified and not exact */
.graphic-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image:
linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.05) 75%, rgba(255, 255, 255, 0.05) 76%, transparent 77%, transparent),
linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.05) 75%, rgba(255, 255, 255, 0.05) 76%, transparent 77%, transparent);
background-size: 50px 50px; /* Adjust grid size */
opacity: 0.3;
z-index: 0;
pointer-events: none; /* Make sure it doesn't interfere with clicks */
}
.register-block .container .row .col-lg-5:nth-child(2),
.register-block .container .row .col-lg-5:nth-child(4) {
margin-top:80px; /* Push 2nd and 4th cards down */
}
.animated-arc {
width: 284px; /* Use the --w variable for width */
height: 284px; /* Use the --h variable for height */
/* You can override the color here if you want */
color: #FFF496; /* This sets the 'currentColor' for the SVG */
}
/*events-*/
.events-center {
background: #17171A;
}
.events-center .announcement{
top: 0px!important;
}
/*users-guide*/
.users-guide {
background: #17171A;
}
.users-block{
margin-top: 50px;
border: 1px solid #fff;
background-image: linear-gradient(130deg, var(--black-1), var(--black-2));
perspective: 1300px;
border-radius: 1.2em;
flex-flow: row;
justify-content: flex-start;
align-items: center;
padding: 2.2rem 2.3em;
display: flex
;
position: relative;
overflow: hidden;
}
.users-info{
padding: 50px;
}
.users-guide h2{
line-height: 2.0rem;
text-transform: capitalize;
font-weight: 700;
}
.users-guide p {
font-size: 1.1rem;
}
.users-info h3{
font-size: 1.5rem;
margin-bottom:3.5rem;
text-transform: capitalize;
font-weight: 700;
}
.users-info p {
font-size:1rem;
font-weight:500;
margin-bottom:3rem!important;
}
.users-info img {
height: 100px;
height: 100px;
border-radius: 100%;
padding:10px 10px 10px 10px;
margin: 0px auto;
margin-bottom:2.5rem!important;
}
.user-btn {
background-color: #ffc107;
color: #333;
padding: 5px 25px;
border: none;
border-radius: 50px;
font-size: 1rem;
font-weight: 500;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
transition: background-color 0.3s ease, transform 0.2s ease;
}
.user-btn:hover {
background-color: #ffbb33;
transform: translateY(-2px);
}
@keyframes rotateGradient {
0% {
border-image-source: linear-gradient(304deg, #FF994B 23.79%, #D34BE9 47%, #3188FF 85.86%);
}
25% {
border-image-source: linear-gradient(334deg, #FF994B 23.79%, #D34BE9 47%, #3188FF 85.86%);
}
50% {
border-image-source: linear-gradient(364deg, #FF994B 23.79%, #D34BE9 47%, #3188FF 85.86%);
}
75% {
border-image-source: linear-gradient(394deg, #FF994B 23.79%, #D34BE9 47%, #3188FF 85.86%);
}
100% {
border-image-source: linear-gradient(424deg, #FF994B 23.79%, #D34BE9 47%, #3188FF 85.86%);
}
}
.gradient-border-animated {
border-radius: 20px!important;
border:1px solid transparent;
border-image-slice: 1;
animation: rotateGradient 5s linear infinite;
border-image-source: linear-gradient(304deg, #FF994B 23.79%, #D34BE9 47%, #3188FF 85.86%);
width: auto;
height: auto;
display: flex;
justify-content: center;
align-items: center;
font-size: 1.5em;
color: #333;
text-align: center;
margin: 50px auto;
}
/* Initial state of the .users-info div within col-lg-4 */
.col-lg-4 .users-info {
border:1px solid #333030;
background-color: transparent; /* Or your desired initial background color */
transition: all 0.3s ease-in-out; /* Smooth transition for all properties */
border-radius: 10px; /* Example for rounded corners, adjust as needed */
padding: 20px; /* Example padding */
position: relative; /* Needed for z-index and potential overlay effects */
z-index: 1; /* Ensure hovered item is on top */
}
/* Hover effect for the specific col-lg-4 */
.users-block .col-lg-4:hover .users-info {
transform: translateY(-5px); /* Optional: lift the card slightly */
z-index: 10; /* Bring the hovered item to the front */
}
/* Blur effect for non-hovered col-lg-4 elements */
.users-block:has(.col-lg-4:hover) .col-lg-4:not(:hover) .users-info {
filter: blur(2px); /* Apply a slight blur */
opacity: 0.7; /* Reduce opacity slightly */
transform: scale(0.98); /* Slightly shrink non-hovered items */
transition: all 0.3s ease-in-out; /* Smooth transition for the blur and opacity */
}
/*products-block*/
.product-block{
background:#17171A;
}
.product-block h2{
line-height: 2.0rem;
text-transform: capitalize;
font-weight: 700;
}
.product-block p {
font-size:1.1rem;
font-weight: 600;
}
.download-buttons-container {
display: flex;
flex-wrap: wrap;
gap: 15px; /* Space between buttons */
justify-content: center; /* Center buttons horizontally */
padding: 20px;
}
.download-button {
display: flex;
align-items: center;
padding: 12px 25px; /* Adjust padding to control button size */
background-color: #2b2b2b; /* Darker grey background for buttons */
border: 1px solid #3d3d3d; /* Subtle border */
border-radius: 8px; /* Rounded corners for the buttons */
text-decoration: none; /* Remove underline from links */
color: #ffffff; /* White text color */
font-size: 16px;
font-weight: 500;
transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease; /* Smooth transitions */
cursor: pointer;
}
.download-button:hover {
background-color: #3a3a3a; /* Slightly lighter background on hover */
border-color: #555555; /* Slightly lighter border on hover */
transform: translateY(-2px); /* Subtle lift effect on hover */
}
.download-button img {
width: 20px; /* Adjust icon size */
height: 20px;
margin-right: 10px; /* Space between icon and text */

}
/* Specific styling for the "More Download Options" button */
.download-button.more-options {
padding-right: 20px; /* Adjust padding for the arrow */
}
.download-button.more-options .arrow-icon {
font-size: 18px; /* Size of the arrow */
margin-left: 10px; /* Space between text and arrow */
transition: transform 0.2s ease;
}
.download-button.more-options:hover .arrow-icon {
transform: translateX(3px); /* Move arrow slightly on hover */
}
/* Optional: Adjust for smaller screens */
@media (max-width: 768px) {
.download-buttons-container {
flex-direction: column; /* Stack buttons vertically on smaller screens */
align-items: center; /* Center stacked buttons */
}
.download-button {
width: 80%; /* Make buttons wider on small screens */
max-width: 300px; /* Limit max width */
justify-content: center; /* Center content within button */
}
}
.explore-section{
background-color:#17171A!important;
}
.background-bg{
background-size:contain;
width: 100%;
background-position: right;
background-repeat: no-repeat;
background-color: #000;
}
.dashboard-block{
position: relative;
}
.dashboard-block img {
width: 100%;
height: auto;
object-fit: contain;
}
.dashboard-block img {
border-radius: 10px;
}
.mobile-img img {
height:500px;
width: 400px;
object-fit: contain;
}
.mobile-img {
position: relative;
left: 60px;
top:-40px;
}
.play-button {
position: relative; /* Position the button relative to its parent container */
top: 0%; /* Center vertically */
left: 50%; /* Center horizontally */
bottom: 220px;
transform: translate(-50%, -50%); /* Precisely center the button */
width: 60px; /* Adjust size as needed */
height: 60px; /* Adjust size as needed */
background-color: rgb(255 0 0 / 80%); /* Semi-transparent white background */
border: none;
border-radius: 50%; /* Makes it a circle */
cursor: pointer;
display: flex; /* Use flexbox for easy centering of the arrow */
justify-content: center;
align-items: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Add a subtle shadow */
transition: background-color 0.3s ease; /* Smooth hover effect */
}
.play-button::before {
content: '';
width: 0;
height: 0;
border-top: 15px solid transparent;
border-bottom: 15px solid transparent;
border-left: 25px solid #fff; /* Dark gray play arrow */
margin-left: 5px; /* Adjust to visually center the arrow */
}
.play-button:hover {
background-color: rgb(255 0 0 / 80%); /* Fully opaque white on hover */
}
.explore-text h2{
line-height: 2.5rem;
text-transform: capitalize;
font-weight: 700;
}
.explore-btn{
display: block;
text-align: center;
margin: 0px auto;
margin-top: 10px!important;
}
.crypto-card {
position: relative;
width: 100%;
border-radius: 0px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
overflow: hidden; /* Important for containing the dots */
}
/* Background dots */
.crypto-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image:
radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
background-size: 20px 20px; /* Size of each "dot cell" - adjust for density */
z-index: 0; /* Behind the content */
opacity: 0.8; /* Initial opacity, can be animated */
animation: dotBlink 4s infinite alternate; /* Adjust duration and iteration */
}
/* Keyframes for the blinking animation */
@keyframes dotBlink {
0% {
opacity: 0.2;
}
50% {
opacity: 0.8;
}
100% {
opacity: 0.2;
}
}
.book-icon {
z-index: 1; /* Above the dots */
margin-bottom: 20px;
}
.book-icon img {
width: 80px; /* Adjust size of the book icon */
height: auto;
filter: grayscale(100%) brightness(150%); /* To make it look more like the gray icon in the image */
}
.card-title {
z-index: 1; /* Above the dots */
color: #ffffff; /* White text */
font-size: 1.1em;
display: flex;
align-items: center;
gap: 8px; /* Space between the book emoji and text */
}
.global-block{
background-color:#17171A;
}
.global-block h2{
line-height: 2.5rem;
text-transform: capitalize;
font-weight: 700;
}
.global-data h4{
font-size:1.5rem;
font-weight: 600;
margin-bottom: 20px;
}
.global-data p{
font-size:1.1rem;
}
.global-data{
border:1px solid #34353699;
border-radius: 10px;
width: 100%;
}
.global-data img{
height:100px;
width:100px;
object-fit: contain;
margin-bottom: 30px;
}
.global-data img{
background: #191921;
padding: 10px;
border-radius: 10px;
}
.global-data {
background-size: contain;
background-position: top right;
background-repeat: no-repeat;
}
.global-data {margin-bottom: 30px}
.open-system-block {
/* Initial state (non-hovered) - you'll likely have a base background here */
background-color:#221e2f; /* A dark, subtle background to match the overall tone */
border-radius: 15px; /* Adjust as per your block's corner roundness */
padding:50px; /* Example padding */
color: #ffffff; /* Example text color */
position: relative; /* Needed for pseudo-element positioning */
overflow: hidden; /* Important to contain the pseudo-element */
transition: background-color 0.4s ease; /* Smooth transition for background changes */
}
.open-system-block::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
/* Initial state for the gradient overlay - fully transparent */
background: radial-gradient(circle at 50% 50%, rgba(255, 165, 0, 0.2) 0%, rgba(255, 140, 0, 0.1) 30%, rgba(0, 0, 0, 0) 70%);
opacity: 0; /* Start invisible */
transition: opacity 0.4s ease; /* Smooth transition for opacity */
pointer-events: none; /* Allows clicks to pass through */
z-index: 1; /* Place it above the base background but below content */
}
/* Hover effect */
.open-system-block:hover {
background-color: #382e23; /* A slightly lighter dark brown/orange for the base on hover */
/* You might want to adjust other properties on hover too, like box-shadow */
}
.open-system-block:hover::before {
opacity: 1; /* Make the gradient visible on hover */
/* You can also adjust the gradient stops or colors slightly on hover for more dynamism */
background: radial-gradient(circle at 50% 50%, rgb(255 165 0 / 53%) 0%, rgb(255 140 0 / 36%) 30%, rgba(0, 0, 0, 0) 70%)
}
/* To ensure text and icons are above the pseudo-element gradient */
.open-system-block > * {
position: relative;
z-index: 2;
}
/* Example styles for content within the block */
.open-system-block .title {
font-size: 2em;
font-weight: bold;
margin-bottom: 10px;
}
.open-system-block .description {
font-size: 0.9em;
line-height: 1.5;
}
/* You'll also need to style your icons based on whether they are SVGs or images */
.open-system-block .icons {
margin-bottom: 20px;
/* Style for your icons, e.g., display: flex; justify-content: flex-start; gap: 10px; */
}
/* Add any specific styles for the line below "Open system" if it's part of the design */
.open-system-block .title::after {
content: '';
display: block;
width: 100%; /* Adjust width as needed */
height: 1px; /* The thin line */
background: linear-gradient(to right, rgba(255, 140, 0, 0.7) 0%, rgba(255, 165, 0, 0) 100%); /* A subtle gradient for the line */
margin-top: 10px;
margin-bottom: 20px;
}
/*activty*/
.activity-block{
background-color: #17171A;
}
.activity-block h2{
line-height: 2.5rem;
text-transform: capitalize;
font-weight: 700;
}
.gallery-block img {
height: 100%;
width: 100%;
object-fit: contain;
}
.gallery-block img {
border-radius: 10px!important;
margin-top: 30px!important;
}
/* Footer */
.site-footer {
background-color: #17171A; /* Dark background color from the image */
color: #b0b0b0; /* Light gray text color */
padding: 40px 0; /* Vertical padding */
font-size: 14px;
border-top: 1px solid #fbfbfb24;
}
.footer-container {
max-width: 1320px; /* Max width of your content */
margin: 0 auto; /* Center the container */
display: flex; /* Use flexbox for column layout */
justify-content: space-between; /* Distribute columns evenly */
flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
padding: 0 20px; /* Horizontal padding for responsiveness */
}
.footer-column {
flex: 1; /* Allow columns to grow and shrink */
min-width: 150px; /* Minimum width for columns before wrapping */
margin-right: 20px; /* Space between columns */
margin-bottom: 20px; /* Space below columns when they wrap */
}
.footer-column:last-child {
margin-right: 0; /* No right margin for the last column */
}
.footer-column h3 {
color: #ffffff; /* White color for headings */
font-size: 16px;
margin-bottom: 20px;
font-weight: 700; /* As seen in the image, headings are not bold */
}
.footer-column ul {
list-style: none; /* Remove bullet points from lists */
padding: 0;
margin: 0;
}
.footer-column ul li {
margin-bottom: 12px; /* Space between list items */
}
.footer-column ul li a {
color: #b0b0b0; /* Light gray for links */
text-decoration: none; /* Remove underline from links */
transition: color 0.3s ease; /* Smooth transition for hover effect */
}
.footer-column ul li a:hover {
color: #ffffff; /* White color on hover */
}
/* Responsive adjustments */
@media (max-width: 768px) {
.footer-container {
flex-direction: column; /* Stack columns vertically on smaller screens */
align-items: flex-start; /* Align items to the start */
}
.footer-column {
margin-right: 0; /* Remove horizontal margin */
width: 100%; /* Full width for columns */
}
.footer-column h3 {
margin-top: 20px; /* Add some space above headings when stacked */
}
}
.footer-bottom{
background-color: #17171A;
color: #b0b0b0;
padding:0px 0;
}
.footer-bottom p {font-size:.9rem}
.social-media ul li {
display: inline-flex;
margin-right: 10px;
}
.social-media ul li a img {
height:20px;
width: 20px;
object-fit: contain;
}
.swiper {
width: 100%;
height: 100%;
}
.swiper-slide {
text-align: center;
font-size: 18px;
display: flex;
justify-content: center;
align-items: center;
}
.swiper-slide img {
display: block;
width: 100%;
height:350px;
object-fit: cover;
object-position: top;
}




.footer {
  background:#17171a;
  padding: 40px 20px;
}

.footer-menu {
  max-width: 500px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid #222;
}

.accordion-toggle {
  width: 100%;
  background: transparent;
  color: #fff;
  font-size: 16px;
  padding: 10px;
  text-align: left;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-toggle .arrow {
  background: transparent;
  color: #fff!important;
  font-size:16px!important;
}

  


.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content ul {
  list-style: none;
  padding: 0 20px 15px;
  color: #fff; }
.accordion-content ul li a{color: #fff;text-decoration:inherit;margin-bottom: 10px!important}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
      color: #fff;
    background-color: #ffb121;
    font-size: 13px;
    border-radius: 100px;
}
.nav-pills{    border: 1px solid #fff;
    border-radius: 100px;
    padding: 10px;}
.nav-link {color: #fff}


    .mobile-frame {
      position: relative;
      top: 50px;
      left: 45px;
      width: 300px; /* Adjust width as needed */
      height: 500px;
      background: url('1af879d2-4a8f-430b-9de5-53cb0343c009.png') no-repeat center center;
      background-size: cover;
      border-radius: 40px;
      overflow: hidden;
       box-shadow: 0 0 30px rgb(0 0 0 / 0%);
      border: 1px solid #ffa73d;
    }

    .video-container {
      position: absolute;
      top: 50px; /* Adjust based on your frame */
      left: 15px;
      width: 270px; /* Adjust to fit screen area */
      height: 500px;
      overflow: hidden;
      border-radius: 20px;
    }

    .video-container video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px;
    }
    .sticky-logo img{
      width:30px;
      height:30px;
      object-fit: contain;
    }

.download-banner span {margin-left: 10px}
    .download-banner {
         position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    color: #fff;
    display: flex
;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    margin: 10px;
    border-radius: 5px;
    border: 1px solid #fbfbfb42;
    }

  

    .download-banner .btn {
          background: #f5c518;
    color: #fff;
    padding: 8px 14px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 400;
    }

    /* Hide on desktop, show on mobile */
    @media (min-width: 768px) {
      .download-banner {
        display: none;
      }
    }

    .footer_logo img{
      width: 200px;
      height:   100px;
      object-fit: contain;
    }
       .footer_logo img{
      display: block;
      text-align: center;
      margin: 0px auto;
    }