* {
	border: 0;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
:root {
	font-size: calc(16px + (20 - 16)*(100vw - 320px)/(1024 - 320));
}
body, button {
	font: 1em Catamaran, sans-serif;
	line-height: 1.5;
}
body, nav a, nav a:active, nav a:visited {
	color: #171717;
}
body {
	background: #d9d9d9;
}
a {
	color: #0088CC;
	text-decoration: none;
}
a:focus, button:focus {
	outline: transparent;
}
a:hover, a:focus {
	text-decoration: underline;
}
a:active {
	color: #0088CC;
}
a:visited {
	color: #0088CC;
}
header, main {
	padding: 1.5em;
}
header, nav {
	display: flex;
}
header {
	background: #09032a58;
	box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.467);
	justify-content: space-between;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 0;
}
main {
	display: block;
	margin: auto;
	max-width: 37.5em;
}
nav {
	justify-content: center;
	align-items: center;
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	visibility: hidden;
	transition: all 0.2s linear;
	width: 100%;
	height: 100%;
	z-index: 9;
}
nav ul, h1, h2, .logo {
	font-size: 1.5em;
	line-height: 1;
}
nav a, h1, h2 {
	font-weight: bold;
}
nav ul {
	list-style: none;
	text-align: center;
}
nav li, p {
	margin-bottom: 1.5rem;
}
.animate-charcter
{
   text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    grey 0%,
    white 29%,
    gray 67%,
    white 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
      font-size: 25px;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}
h2 {
	margin-bottom: 1em;
}

.nav-close-btn:focus {
	opacity: 0.7;
}
.nav-btn, .nav-close-btn {
	background: transparent;
	cursor: pointer;
	height: 1.5em;
}
.nav-btn {
	position: relative;
	width: 2em;
	z-index: 1;
}
.nav-btn span, .nav-close-btn span {
	display: block;
	position: absolute;
	height: 0.25em;
	width: 100%;
	z-index: 2;
}
.nav-btn span {
	background: #f1f1f1;
	top: 0;
	right: 0;
	transition: all 0.2s 0.2s ease-out;
}
.nav-btn span:nth-of-type(2) {
	top: calc(50% - 0.125em);
	transition-delay: 0.4s;
}
.nav-btn span:nth-of-type(3) {
	top: calc(100% - 0.25em);
	transition-delay: 0.6s;
}
.nav-btn[aria-expanded="true"] span {
	top: -1.5em;
	right: -1.5em;
	height: 33.33vh;
	width: 100vw;
	transition-delay: 0.4s;
}
.nav-btn[aria-expanded="true"] span:nth-of-type(2) {
	top: calc(-1.5em + 33.33vh);
	transition-delay: 0.2s;
}
.nav-btn[aria-expanded="true"] span:nth-of-type(3) {
	top: calc(-1.5em + 66.67vh);
	transition-delay: 0s;
}
.nav-btn[aria-expanded="true"] ~ nav {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.2s 0.8s ease-out;
}
.nav-close-btn {
	position: absolute;
	top: 1.5em;
	right: 1.5em;
	width: 1.5em;
}
.nav-close-btn span {
	background: #171717;
	top: 50%;
}
.nav-close-btn span:first-of-type {
	transform: translateY(-50%) rotate(-45deg);
}
.nav-close-btn span:nth-of-type(2) {
	transform: translateY(-50%) rotate(45deg);
}
.nav-btn span.sr, .nav-close-btn span.sr {
	clip: rect(1px,1px,1px,1px);
	overflow: hidden;
	width: 1px;
	height: 1px;
}

@media screen and (prefers-color-scheme: dark) {
	body, nav a, nav a:active, nav a:visited {
		color: #f1f1f1;
	}
	body {
		background: #020812;
	}
	a {
		color: #0088CC;
        font-weight: bold;
	}
	a:active {
		color: #0088CC;
	}
	a:visited {
		color: #0088CC;
	}
	nav {
		background: #010734;
	}
	.nav-close-btn span {
		background: #f1f1f1;
	}
}


/* SECTION */
.head-text {
    padding: 10px 20px;
    color: #fff;
    text-align: left;
}

/* CONTAINER */
.head-text .container {
    max-width: 1100px;
    margin: auto;
}

/* HEADING */
.head-text h3 {
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    line-height: 1.3;
    margin-bottom: 20px;
}

/* HIGHLIGHT */
.head-text h3 span {
    color: #00ffcc;
}

/* PARAGRAPH */
.head-text p {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    line-height: 1.7;
    margin-bottom: 15px;
    opacity: 0.9;
}

/* MOBILE IMPROVEMENT */
@media (max-width: 500px) {
    .head-text {
        padding: 10px 15px;
    }

    .head-text h3 {
        font-size: 1.3rem;
    }
}
/* BUTTON CONTAINER */
.btn-group {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 20px;
    padding: 20px 20px;    
}

/* BUTTON */
.btn {
    flex: 1; /* equal width */
    text-align: center;
    padding: 12px 20px;
    border-radius: 99px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

/* COLORS */
.btn-blue {
    background: #fed358;
    color: #000;
    border: 2px solid red;
}

.btn-gray {
    background: #e60000;
    border: 2px solid #fff;
    color: #fff;
}

/* HOVER */
.btn:hover {
    opacity: 0.9;
}

/* 📱 MOBILE VIEW */
@media (max-width: 600px) {
    .btn-group {
        flex-direction: column; /* stack */
        
    }
}
.center-btn {
    display: block;
    width: fit-content;
    margin:30px auto; /* center horizontally */  
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    background: #0088cc;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

.center-btn:hover {
    opacity: 0.9;
}
.logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 200px;
  margin-top: 30px;
  margin-bottom: 15PX;
}
.logo-2 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 15PX;
}
.para-2{
    padding: 10px 20px;
    color: #fff;
    text-align: left;
    margin: auto;
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    line-height: 1.3;
}
.toc-container {
    background: #2d2d2d;
    border-radius: 10px;
    padding: 15px;
    max-width: 600px;
    color: #fff;
}

/* HEADER */
.toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* BUTTON */
.toc-header button {
    background: #444;
    border: none;
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
}

/* LIST */
.toc-list {
    margin-top: 10px;
    list-style: none;
    padding-left: 0;
}

.toc-list li {
    margin: 6px 0;
}

.toc-list a {
    color: #ccc;
    text-decoration: none;
}

/* SUB */
.sub { color: #aaa; margin-top: 10px; }
.sub2 { padding-left: 15px; }

/* 🔥 MOBILE FIX */
@media(max-width:600px){
    .toc-list {
        display: none;
    }

    .toc-list.active {
        display: block;
    }
}

.content-section {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 15px;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

/* HEADING */
.content-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* PARAGRAPH */
.content-section p {
    font-size: 17px;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 15px;
}

/* 📱 MOBILE */
@media (max-width: 600px) {
    .content-section h2 {
        font-size: 24px;
    }

    .content-section p {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* 💻 LARGE SCREEN */
@media (min-width: 1000px) {
    .content-section h2 {
        font-size: 36px;
    }

    .content-section p {
        font-size: 18px;
    }
}
.content-section h2 {
    font-size: 30px;
    margin: 25px 0 10px;
}

/* PARAGRAPH */
.content-section p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* LIST */
.list {
    padding-left: 18px;
}

.list li {
    margin: 8px 0;
    font-size: 16px;
    line-height: 1.5;
}

/* 📱 MOBILE */
@media(max-width:600px){
    .content-section h2 {
        font-size: 22px;
    }

    .content-section p,
    .list li {
        font-size: 14px;
    }
}
.faq-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 15px;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

/* HEADING */
.faq-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* ITEM */
.faq-item {
    border-bottom: 1px solid #333;
    padding: 10px 0;
}

/* QUESTION */
.faq-item h3 {
    font-size: 18px;
    cursor: pointer;
    color: #fff;
}

/* ANSWER */
.faq-item p {
    font-size: 15px;
    color: #ccc;
    margin-top: 5px;
    display: none;
}

/* ACTIVE */
.faq-item.active p {
    display: block;
}

/* 📱 MOBILE */
@media(max-width:600px){
    .faq-section h2 {
        font-size: 22px;
    }

    .faq-item h3 {
        font-size: 16px;
    }

    .faq-item p {
        font-size: 14px;
    }
}
.footer {
    padding: 50px 20px;
    border-top: 1px solid #222;
}

/* CONTAINER */
.footer-container {
    max-width: 800px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

/* COLUMN */
.footer-col h3 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-col p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin: 8px 0;
}

.footer-col a {
    color: #4da6ff;
    text-decoration: none;
    font-size: 15px;
}

.footer-col a:hover {
    text-decoration: underline;
}

/* 📱 MOBILE */
@media(max-width:768px){
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
.footer-bottom {
    text-align: center;
    padding: 15px 10px;
    border-top: 1px solid #222;
    margin-top: 30px;
    font-size: 14px;
    color: #aaa;
}


/* Login Page */
.article {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 15px;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
}

/* HEADINGS */
.article h2 {
    font-size: 30px;
    margin: 25px 0 10px;
}

.article h3 {
    font-size: 20px;
    margin-top: 15px;
}

.article h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

/* TEXT */
.article p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* LIST */
.article ul,
.article ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.article li {
    margin: 6px 0;
}

/* STEPS */
.steps {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 8px;
}

/* PROS CONS */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pros-cons div {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 8px;
}

/* FAQ */
.faq p {
    background: #1a1a1a;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}

/* 📱 MOBILE */
@media(max-width:600px){
    .article h2 {
        font-size: 22px;
    }

    .article h3 {
        font-size: 18px;
    }

    .article p,
    .article li {
        font-size: 14px;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }
}
.article-header {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 15px;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
}

/* TITLE */
.article-header h1 {
    font-size: 34px;
    margin-bottom: 10px;
    font-weight: 700;
}

/* BREADCRUMB */
.breadcrumb {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

/* INTRO TEXT */
.intro {
    font-size: 17px;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 12px;
}

/* 📱 MOBILE */
@media(max-width:600px){
    .article-header h1 {
        font-size: 24px;
    }

    .intro {
        font-size: 15px;
    }
}

/* 💻 LARGE SCREEN */
@media(min-width:1000px){
    .article-header h1 {
        font-size: 38px;
    }

    .intro {
        font-size: 18px;
    }
}

/* Register Page */
.article {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 15px;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
}

/* TITLE */
.article h1 {
    font-size: 34px;
    margin-bottom: 10px;
}

/* BREADCRUMB */
.breadcrumb {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

/* HEADINGS */
.article h2 {
    font-size: 28px;
    margin: 25px 0 10px;
}

.article h3 {
    font-size: 20px;
    margin-top: 15px;
}

/* TEXT */
.article p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* LIST */
.article ul {
    padding-left: 20px;
}

.article li {
    margin: 6px 0;
}

/* STEPS BOX */
.steps {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 8px;
}

/* FAQ */
.faq p {
    background: #1a1a1a;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}

/* 📱 MOBILE */
@media(max-width:600px){
    .article h1 {
        font-size: 24px;
    }

    .article h2 {
        font-size: 22px;
    }

    .article p,
    .article li {
        font-size: 14px;
    }
}

/*withdraw page */
.article {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 15px;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
}

/* TITLE */
.article h1 {
    font-size: 34px;
    margin-bottom: 10px;
}

/* BREADCRUMB */
.breadcrumb {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

/* HEADINGS */
.article h2 {
    font-size: 28px;
    margin: 25px 0 10px;
}

.article h3 {
    font-size: 20px;
    margin-top: 15px;
}

/* TEXT */
.article p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* LIST */
.article ul {
    padding-left: 20px;
}

.article li {
    margin: 6px 0;
}

/* STEPS */
.steps {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 8px;
}

/* FAQ */
.faq p {
    background: #1a1a1a;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}

/* 📱 MOBILE */
@media(max-width:600px){
    .article h1 {
        font-size: 24px;
    }

    .article h2 {
        font-size: 22px;
    }

    .article p,
    .article li {
        font-size: 14px;
    }
}

/*withdraw*/
.article {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 15px;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
}

/* TITLE */
.article h1 {
    font-size: 34px;
    margin-bottom: 10px;
}

/* BREADCRUMB */
.breadcrumb {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

/* HEADINGS */
.article h2 {
    font-size: 28px;
    margin: 25px 0 10px;
}

.article h3 {
    font-size: 20px;
    margin-top: 15px;
}

/* TEXT */
.article p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* LIST */
.article ul {
    padding-left: 20px;
}

.article li {
    margin: 6px 0;
}

/* STEPS BOX */
.steps {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 8px;
}

/* FAQ */
.faq p {
    background: #1a1a1a;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}

/* 📱 MOBILE */
@media(max-width:600px){
    .article h1 {
        font-size: 24px;
    }

    .article h2 {
        font-size: 22px;
    }

    .article p,
    .article li {
        font-size: 14px;
    }
}

/* Download page */
.article {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 15px;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
}

/* TITLE */
.article h1 {
    font-size: 34px;
    margin-bottom: 10px;
}

/* BREADCRUMB */
.breadcrumb {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

/* HEADINGS */
.article h2 {
    font-size: 28px;
    margin: 25px 0 10px;
}

.article h3 {
    font-size: 20px;
    margin-top: 15px;
}

/* TEXT */
.article p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* LIST */
.article ul {
    padding-left: 20px;
}

.article li {
    margin: 6px 0;
}

/* STEPS BOX */
.steps {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 8px;
}

/* FAQ */
.faq p {
    background: #1a1a1a;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}

/* 📱 MOBILE */
@media(max-width:600px){
    .article h1 {
        font-size: 24px;
    }

    .article h2 {
        font-size: 22px;
    }

    .article p,
    .article li {
        font-size: 14px;
    }
}

/* About */
.about-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 15px;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
}

/* TITLE */
.about-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

/* TEXT */
.about-section p {
    font-size: 17px;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 15px;
}

/* HIGHLIGHT */
.highlight {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
}

/* 📱 MOBILE */
@media(max-width:600px){
    .about-section h1 {
        font-size: 26px;
    }

    .about-section p {
        font-size: 15px;
    }
}


/* Contact */
.contact-section {
    max-width: 600px;
    margin: 40px auto;
    padding: 0 15px;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
}

/* TITLE */
.contact-section h1 {
    text-align: center;
    margin-bottom: 20px;
}

/* FORM */
.contact-form {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
}

/* INPUT GROUP */
.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #ccc;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 6px;
    background: #2a2a2a;
    color: #fff;
    font-size: 14px;
}

/* BUTTON */
.contact-form button {
    width: 100%;
    padding: 12px;
    background: #4da6ff;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #3399ff;
}

/* 📱 MOBILE */
@media(max-width:600px){
    .contact-form {
        padding: 15px;
    }
}


/* Privacy */
.policy {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 15px;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
}

/* TITLE */
.policy h1 {
    font-size: 34px;
    margin-bottom: 20px;
    text-align: center;
}

/* HEADINGS */
.policy h2 {
    font-size: 24px;
    margin-top: 20px;
}

/* TEXT */
.policy p {
    color: #ccc;
    line-height: 1.7;
    margin: 10px 0;
}

/* LIST */
.policy ul {
    padding-left: 20px;
}

.policy li {
    margin: 6px 0;
}

/* 📱 MOBILE */
@media(max-width:600px){
    .policy h1 {
        font-size: 24px;
    }

    .policy h2 {
        font-size: 20px;
    }

    .policy p,
    .policy li {
        font-size: 14px;
    }
}

/* blogs */
body {
    background: #0b0b0b;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
}

/* CONTAINER */
.blog-container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

/* HERO */
.hero {
    text-align: center;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 36px;
}

.hero p {
    color: #aaa;
}

/* LAYOUT */
.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* CONTENT */
.content h2 {
    margin-top: 20px;
}

.content p {
    color: #ccc;
    line-height: 1.6;
}

.content ul,
.content ol {
    padding-left: 20px;
}

/* SIDEBAR */
.sidebar .card {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.sidebar a {
    color: #4da6ff;
    text-decoration: none;
}

/* 📱 MOBILE */
@media(max-width:768px){
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 24px;
    }
}