/* ------------------
   GLOBAL
------------------- */
:root {
	--bg: #0b0f14;
	--panel: #121821;
	--text: #ffffff;
	--muted: #9aa4af;
	--accent: #3cff8f;
	margin: 0 !important;
}

* {
	box-sizing: border-box;
}

body.theme-dark {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: Inter, system-ui, -apple-system, sans-serif;
}

a {
	color: inherit;
	text-decoration: none;
}

.container {
    max-width: 1280px;
    margin: 40px auto;
    padding: 0 16px;
}

/* ------------------
   HEADER
------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(11, 15, 20, 0.85);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid #1e2633;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px auto;
}

.logo {
	font-weight: 700;
	font-size: 22px;
}

.nav-menu {
	list-style: none;
	display: flex;
	gap: 28px;
	padding: 0;
	margin: 0;
}

.nav-menu li a {
	color: var(--muted);
	transition: color 0.3s ease;
}

.nav-menu li a:hover {
	color: var(--accent);
}

.user-mob-status {
	display: none;
}

.header-actions {
	align-items: center;
	gap: 16px;
}

.header-actions.header-action-signin {
	display: flex;
}

.wallet-pill {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 14px;
	background: linear-gradient(135deg, #0e1621, #101c2c);
	border-radius: 999px;
	color: #fff;
	font-size: 14px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.wallet-label {
	font-weight: 500;
	opacity: 0.7;
}

.wallet-amount {
	font-weight: 700;
	color: #2cff9a;
}

.wallet-status {
	font-size: 12px;
	padding: 3px 8px;
	border-radius: 999px;
	font-weight: 600;
}

.wallet-status.verified {
	background: rgba(46, 255, 154, 0.15);
	color: #2cff9a;
}

.wallet-status.unverified {
	background: rgba(255, 80, 80, 0.15);
	color: #ff6b6b;
}

.menu-toggle {
	display: none;
	background: none;
	color: #fff;
	border: 0;
	font-size: 22px;
}

.menu-close {
	display: none;
}

/* ------------------
   BUTTONS
------------------- */
.btn {
	padding: 10px 18px;
	border-radius: 8px;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border:0;
}

.btn-primary {
	background: var(--accent);
	color: #000;
}

.btn-outline {
	border: 1px solid var(--accent);
	color: var(--accent);
	background: #000;
}

.btn-text {
	color: var(--muted);
}

/* ------------------
   HERO
------------------- */
.hero {
	padding: 60px 0 50px;
	background: radial-gradient(circle at top, #143322, var(--bg));
	overflow: hidden;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: center;
	gap: 60px;
	margin-top: 0;
	margin-bottom: 0;
}

.hero-title {
	font-size: 56px;
	line-height: 1.1;
	margin: 0;
	animation: fadeUp 0.8s ease forwards;
}

.hero-cta {
	display: flex;
	gap: 20px;
	margin-top: 20px;
	animation: fadeUp 1s ease forwards;
}

.hero-right {
	position: relative;
}

.hero-mock {
	background: var(--panel);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--muted);
}

.hero-mock.phone {
	animation: float 4s ease-in-out infinite;
}

.hero-mock img {    
	width: auto;
    height: 300px;
    border-radius: 16px;
}

.hero-mock.badge {
	position: absolute;
	right: -20px;
	top: -20px;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--accent);
	color: #000;
	font-weight: bold;
	animation: pulse 2.5s infinite;
}

/* ------------------
   ANIMATIONS
------------------- */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-14px);
	}
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.15);
	}

	100% {
		transform: scale(1);
	}
}

/* ------------------
   MOBILE
------------------- */
@media (max-width: 979px) {

	.hero {
		padding: 40px 0;
	}

	.hero-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-cta {
		justify-content: center;
		flex-wrap: wrap;
	}

	.menu-toggle {
		display: block;
	}

    .main-nav {
		display:none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 100%;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        transition: right 0.3s ease;
        z-index: 1002;
        padding: 30px;
        overflow-y: auto;
        background: var(--panel);
    }

    .main-nav.active {
        right: 0;
		display: block;
    }
	
	.nav-menu {
		flex-direction: column;
    }

    .nav-menu a {
        display: block;
        padding: 10px 0;
    }
	
	.menu-close {
		display: block;
        position: absolute;
        top: 18px;
        right: 18px;
        background: none;
        border: none;
        font-size: 32px;
        line-height: 1;
        cursor: pointer;
        color: #fff;
    }

    .menu-close:hover {
        opacity: 0.7;
    }

    /* Lock body scroll */
    body.menu-open {
        overflow: hidden;
    }
	
	.hero-mock img {    
		width: 100%;
		height: auto;
	}
	
	.hero-mock.badge {
		width: 32px;
    	height: 32px;
	}
}


/* ------------------
   TRUST STRIP
------------------- */
.trust-strip {
	overflow: hidden;
	background: #0b0f14;
	padding: 12px 0;
}

.trust-track {
	display: flex;
	width: max-content;
	animation: scrollTicker 100s linear infinite;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 18px;
	margin-right: 12px;
	background: #131922;
	border-radius: 6px;
	font-size: 14px !important;
	white-space: nowrap;
	color: #e5e7eb;
}

.trust-item .name {
	font-weight: 600;
}

.trust-item .price {
	color: #fff;
	font-size: 14px !important;
}

.trust-item.up {
	border-left: 4px solid #22c55e;
}

.trust-item.down {
	border-left: 4px solid #ef4444;
}

.trust-item .change.up {
	color: #22c55e;
}

.trust-item .change.down {
	color: #ef4444;
}

@keyframes scrollTicker {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}


/* Mobile */
@media (max-width: 768px) {
	.trust-track {
		gap: 48px;
	}

	.trust-item {
		font-size: 14px;
	}
}

/* ------------------
   PLATFORM SECTION
------------------- */
.platform-section {
	padding: 60px 0;
	background: #0e141b;
}

.platform-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	margin-top: 0;
	margin-bottom: 0;
}

/* LEFT */
.platform-illustration {
	position: relative;
	background: var(--panel);
	border-radius: 20px;
	padding: 0px;
	/*height: 360px;*/
	display: flex;
	align-items: center;
	justify-content: center;
}

.chart-box {
	width: 100%;
	height: 100%;
	border-radius: 20px;
}

.chart-box img {
	width: 100%;
	height: auto;
	border-radius: 20px;
}

.floating-icon {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 56px;
	height: 56px;
	background: var(--accent);
	color: #000;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	animation: float 3.5s ease-in-out infinite;
}

/* RIGHT */
.platform-label {
	color: var(--accent);
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.platform-content h2 {
	font-size: 42px;
	margin: 12px 0 20px;
}

.platform-desc {
	color: var(--muted);
	margin-bottom: 28px;
	max-width: 480px;
}

.platform-list {
	list-style: none;
	padding: 0;
	margin: 0 0 36px;
}

.platform-list li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 14px;
	color: #e6e9ee;
}

.platform-list li::before {
	content: "✔";
	position: absolute;
	left: 0;
	color: var(--accent);
}

/* ------------------
   REVEAL ANIMATION
------------------- */
.reveal {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

/* ------------------
   MOBILE
------------------- */
@media (max-width: 979px) {
	.platform-section {
		padding: 40px 0;
	}

	.platform-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.platform-content h2 {
		font-size: 32px;
	}
	
	.floating-icon {
		width: 32px;
		height: 32px;
	}
}

/* ------------------
   COMMUNITY / FEATURES
------------------- */
.community-section {
	padding: 60px 0;
	background: var(--bg);
}

.community-section .container{
	margin-top: 0;
	margin-bottom: 0;
}

.section-header.center {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 80px;
}

.section-label {
	color: var(--accent);
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.section-header h2 {
	font-size: 42px;
	margin: 12px 0 18px;
}

.section-header h2 strong {
	color: var(--accent);
}

.section-desc {
	color: var(--muted);
	font-size: 16px;
}

/* Feature Cards */
.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.feature-card {
	background: var(--panel);
	border-radius: 18px;
	padding: 40px 32px;
	text-align: center;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.feature-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 22px;
	border-radius: 50%;
	background: rgba(60, 255, 143, 0.12);
	color: var(--accent);
	font-size: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-card h3 {
	font-size: 20px;
	margin-bottom: 14px;
}

.feature-card p {
	color: var(--muted);
	font-size: 15px;
}

/* ------------------
   MOBILE
------------------- */
@media (max-width: 979px) {
	.community-section {
		padding: 40px 0;
	}

	.section-header h2 {
		font-size: 32px;
	}

	.feature-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

/* ------------------
   STATS SECTION
------------------- */
.stats-section {
	padding: 60px 0;
	background: linear-gradient(180deg,
			#0b0f14,
			#0e141b);
}

.stats-section .container {
	margin-top: 0;
	margin-bottom: 0;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	text-align: center;
	margin-bottom: 50px;
}

.stat-box {
	background: var(--panel);
	border-radius: 18px;
	padding: 40px 20px;
}

.stat-number {
	font-size: 48px;
	font-weight: 700;
	color: var(--accent);
	display: block;
	margin-bottom: 10px;
}

.stat-label {
	color: var(--muted);
	font-size: 15px;
}

/* Pills */
.stats-pills {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.pill {
	padding: 10px 18px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font-size: 14px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: background 0.3s ease;
}

.pill:hover {
	background: rgba(60, 255, 143, 0.15);
}

/* ------------------
   MOBILE
------------------- */
@media (max-width: 979px) {
	.stats-section {
		padding: 40px 0;
	}

	.stats-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.stat-number {
		font-size: 38px;
	}
}

/* ------------------
   WHAT YOU WILL LEARN
------------------- */
.learn-section {
	padding: 60px 0;
	background: #0b0f14;
}

.learn-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 80px;
	align-items: center;
	margin-top: 0;
	margin-bottom: 0;
}

/* Media */
.learn-media {
	position: relative;
}

.video-placeholder {
	border-radius: 20px;
	background: linear-gradient(180deg,
			#1c2633,
			#121821);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--muted);
	font-size: 18px;
}

.video-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}
/* Content */
.learn-content h2 {
	font-size: 42px;
	margin: 12px 0 18px;
}

.learn-list {
	list-style: none;
	padding: 0;
	margin: 24px 0 32px;
}

.learn-list li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 14px;
	color: #e6e9ee;
}

.learn-list li::before {
	content: "✔";
	position: absolute;
	left: 0;
	color: var(--accent);
}

/* Stats */
.learn-stats {
	display: flex;
	gap: 40px;
}

.learn-stat strong {
	display: block;
	font-size: 28px;
	color: var(--accent);
}

.learn-stat span {
	color: var(--muted);
	font-size: 14px;
}

/* ------------------
   MOBILE
------------------- */
@media (max-width: 979px) {
	.learn-section {
		padding: 40px 0;
	}

	.learn-grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.learn-content h2 {
		font-size: 32px;
	}

	.learn-stats {
		flex-direction: column;
		gap: 20px;
	}
}

/* ------------------
   PRICING SECTION
------------------- */
.pricing-section {
	padding: 60px 0;
	background: #0e141b;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

/* Pricing Card */
.pricing-card {
	position: relative;
	background: var(--panel);
	border-radius: 20px;
	padding: 44px 36px;
	text-align: center;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pricing-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.pricing-card h3 {
	font-size: 22px;
	margin-bottom: 16px;
}

.price {
	font-size: 48px;
	font-weight: 700;
	color: var(--accent);
}

.price-sub {
	display: block;
	color: var(--muted);
	font-size: 14px;
	margin-bottom: 26px;
}

/* Features */
.pricing-features {
	list-style: none;
	padding: 0;
	margin: 0 0 36px;
}

.pricing-features li {
	position: relative;
	padding-left: 26px;
	margin-bottom: 14px;
	color: #e6e9ee;
	text-align: left;
}

.pricing-features li::before {
	content: "✔";
	position: absolute;
	left: 0;
	color: var(--accent);
}

/* Buttons */
.btn.full {
	width: 100%;
}

/* Featured */
.pricing-card.featured {
	outline: 2px solid var(--accent);
	transform: translateY(-8px);
}

.pricing-card.featured:hover {
	transform: translateY(-16px);
}

.badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent);
	color: #000;
	font-size: 12px;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 999px;
}

/* ------------------
   MOBILE
------------------- */
@media (max-width: 979px) {
	.pricing-section {
		padding: 40px 0;
	}

	.pricing-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.price {
		font-size: 40px;
	}
}

/* ------------------
   TESTIMONIALS
------------------- */
.testimonial-section {
	padding: 60px 0;
	background: #0b0f14;
}

.testimonial-section .container {
	margin-top:0;
	margin-bottom:0;
}

.testimonial-wrapper {
	overflow: hidden;
	margin-top: 60px;
}

.testimonial-track {
	display: flex;
	gap: 32px;
	transition: transform 0.6s ease;
}

/* Card */
.testimonial-card {
	min-width: calc(50% - 16px);
	background: var(--panel);
	border-radius: 20px;
	padding: 36px 32px;
}

.stars {
	color: var(--accent);
	font-size: 18px;
	margin-bottom: 16px;
}

.testimonial-text {
	color: #e6e9ee;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 24px;
}

.author strong {
	display: block;
	font-size: 15px;
}

.author span {
	font-size: 13px;
	color: var(--muted);
}

/* Controls */
.testimonial-controls {
	margin-top: 32px;
	display: flex;
	justify-content: center;
	gap: 16px;
}

.t-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: transparent;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.t-btn:hover {
	background: rgba(60, 255, 143, 0.15);
}

/* ------------------
   MOBILE
------------------- */
@media (max-width: 979px) {
	.testimonial-section {
		padding: 40px 0;
	}

	.testimonial-card {
		min-width: 100%;
	}
}

/* ------------------
   FAQ SECTION
------------------- */
.faq-section {
	padding: 60px 0;
	background: #0e141b;
}

.faq-section .container {
	margin-top: 0;
	margin-bottom: 0;
}

.faq-list {
	max-width: 820px;
	margin: 60px auto 0;
}

/* Item */
.faq-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Question */
.faq-question {
	width: 100%;
	padding: 22px 0;
	background: none;
	border: none;
	color: #fff;
	text-align: left;
	font-size: 18px;
	font-weight: 500;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.faq-question:hover {
	color: var(--accent);
}

.faq-icon {
	font-size: 24px;
	transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.faq-answer p {
	color: var(--muted);
	padding-bottom: 20px;
	line-height: 1.6;
}

/* Active */
.faq-item.active .faq-answer {
	max-height: 200px;
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
}

/* ------------------
   MOBILE
------------------- */
@media (max-width: 979px) {
	.faq-section {
		padding: 40px 0;
	}

	.faq-question {
		font-size: 16px;
	}
}

/* ------------------
   BLOG / NEWS
------------------- */
.blog-section {
	padding: 60px 0;
	background: #0b0f14;
}

.blog-section .container {
	margin-bottom: 0;
	margin-top: 0;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

/* Card */
.blog-card {
	background: var(--panel);
	border-radius: 20px;
	overflow: hidden;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.blog-thumb {
	height: 240px;
	background: linear-gradient(180deg, #1c2633, #121821);
	justify-content: center;
	background-size: cover;
	background-position: center;
}

.blog-content {
	padding: 28px 26px 32px;
}

.blog-meta {
	display: block;
	font-size: 13px;
	color: var(--accent);
	margin-bottom: 10px;
}

.blog-card h3 {
	font-size: 20px;
	margin-bottom: 14px;
}

.blog-card p {
	font-size: 15px;
	color: var(--muted);
	margin-bottom: 18px;
}

.blog-link {
	font-size: 14px;
	color: var(--accent);
	font-weight: 500;
}

/* ------------------
   MOBILE
------------------- */
@media (max-width: 979px) {
	.blog-section {
		padding: 40px 0;
	}

	.blog-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

/* ------------------
   FINAL CTA
------------------- */
.final-cta {
	padding: 60px 0;
	background: #0e141b;
}

.final-cta .container {
	margin-top: 0;
	margin-bottom: 0;
}

.cta-box {
	position: relative;
	max-width: 100%;
	width: 100%;
	margin: 0 auto;
	padding: 40px 20px;
	text-align: center;
	border-radius: 28px;
	/*background: linear-gradient(180deg,
			#121821,
			#0b0f14);*/
	background-image:
        linear-gradient(
            180deg,
            rgba(18, 24, 33, 0.75),
            rgba(11, 15, 20, 0.85)
        ),
        url('https://076.0b5.myftpupload.com/wp-content/uploads/2026/01/cta-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	overflow: hidden;
}

/* Glow effect */
.cta-box::before {
	content: "";
	position: absolute;
	inset: -2px;
	border-radius: inherit;
	background: linear-gradient(90deg,
			transparent,
			rgba(60, 255, 143, 0.35),
			transparent);
	opacity: 0.6;
	animation: glow 4s linear infinite;
}

.cta-box h2 {
	font-size: 44px;
	margin-top:0;
	margin-bottom: 18px;
	position: relative;
	z-index: 1;
}

.cta-box p {
	color: var(--muted);
	font-size: 16px;
	margin-bottom: 36px;
	position: relative;
	z-index: 1;
}

.btn-lg {
	padding: 14px 32px;
	font-size: 16px;
	position: relative;
	z-index: 1;
}

/* Animation */
@keyframes glow {
	0% {
		transform: translateX(-100%);
	}

	100% {
		transform: translateX(100%);
	}
}

/* ------------------
   MOBILE
------------------- */
@media (max-width: 979px) {
	.final-cta {
		padding: 40px 0;
	}

	.cta-box {
		padding: 60px 28px;
	}

	.cta-box h2 {
		font-size: 32px;
	}
}

/* ------------------
   FOOTER
------------------- */
.site-footer {
	background: #05070a;
	border-top: 1px solid #1e2633;
}

.footer-grid {
	display: flex;
	gap: 40px;
	margin:0 auto;
	padding: 48px 20px;
}

.footer-col {
	flex: 1;
}

.footer-brand.footer-col {
	flex: 2;
}


.footer-brand p {
	color: var(--muted);
	font-size: 15px;
	max-width: 340px;
}

.footer-logo {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 18px;
}

.footer-col h4 {
	font-size: 16px;
	margin-top: 0px;
	margin-bottom: 20px;
}

/* Footer menu */
.footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-menu li {
	margin-bottom: 12px;
    display: flex;
}

.footer-menu li a {
	color: var(--muted);
	font-size: 14px;
	transition: color 0.3s ease;
}

.footer-menu li a:hover {
	color: var(--accent);
}

.footer-menu .menu-item .menu-icon {
    width: 32px;
    height: 32px;
    display: inline-block;
    margin-right: 6px;
	position: relative;
	border-radius: 12px;
	padding: 10px;
	background:#2D3645;
}

.footer-menu .menu-item .menu-icon::before {
	content: "";
	width: 24px;
    height: 24px;
	left: 0;
	right:0;
	top:0;
	bottom:0;
	margin:auto;
	position: absolute;
	background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.footer-menu .menu-item.icon-location > .menu-icon::before {
	background-image: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\<path d='M12 21C15.5 17.4 19 14.1764 19 10.2C19 6.22355 15.866 3 12 3C8.13401 3 5 6.22355 5 10.2C5 14.1764 8.5 17.4 12 21Z' stroke='%232cff9a' fill='%232D3645' stroke-width='2'/>\<path d='M12 12C13.1046 12 14 11.1046 14 10C14 8.89543 13.1046 8 12 8C10.8954 8 10 8.89543 10 10C10 11.1046 10.8954 12 12 12Z' stroke='%232cff9a' fill='%232D3645' stroke-width='2'/>\</svg>");
}

.footer-menu .menu-item.icon-email > .menu-icon::before {
    background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
<path fill-rule='evenodd' clip-rule='evenodd' \
d='M3.75 5.25L3 6V18L3.75 18.75H20.25L21 18V6L20.25 5.25H3.75ZM4.5 7.6955V17.25H19.5V7.69525L11.9999 14.5136L4.5 7.6955ZM18.3099 6.75H5.68986L11.9999 12.4864L18.3099 6.75Z' \
fill='%232cff9a'/></svg>");
}

.footer-menu .menu-item.icon-phone > .menu-icon::before {
    background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
<path d='M3 5.5C3 14.0604 9.93959 21 18.5 21C18.8862 21 19.2691 20.9859 19.6483 20.9581C20.0834 20.9262 20.3009 20.9103 20.499 20.7963C20.663 20.7019 20.8185 20.5345 20.9007 20.364C21 20.1582 21 19.9181 21 19.438V16.6207C21 16.2169 21 16.015 20.9335 15.842C20.8749 15.6891 20.7795 15.553 20.6559 15.4456C20.516 15.324 20.3262 15.255 19.9468 15.117L16.74 13.9509C16.2985 13.7904 16.0777 13.7101 15.8683 13.7237C15.6836 13.7357 15.5059 13.7988 15.3549 13.9058C15.1837 14.0271 15.0629 14.2285 14.8212 14.6314L14 16C11.3501 14.7999 9.2019 12.6489 8 10L9.36863 9.17882C9.77145 8.93713 9.97286 8.81628 10.0942 8.64506C10.2012 8.49408 10.2643 8.31637 10.2763 8.1317C10.2899 7.92227 10.2096 7.70153 10.0491 7.26005L8.88299 4.05321C8.745 3.67376 8.67601 3.48403 8.55442 3.3441C8.44701 3.22049 8.31089 3.12515 8.15802 3.06645C7.98496 3 7.78308 3 7.37932 3H4.56201C4.08188 3 3.84181 3 3.63598 3.09925C3.4655 3.18146 3.29814 3.33701 3.2037 3.50103C3.08968 3.69907 3.07375 3.91662 3.04189 4.35173C3.01413 4.73086 3 5.11378 3 5.5Z' \
stroke='%232cff9a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='%232D3645'/>\
</svg>");
}

.footer-menu #menu-contact .menu-item a:hover {
	color: var(--muted) !important;
}

.footer-menu .menu-item:hover .menu-desc,
.footer-menu .menu-item a:hover .menu-desc {
	color: var(--accent);
}

.footer-menu .menu-item .menu-desc {
	font-weight: 300;
	font-size: 13px;
    color: #8DA1AF;
}

/* Disclaimer */
.footer-disclaimer {
	margin:0 auto;
}

.footer-disclaimer p {
    text-align: center;
    font-size: 14px;
    font-style: italic;
    font-weight: 300;
}

/* Bottom */
.footer-bottom {
	text-align: center;
	padding: 20px;
	border-top: 1px solid #1e2633;
	font-size: 13px;
	color: var(--muted);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--accent);
    color: #111;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 99999;
}

/* Show state */
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover */
.back-to-top:hover {
    background: #fff;
}

/* Focus (Accessibility) */
.back-to-top:focus {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

/* ------------------
   MOBILE
------------------- */
@media (max-width: 979px) {

	.footer-grid {
		flex-wrap: wrap;
	}
	
	.footer-col {
		width: 47%;
		flex: 0 0 47% !important;
	}

	.footer-brand p {
		max-width: none;
	}
}


/* ------------------
   AUTH PAGES
------------------- */
.auth-section,
.activation-section {
	min-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: radial-gradient(circle at top, #143322, #0b0f14);
}

.auth-box,
.activation-box {
	background: var(--panel);
	padding: 50px 40px;
	border-radius: 18px;
	text-align: center;
	max-width: 420px;
	width: 100%;
}

.auth-box h1,
.activation-box h1 {
	margin-bottom: 16px;
}

.auth-box p,
.activation-box p {
	color: var(--muted);
	margin-bottom: 28px;
}

.google-btn {
	gap: 10px;
}

.auth-note {
	font-size: 13px;
	color: var(--muted);
	margin-top: 20px;
}

.auth-box label {    
	display: block;
    margin-bottom: 10px;
}
.auth-box input[type="text"],
.auth-box input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 14px;
    border: 1px solid #ddd;
}

.auth-box input[type="submit"] {
    background: var(--accent);
    color: #000;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 0;
}

#loginform p {
    margin: 0;
    display: contents; /* removes layout impact */
}
/* ===============================
   TRADING TERMINAL
================================ */

/* ===============================
   TERMINAL LAYOUT
================================ */
.terminal {
	display: flex;
	flex-wrap: nowrap;
	background: #0b0f14;
	color: #e5e7eb;
}

/* RIGHT PANEL */
.terminal-right {
	max-width: 450px;
	width: 100%;
	overflow: auto;
	max-height: 950px;
	padding: 10px;
	background: #0b0f14;
}



/* scrollbar */
/* width */
::-webkit-scrollbar {
	width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #f7f7f7;
	border-radius: 50px;

}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #aaa;
	border-radius: 50px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #555;
}

.panel {
	background: #121821;
	border: 1px solid #1e2633;
	border-radius: 10px;
	padding: 12px;
}

/* CENTER */
.terminal-center {
	border-right: 1px solid #1e2633;
	width: calc(100% - 450px);
	overflow: hidden;
}

/* LEFT TOOLBAR */
.terminal-toolbar {
	background: #05070a;
	border-left: 1px solid #1e2633;
	display: none;
	justify-content: center;
	width: 50px;
	height: auto;
}

.terminal-toolbar ul {
	list-style: none;
	padding: 10px 0;
}

.terminal-toolbar li {
	padding: 14px 0;
	text-align: center;
	cursor: pointer;
	opacity: 0.7;
}

.terminal-toolbar li:hover {
	opacity: 1;
}

/* MAIN CHART */
.chart-header-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 12px;
	background: #0f172a;
	border-bottom: 1px solid #1e293b;
}

.chart-symbol {
	font-size: 18px;
	font-weight: 600;
}

.chart-actions button {
	margin-left: 8px;
}

.terminal-chart {
	display: flex;
	flex-direction: column;
	border-right: 1px solid #1e2633;
}

.chart-header {
	font-size: 14px;
	padding: 10px 14px;
	border-bottom: 1px solid #1e2633;
	display: flex;
	justify-content: space-between;
}

.chart-placeholder {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0e141b;
	color: #9ca3af;
}

/* BOTTOM PANEL */
.terminal-bottom {
	background: #0b0f14;
	border-top: 1px solid #1e2633;
	height: 300px;
	overflow: scroll;
}

.tab-bar {
	display: flex;
	border-bottom: 1px solid #1e2633;
}

.tab-bar button {
	flex: 1;
	background: none;
	color: #9ca3af;
	padding: 10px;
	border: none;
	cursor: pointer;
}

.tab-bar button.active {
	color: #3cff8f;
	border-bottom: 2px solid #3cff8f;
}

.tab-panel {
	display: none;
}

.tab-panel.active {
	display: block;
}

.pnl-positive {
	color: #16a34a;
	font-weight: 600;
}

.pnl-negative {
	color: #dc2626;
	font-weight: 600;
}

.pnl-neutral {
	color: #9ca3af;
}


.dash-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}

.dash-table th,
.dash-table td {
	padding: 6px 8px;
	border-bottom: 1px solid #222;
	text-align: left;
}

tr.buy {
	color: #3fb950;
}

tr.sell {
	color: #f85149;
}


/* ORDER PANEL */
.order-panel .order-row {
	margin-bottom: 10px;
}

.order-panel input,
.order-panel select {
	width: 100%;
	background: #0b0f14;
	border: 1px solid #1e2633;
	color: #9ca3af;
	padding: 6px;
}

.order-panel .buy {
	background: #3cff8f;
	color: #000;
}

.order-panel .sell {
	background: #ff4d4d;
	color: #fff;
}

.place-order {
	width: 100%;
	background: #2563eb;
	border: none;
	padding: 10px;
	color: #fff;
	opacity: 0.4;
	cursor: not-allowed;
}

/* WATCHLIST */
.watchlist ul {
	list-style: none;
}

.watchlist li {
	display: flex;
	justify-content: space-between;
	padding: 6px 0;
	border-bottom: 1px solid #1e2633;
}

/* BOTTOM */
.panel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.panel-header h4 {
	margin: 0;
}

.market-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 12px;
}

.market-table th,
.market-table td {
	padding: 6px 4px;
	border-bottom: 1px solid #1e2633;
}

.market-table tbody tr.flash {
	animation: flashBg 0.6s ease;
}

.market-table tr td.view-graph {
	cursor: pointer;
	pointer-events: auto !important;
}

.ltp-up {
	color: #16a34a;
}

.ltp-down {
	color: #dc2626;
}

@keyframes flashBg {
	from {
		background: rgba(60, 255, 143, 0.2);
	}

	to {
		background: transparent;
	}
}

.live-dot {
	color: #2ecc71;
	font-weight: bold;
}

.market-closed {
	color: #e74c3c;
	font-weight: bold;
}


.market-controls {
	display: flex;
	gap: 6px;
	margin-bottom: 8px;
}

.market-controls input,
.market-controls select {
	flex: 1;
	background: #0b0f14;
	border: 1px solid #1e2633;
	color: #e5e7eb;
	padding: 6px;
	font-size: 12px;
}

.pin {
	cursor: pointer;
	opacity: 0.5;
}

.pin.active {
	color: gold;
	opacity: 1;
}

.up {
	color: #3cff8f;
}

.down {
	color: #ff4d4d;
}

.chart-toggle {
	display: none;
}

.tv-chart {
	height: 550px;
	background: #0e141b;
	width: 100%;
}

#fivePaisaChart {
	height: 100%;
}

@media screen and (max-width: 767px) {
	.terminal {
		flex-wrap: nowrap;
		flex-direction: column;
	}
	.terminal-right {
		height: 500px;
	}
	
    .market-table tr td:nth-child(3),
	.market-table tr td:nth-child(4),
	.market-table tr th:nth-child(3),
	.market-table tr th:nth-child(4) {
		display: none;
	}
		
	.market-table .trade-btn {
		padding: 4px 8px;
	}
	
	.terminal-center {    
		width: 100%;
		height: 100%;
		margin: 20px 0 0 0;
		padding: 20px 10px 0 10px;
		max-width: 100%;
		border-width: 1px 0 0 0;
	}
	
	.chart-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 16px;
        background: #1e2633;
        color: #00ff9c;
        font-weight: 600;
        cursor: pointer;
        border-radius: 8px;
        margin-bottom: 8px;
		max-width: 250px;
		width: 100%;
    }

    .chevron {
        width: 10px;
        height: 10px;
        border-right: 2px solid #00ff9c;
        border-bottom: 2px solid #00ff9c;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
    }

    .chart-section.active .chevron {
        transform: rotate(-135deg);
    }

    .chart-container {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .chart-section.active .chart-container {
        max-height: 450px;
    }
	
	.tv-chart {
		height: 350px
	}
} 
/** Charts **/

.stock-chart {
	margin: 30px 0;
}

.stock-performance .grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
}


.card {
	padding: 20px;
	background: #fff;
	margin: 30px 0;
	border-radius: 8px
}

.grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px
}

.range {
	display: flex;
	justify-content: space-between;
	align-items: center
}

.bar {
	flex: 1;
	height: 6px;
	background: #eee;
	margin: 0 10px
}

.stats {
	display: flex;
	gap: 20px;
	margin-top: 10px
}

.tabs button {
	margin-right: 10px;
	padding: 6px 12px
}

.tabs .active {
	background: #2563eb;
	color: #fff
}

.fin-table {
	width: 100%;
	border-collapse: collapse
}

.fin-table td {
	border-bottom: 1px solid #eee;
	padding: 8px
}

.hidden {
	display: none
}

.bar-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 8px 0
}

.bar-fill {
	background: #4f46e5;
	color: #fff;
	padding: 3px
}



.trade-btn {
	padding: 6px 10px;
	border: none;
	cursor: pointer;
	font-weight: 600;
	border-radius: 6px;
}

.trade-btn.disabled {
	opacity: 0.4;
	cursor: not-allowed !important;
}

.trade-btn.buy {
	background: #1e9f6e;
	color: #fff;
}

.trade-btn.sell {
	background: #d64545;
	color: #fff;
}

.trade-modal {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 9999;
	padding: 10px;
	justify-content: center;
	align-items: center;
}

.trade-modal-content {
	background: #121820;
	color: #fff;
	max-width: 400px;
	width:100%;
	padding: 20px;
	border-radius: 10px;
	position: relative;
}

.trade-close {
	position: absolute;
	top: 10px;
	right: 14px;
	cursor: pointer;
	font-size: 20px;
}

.form-group {
	margin-bottom: 14px;
}

.form-group label {
	margin-bottom: 10px;
}

.form-group input {
	width: 100%;
	padding: 8px;
	border-radius: 6px;
	border: 1px solid #333;
	background: #0e141b;
	color: #fff;
}

.trade-submit {
	width: 100%;
	padding: 10px;
	background: #00b894;
	border: none;
	border-radius: 6px;
	color: #fff;
	font-weight: bold;
	cursor: pointer;
}

.trade-message {
	margin-top: 10px;
	font-size: 14px;
}

.at-market-price {
	margin-top: 10px;
	display: flex;
	justify-content: space-between;
}

.price-btn-marktet {
    background: #eee;
    color: #222;
    border-radius: 5px;
    padding: 4px 12px;
    font-size: 14px;
    display: inline-block;
}

/* Individual pages */
.trade-container {
	overflow: auto;
}

.trade-container .dash-table thead tr {
	background: #3cff8f;
	color: #222;
	text-align: left;
}

.trade-container .dash-table th,
.trade-container .dash-table td {
	padding: 10px 15px;
	border: 1px solid #222;
}

/* User JOurney */
/* ============================
   VERIFIED PROFILE SECTION
============================ */

.verified-user-box {
    max-width: 768px;
    width: 100%;
    margin: 40px auto;
    padding: 28px 26px;
    background: linear-gradient(180deg, #0b1220 0%, #0e1628 100%);
    border: 1px solid #1e2a44;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    color: #e5e7eb;
}

.verified-user-box h2 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 6px;
}

.verified-user-box p {
	font-size: 14px;
	color: #9aa4b2;
	margin-bottom: 22px;
}

/* ============================
   USER DETAILS LIST
============================ */

.user-details {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
}

.user-details li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px dashed #23304a;
	font-size: 14px;
}

.user-details li:last-child {
	border-bottom: none;
}

.user-details strong {
	color: #94a3b8;
	font-weight: 500;
}

.user-details span,
.user-details li>span {
	color: #e5e7eb;
}

/* ============================
   STATUS BADGE
============================ */

.status-verified {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #00c853;
	font-weight: 600;
}

.status-verified::before {
	content: '●';
	font-size: 10px;
}

/* ============================
   CTA BUTTON
============================ */

.verified-user-box .btn {
	display: block;
	width: 100%;
	padding: 12px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	text-align: center;
	background: linear-gradient(90deg, #2563eb, #3b82f6);
	color: #ffffff;
	border: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.verified-user-box .btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(59, 130, 246, 0.45);
}

.copy-btn {
    margin-left: 10px;
    padding: 4px 10px;
    font-size: 12px;
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s ease;
}

.copy-btn:hover {
    background: #0b5ed7;
}

.copy-feedback {
    margin-left: 8px;
    font-size: 12px;
    color: #28a745;
    font-weight: 600;
}

/* ============================
   EMPTY / WARNING STATE
============================ */

.verified-user-box .fs-error {
	margin-top: 14px;
	padding: 10px 12px;
	background: rgba(255, 82, 82, 0.12);
	border: 1px solid rgba(255, 82, 82, 0.4);
	border-radius: 6px;
	color: #ff5252;
	font-size: 13px;
}

.status-pending {
	color: #ff6b6b !important;
	font-weight: 600;
}

.status-verified {
	color: #2cff9a !important;
	font-weight: 600;
}


/* Right panel (form) */
.finschool-right {
	background: #222;
	padding: 34px 36px;
	display: flex;
	flex-direction: column;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
	border-radius: 8px;
	overflow: hidden;
	max-width: 600px;
	margin: 50px auto;
}

.fs-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 6px;
	z-index: 3;
	text-align: center;
	justify-content: center;
}

.fs-heading {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	line-height: 28px;
	margin-bottom: 6px;
	text-align: center;
}

.fs-sub {
	color: #fff;
	margin-bottom: 18px;
	text-align: center;
	font-weight: 400;
	font-size: 16px;
	line-height: 28px;
}

.fs-form {
	width: 100%;
}

.fs-field {
	margin-bottom: 12px;
	position: relative;
}

.fs-field label {
	display: block;
	font-size: 12px;
	color: #fff;
	margin-bottom: 8px;
	font-weight: 600;
	letter-spacing: 0.1px;
}

.fs-field input[type="text"],
.fs-field input[type="email"],
.fs-field input[type="tel"],
.fs-field select {
	width: 100%;
	padding: 10px 12px;
	border-radius: 8px;
	border: 1px solid #e6e2db;
	font-size: 14px;
	background: #fff;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

input[readonly],
input[disabled] {
	background: #0f172a;
	color: #9aa4b2;
	cursor: not-allowed;
}

/* inline mobile + verify button */
.mobile-inline {
	display: flex;
	gap: 10px;
	align-items: center;
}

.mobile-inline .mobile-wrap {
	flex: 1;
}

.fs-verify-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Submit button - pill */
.fs-error {
	margin-top: 6px;
	color: #d0204b;
	font-size: 13px;
	display: none;
}

/* OTP modal adjusted */
.otp-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.otp-modal-content {
	position: relative;
	margin: 0 20px;
	background: #222;
	border-radius: 8px;
	padding: 22px;
	text-align: center;
	max-width: 400px;
	width: 100%;
	box-shadow: 0 8px 36px rgba(0, 0, 0, 0.25);
}
.modal-close {
	position: absolute;
	top: 10px;
	right: 12px;
	background: transparent;
	border: none;
	font-size: 22px;
	font-weight: 700;
	color: #666;
	cursor: pointer;
	line-height: 1;
}

.modal-close:hover {
	color: #000;
}
.otp-inputs {
	display: flex;
	justify-content: space-between;
	margin: 14px 0;
}

.otp-digit {
	width: 44px;
	height: 48px;
	font-size: 20px;
	text-align: center;
	border: 1px solid #ddd;
	border-radius: 8px;
}

.verify-btn {
	margin-top: 8px;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(34, 34, 34, 0.18);
}

.verify-btn:hover,
.verify-btn:focus {
	background: #39B54A
}

.resend-btn,
.resend-btn:hover,
.resend-btn:focus {
	background: transparent;
	color: #2563eb;
	border: 0;
	outline: 0;
	appearance: none;
}


.resend-btn:hover,
.resend-btn:focus {
	text-decoration: underline
}

.pass-id {
	font-weight: bold;
}

.social-icons {
	display: flex;
	justify-content: center;
	gap: 10px;
}

#resendOTPModal:hover:not(:disabled) {
	color: #0b56b2;
}

/* Disabled state (while countdown active) */
#resendOTPModal:disabled,
#resendOTPModal[disabled] {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
	color: #888 !important;
}

/* Wallet */
.wallet-page {
    max-width: 1280px;
    margin: 40px auto;
    padding: 0 16px;
}

.wallet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.wallet-balance {
    font-size: 16px;
    background: #0f172a;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
}

.ledger-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.ledger-filters a {
    padding: 6px 12px;
    border-radius: 4px;
    background: #e5e7eb;
    color: #111;
    text-decoration: none;
    font-weight: 600;
}

.ledger-filters a.active {
    background: #2563eb;
    color: #fff;
}

.ledger-table-wrap {
	overflow: auto;
}

.ledger-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
	
}

.ledger-table th,
.ledger-table td {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
	color: #222;
}

.ledger-table th {
    background: #f8fafc;
    font-weight: 700;
}

.ledger-table td.debit {
    color: #dc2626;
    font-weight: 700;
}

.ledger-table td.credit {
    color: #16a34a;
    font-weight: 700;
}

.ledger-table .empty {
    text-align: center;
    padding: 30px;
    color: #6b7280;
}

.ledger-pagination {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 20px 0;
}

.ledger-pagination a {
    text-decoration: none;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
	.header-inner {
		flex-wrap: wrap;
		gap: 10px;
	}
	
	.user-desktop-status {
		display: none;
	}
	
	.user-mob-status {
		display: block;
	}
	
	.wallet-pill {
        padding: 8px;
        border-radius: 50%;
        background: transparent;
        gap: 0;
        box-shadow: none;
		position: relative;
    }
	
	.wallet-pill::after {        
		content: attr(data-balance);
        bottom: -14px;
        margin: auto;
        position: absolute;
        background: #0b0f14;
        border-radius: 50%;
        color: #00ff9c;
        font-size: 13px;
        padding: 4px;
        pointer-events: none;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
        width: auto;
    }

    .wallet-pill:active::after,
    .wallet-pill:focus-visible::after {
        opacity: 1;
    }
	
	/* Hide text on mobile */
    .wallet-amount,
    .wallet-status {
        display: none;
    }
	
	.wallet-pill img {
        width: 22px;
        height: 22px;
        filter: drop-shadow(0 0 6px rgba(255,255,255,0.15));
    }

    /* VERIFIED → Green glow */
    .wallet-pill:has(.wallet-status.verified) {
        background: rgba(0, 255, 156, 0.12);
        box-shadow:
            0 0 0 2px rgba(0, 255, 156, 0.25),
            0 0 14px rgba(0, 255, 156, 0.55);
    }

    /* UNVERIFIED → Amber glow */
    .wallet-pill:has(.wallet-status.unverified) {
        background: rgba(255, 180, 0, 0.12);
        box-shadow:
            0 0 0 2px rgba(255, 180, 0, 0.3),
            0 0 14px rgba(255, 180, 0, 0.5);
    }
	
	.footer-col {
        width: 100%;
        flex: 0 0 100% !important;
    }
}