/* CSS Reset and Base Styles */
:root {
	--background: 260 25% 9%;
	--foreground: 260 10% 98%;
	--card: 260 25% 11%;
	--card-foreground: 260 10% 98%;
	--popover: 260 25% 11%;
	--popover-foreground: 260 10% 98%;
	--primary: 265 89% 70%;
	--primary-foreground: 0 0% 100%;
	--secondary: 260 15% 20%;
	--secondary-foreground: 260 10% 98%;
	--muted: 260 15% 15%;
	--muted-foreground: 260 10% 70%;
	--accent: 265 89% 78%;
	--accent-foreground: 0 0% 100%;
	--destructive: 0 84.2% 60.2%;
	--destructive-foreground: 0 0% 98%;
	--border: 260 15% 25%;
	--input: 260 15% 25%;
	--ring: 265 89% 70%;
	--radius: 1rem;
	--sidebar-background: 260 25% 11%;
	--sidebar-foreground: 260 10% 98%;
	--sidebar-primary: 265 89% 70%;
	--sidebar-primary-foreground: 0 0% 100%;
	--sidebar-accent: 260 15% 20%;
	--sidebar-accent-foreground: 260 10% 98%;
	--sidebar-border: 260 15% 25%;
	--sidebar-ring: 265 89% 70%;
	--whiteColor: #fff;
	--bodyBg: #15111d;
	--btnBgGrd: linear-gradient(90deg, #8B5CF6 0%, #A855F7 50%, #6D28D9 100%);
	--bsBtnBorderColor: #6D28D9;
	--btnOutlineBgGrd: linear-gradient(to right, #b06fff, #9245ff)
		--twRingOffsetShadow: 0 0 #0000;
	--twRingShadow: 0 0 #0000;
	--twShadow: 0 0 10px rgba(139, 92, 246, 0.7);
	--twShadowColored: 0 0 10px var(--tw-shadow-color);
	--background: 260 25% 9%;
	--twRingOffsetShadow: 0 0 #0000;
	--twRingShadow: 0 0 #0000;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: sans-serif, Tahoma, Geneva, Verdana, sans-serif;
	background-color: var(--bodyBg);
	font-size: 16px;
	line-height: 24px;
	color: var(--whiteColor)
}

html {
	font-family: sans-serif, system-ui, sans-serif, "Apple Color Emoji",
		"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	font-feature-settings: normal;
	font-variation-settings: normal;
	-webkit-tap-highlight-color: transparent;
}

.btn-primary {
	background-image: var(--btnBgGrd);
	border: 1px solid var(--bsBtnBorderColor);
}

.btn.btn-primary:hover {
	opacity: 0.9;
}

.btn-outline-primary {
	border: 1px solid var(--bsBtnBorderColor);
	color: var(--whiteColor);
}

.btn-outline-primary:hover {
	background: var(--btnOutlineBgGrd);
	border: 1px solid var(--bsBtnBorderColor);
}

.cryptoHeader {
	padding: 16px;
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 999;
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(10px); /* For Safari support */
	background-color: rgba(0, 0, 0, 0.6);
	transition: background-color 0.3s ease;
}

.cryptoHeader .navbar-nav {
	gap: 0 22px;
}

.cryptoHeader .navbar-nav .nav-item .btn {
	border-radius: 12px;
	transition: background 0.3s ease, opacity 0.3s ease;
}

.cryptoHeader .navbar-nav .nav-item .btn:hover {
	color: hsl(0 0% 100%);
	background-color: hsl(265 89% 78%);
}

.wallet-section {
	padding: 55px 16px 80px;
	/*  background: linear-gradient(to right, #2e005c, #3e1f7a);*/
	background-image: linear-gradient(120deg, rgba(107, 33, 168, 0.8) 0%,
		rgba(139, 92, 246, 0.8) 50%, rgba(79, 70, 229, 0.8) 100%);
	color: white;
	position: relative;
}

.wallet-section::before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: hsl(var(--background)/0.4);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.wallet-section .container-fluid {
	position: relative;
	z-index: 2;
}

.wallet-section .row {
	align-items: center;
}

.wallet-section .wallet-left h1 {
	font-size: 3.5rem;
	line-height: 1.2;
}

.wallet-section .wallet-left .light {
	color: #b379ff;
	font-weight: bold;
}

.wallet-section .wallet-left .bold {
	font-weight: bold;
	color: white;
}

.wallet-section .wallet-left p {
	margin: 20px 0;
	font-size: 1.2rem;
	max-width: 500px;
}

.wallet-section .wallet-buttons {
	margin-top: 30px;
}

.wallet-section .btn-primary {
	background: linear-gradient(90deg, #8B5CF6 0%, #A855F7 50%, #6D28D9 100%);
	border: none;
	padding: 15px 30px;
	color: white;
	font-size: 1rem;
	font-weight: 700;
	border-radius: 15px;
	margin-right: 20px;
	cursor: pointer;
	border-radius: 15px;
	transition: background 0.3s ease, opacity 0.3s ease;
}

.wallet-section .btn-primary:hover {
	background: linear-gradient(90deg, #8B5CF6 0%, #A855F7 50%, #6D28D9 100%);
	opacity: 0.9;
}

.wallet-section .btn-secondary {
	background: hsl(var(--background));
	color: white;
	padding: 15px 30px;
	border-radius: 15px;
	border: none;
	cursor: pointer;
	--tw-text-opacity: 1;
	color: rgb(168 85 247/ var(--tw-text-opacity, 1));
	--tw-border-opacity: 1;
	border: 1px solid rgb(168 85 247/ var(--tw-border-opacity, 1));
	transition: background 0.3s ease, opacity 0.3s ease;
}

.wallet-section .btn-secondary:hover {
	background-color: rgb(168 85 247/ 0.1);
	color: var(--whiteColor);
}

.wallet-section .wallet-card {
	--twShadow: 0 0 10px rgba(139, 92, 246, 0.7);
	background-color: rgb(255 255 255/ 0.05);
	padding: 30px;
	border-radius: 25px;
	/*  box-shadow: 0 0 40px rgba(255, 255, 255, 0.05);*/
	box-shadow: var(--twRingOffsetShadow, 0 0 #0000),
		var(--twRingShadow, 0 0 #0000), var(--twShadow);
	animation: bounce 6s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.wallet-section .wallet-card h4 {
	color: #b379ff;
	font-size: 15px;
	line-height: 18px;
	margin-bottom: 18px;
	font-weight: 600;
}

.wallet-section .wallet-card h2 {
	font-size: 30px;
	line-height: 36px;
	margin: 0 0 25px 0;
	font-weight: 600;
}

.wallet-section .crypto-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	margin-bottom: 15px;
}

.wallet-section .crypto-info {
	display: flex;
	align-items: center;
	gap: 15px;
}

.wallet-section .crypto-info .icon {
	width: 40px;
	height: 40px;
	background: #1d1d1d;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
}

.wallet-section .crypto-info .crypto-amtTl p {
	margin-bottom: 0;
}

.wallet-section .bitcoin-icon {
	background: #000;
}

.wallet-section .ethereum-icon {
	background: #000;
}

.wallet-section .crypto-price {
	text-align: right;
	display: flex;
	flex-direction: column;
}

.wallet-section .green {
	color: #4caf50;
	font-size: 0.9rem;
}

.wallet-section .red {
	color: #f44336;
	font-size: 0.9rem;
}

.wallet-section .wallet-actions {
	display: flex;
	justify-content: space-between;
	margin-top: 25px;
}

.wallet-section .wallet-actions button {
	background: #111;
	background-color: hsl(var(--secondary));
	color: white;
	border: none;
	padding: 12px 25px;
	border-radius: 12px;
	cursor: pointer;
	flex: 1;
	margin: 0 5px;
	border-radius: 15px;
	transition: background 0.3s ease, opacity 0.3s ease;
}

.wallet-section .wallet-actions button:hover {
	background: #111;
	background-color: hsl(var(--secondary)/0.8);
	color: white;
	border: none;
	padding: 12px 25px;
	border-radius: 12px;
	cursor: pointer;
	flex: 1;
	margin: 0 5px;
	border-radius: 15px;
}

:root {
	--accent: 265 89% 78%;
}

.allIn_oneSec {
	padding: 60px 16px;
	background-color: hsl(var(--background));
}

.allIn_oneSec .allOne_header {
	text-align: center;
	margin-bottom: 64px;
}

.allIn_oneSec .allOne_header h2 {
	font-weight: 700;
}

.allIn_oneSec .allOne_header p {
	--bs-text-opacity: 1;
	color: #6c757d !important;
	max-width: 50%;
	margin: auto;
}

.allIn_oneSec .allOne_header h2 .text-gradient {
	color: #A855F7;
}

.allIn_oneSec .feature-card {
	background-color: #2d2934;
	border: 2px solid hsl(265deg 50% 44.62%);
	border-radius: 1rem;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
	transition: transform 0.3s ease;
	padding: 20px;
	min-height: 171px;
}

.allIn_oneSec .feature-card:hover {
	transform: translateY(0px);
}

.allIn_oneSec .feature-card .frIcon {
	margin-bottom: 16px;
	font-size: 28px;
	line-height: 32px;
}

.allIn_oneSec .feature-card .frText {
	font-weight: 600;
}

.allIn_oneSec .feature-card .text-muted {
	margin-bottom: 0;
	color: #faf9fab3;
}

:root {
	--accent: 265 89% 78%;
}

.crypto-support-section {
	padding: 80px 16px;
	text-align: center;
	background-color: #1a1621;
	color: #fff;
}

.section-title {
	font-size: 22px;
	margin-top: 12px;
	margin: 12px 0px 0px 25px;
}

.section-subtitle {
	color: #b0aebb;
	font-size: 1.1rem;
	margin-bottom: 40px;
}

.crypto-icon-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	margin-bottom: 40px;
}

.crypto-icon-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.crypto-icon {
	width: 35px;
	height: 35px;
	background-color: #1d152b;
	border-radius: 50%;
	border: 0px solid hsl(var(--accent));
	box-shadow: 0 0 10px hsla(var(--accent)/0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	transition: transform 0.3s;
}

.crypto-icon:hover {
	transform: scale(1.1);
}

.crypto-label {
	margin-top: 8px;
	font-weight: 500;
}

.view-all-wrapper {
	margin-top: 20px;
}

.view-all-btn {
	padding: 10px 24px;
	border-radius: 12px;
	background-color: transparent;
	color: rgb(168 85 247/ var(--tw-text-opacity, 1));
	border: 1px solid hsl(var(--accent));
	text-decoration: none;
	font-weight: 500;
	transition: background 0.3s;
	border: 1px solid rgb(168 85 247/ var(--tw-text-opacity, 1));
}

.view-all-btn:hover {
	color: hsl(var(--accent-foreground));
	background-color: rgba(168, 85, 247, 0.1);
}

:root {
	--accent: 265 89% 78%;
}

.how-it-works-section {
	padding: 60px 20px;
	text-align: center;
	background-color: hsl(var(--background));
	color: #fff;
}

.section-title {
	font-size: 22px;
	margin-top: 12px;
	margin: 12px 0px 0px 25px;
}

.section-subtitle {
	color: #b0aebb;
	font-size: 1.1rem;
	margin-bottom: 40px;
}

.steps-grid {
	
}

.step-card {
	background-color: #1c1729;
	border-radius: 12px;
	overflow: hidden;
	text-align: left;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0);
	position: relative;
	height: 100%;
}

.step-image-wrapper {
	position: relative;
}

.step-image {
	width: 100%;
	display: block;
	min-height: 192px;
	object-fit: cover;
	max-height: 192px;
}

.step-number {
	position: absolute;
	top: 0px;
	left: 0px;
	background-color: rgb(139 92 246/ var(--tw-bg-opacity, 1));
	color: rgb(255 255 255/ var(--tw-text-opacity, 1));
	font-weight: 700;
	padding: 6px 12px;
	border-radius: 0px 0px 16px 0px;
	font-size: 14px;
}

.step-content {
	padding: 20px;
}

.step-title {
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 8px;
}

.step-description {
	color: #c5c5c5;
	font-size: 0.95rem;
}

.cta-wrapper {
	margin-top: 40px;
}

.cta-button {
	padding: 10px 24px;
	background-image: var(--btnBgGrd);
	color: #fff;
	border-radius: 12px;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	transition: background 0.3s;
	font-size: 16px;
	line-height: 24px;
}

.cta-button:hover {
	background-color: hsla(var(--accent), 0.8);
	background-image: none;
	color: #fff;
}

/* Responsive */
@media ( max-width : 768px) {
	.steps-grid {
		flex-direction: column;
		align-items: center;
	}
}

/* CTA Section */
.cta-section {
	background: linear-gradient(90deg, #1a1041 0%, #311e48 100%);
	padding: 80px 20px;
	text-align: center;
	color: #fff;
}

.cta-container {
	max-width: 800px;
	margin: 0 auto;
}

.cta-heading {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.cta-subtext {
	font-size: 1.2rem;
	color: #ccc;
	margin-bottom: 40px;
}

/* CTA Button */
.cta-button {
	display: inline-block;
	padding: 15px 30px;
	background: linear-gradient(90deg, #8B5CF6 0%, #A855F7 50%, #6D28D9 100%);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	border-radius: 12px;
	transition: background 0.3s ease, opacity 0.3s ease;
}

.cta-button:hover {
	background: linear-gradient(90deg, #8B5CF6 0%, #A855F7 50%, #6D28D9 100%);
	opacity: 0.9;
}

/* Footer Styling */
.site-footer {
	background-color: hsl(var(--background));
	color: #ccc;
	padding: 60px 20px 30px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.site-footer  .footer-top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px;
	border-bottom: 1px solid #2d2346;
	padding-bottom: 40px;
}

.site-footer  .footer-brand {
	flex: 1 1 300px;
}

.site-footer  .brand-logo {
	margin-bottom: 10px;
}

.site-footer  .brand-name {
	color: #a44afe;
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.site-footer .brand-description {
	font-size: 1rem;
	line-height: 1.6;
	max-width: 310px;
}

.site-footer .footer-links {
	width: 100%;
	display: flex;
	gap: 200px;
	flex: 1 1 400px;
}

.site-footer .link-group {
	min-width: 120px;
}

.site-footer .link-heading {
	color: #fff;
	font-size: 1.1rem;
	margin-bottom: 12px;
}

.site-footer .link-group ul {
	list-style: none;
	padding: 0;
}

.site-footer .link-group ul li {
	margin-bottom: 8px;
}

.site-footer .link-group ul li a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.site-footer .link-group ul li a:hover {
	color: #fff;
}

.site-footer .footer-bottom {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding-top: 20px;
	font-size: 0.9rem;
	color: #aaa;
	gap: 10px;
}

.site-footer .footer-bottom p {
	margin-top: 0px;
	margin-bottom: 0rem;
}

.site-footer .footer-legal-links {
	display: flex;
	gap: 20px;
}

.footer-legal-links a {
	color: #ccc;
	text-decoration: none;
}

.footer-legal-links a:hover {
	color: #fff;
}

/* Responsive Footer */
@media ( min-width : 768px) {
	.footer-bottom {
		flex-direction: row;
	}
}