body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

h1, h2, h3 {
    letter-spacing: -0.025em;
}

header {
    box-shadow: #000000 0px 20px 30px -10px;
}

.text-gradient {
    background: linear-gradient(to bottom right, hsl(129deg 0% 100%), #ffffff3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

.gradient-bg {
    background: linear-gradient(120deg, #000000a8 0%, #000000c4 100%);
}
.card-glow {
    box-shadow: 0 0 15px rgba(59, 178, 246, 0.5), 0 0 30px rgba(59, 156, 246, 0.3);
    transition: all 0.3s ease-in-out;
}
.card-glow:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 25px rgba(59, 187, 246, 0.7), 0 0 45px rgba(59, 178, 246, 0.4);
}
.btn-primary {
    @apply bg-blue-600 hover:bg-blue-500 text-white font-semibold py-3 px-8 rounded-lg transition duration-300 flex-shrink-0;
}

:root {
--electric-blue: #3cb7c7;
--emerald-pink: #d658aa;
--dark-gray: #000000;
--light-gray: #F3F4F6;
--text-light: #E5E7EB;
--text-dark: #111827;
--electric-pink: #d658aa;
--electric-yellow: #e6cf65;
}

/* Mint Now button with animated border */
.mint-button {
    position: relative;
    box-shadow: inset 0 0 15px 0 #000000c7;
    background-color: #381334;
    transition: box-shadow 1.2s ease-in-out;
    border-radius: 12px;
    color: #ffffff;

}

.mint-button::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 8px solid #e6cf65b9;
    border-radius: 12px;
    opacity: 0.7;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
    z-index: -1;
}

.mint-button:hover {
    box-shadow: inset 0 0 15px 0 #00000056;
    background-color: #461741;
    color: #ffffff;
}

.mint-button:hover::after {
    opacity: 1;
}

/* Login button flush animation without changing text */
.login-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    border: 1px solid #3cb7c766;
    border-radius: 10px;
    background: linear-gradient(135deg, #3030303b, #000000);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.login-button:hover {
    border-color: #3cb7c7;
    box-shadow: 0 0 0 1px rgba(0, 123, 255, 0.25), 0 6px 16px rgba(0, 0, 0, 0.35);
}
.login-button::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: radial-gradient(120px 50px at 0% 50%, #3cb7c74d, transparent 60%),
                radial-gradient(120px 50px at 100% 50%, #d658aa4d, transparent 60%);
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 160ms ease, transform 200ms ease;
    pointer-events: none;
}
.login-button.button-flush::after {
    opacity: 1;
    transform: scale(1);
}
.login-button .button-text-shadow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff22;
    text-shadow: 0 0 10px #3cb7c780;
    animation: text-flush 0.6s ease-out forwards;
}
@keyframes text-flush {
    0% { opacity: 0; transform: translate(-50%, 0px); }
    30% { opacity: 1; transform: translate(-50%, -1px); }
    100% { opacity: 0; transform: translate(-50%, -3px); }
}


.intro-blob {
    font-size: 16px;
    border-radius: 14px;
    border: none;
    padding: 2px;
    background: radial-gradient(circle 80px at 80% -10%, #d658aa7a, #181b1b);
    position: relative;
  }
  .intro-blob::after {
    content: "";
    position: absolute;
    width: 65%;
    height: 60%;
    border-radius: 120px;
    top: 0;
    right: 0;
    box-shadow: 0 0 20px #fb06cb38;
    z-index: -1;
  }
  
  .blob1 {
    position: absolute;
    width: 70px;
    height: 100%;
    border-radius: 16px;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle 60px at 0% 100%, #19cee6, #349dad57, transparent);
    box-shadow: -10px 10px 30px #00f7ff2d;
  }
  
  .inner {
    padding: 8px 16px;
    border-radius: 10px;
    color: #ffffffa3;
    z-index: 3;
    position: relative;
    background: radial-gradient(circle 80px at 80% -50%, #cc489c, #0f1111);
  }
  .inner::before {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 14px;
    background: radial-gradient(circle 60px at 0% 100%, #00e1ff5e, #30707138, transparent);
    position: absolute;
  }
  

  /* card pixels effect */

  .home-4 {
    --background-color: #000000;
    --text-color: #A1A1AA;
    --card-background-color: rgba(255, 255, 255, .015);
    --card-border-color: rgba(255, 255, 255, 0.1);
    --card-box-shadow-1: rgba(0, 0, 0, 0.05);
    --card-box-shadow-1-y: 3px;
    --card-box-shadow-1-blur: 6px;
    --card-box-shadow-2: rgba(0, 0, 0, 0.1);
    --card-box-shadow-2-y: 8px;
    --card-box-shadow-2-blur: 15px;
    --card-label-color: #FFFFFF;
    --card-icon-color: #D4D4D8;
    --card-icon-background-color: rgba(255, 255, 255, 0.08);
    --card-icon-border-color: rgba(255, 255, 255, 0.12);
    --card-shine-opacity: .1;
    --card-shine-gradient: conic-gradient(from 205deg at 50% 50%, rgba(16, 185, 129, 0) 0deg, #10B981 25deg, rgba(52, 211, 153, 0.18) 295deg, rgba(16, 185, 129, 0) 360deg);
    --card-line-color: #2A2B2C;
    --card-tile-color: rgba(16, 185, 129, 0.05);
    --card-hover-border-color: rgba(255, 255, 255, 0.2);
    --card-hover-box-shadow-1: rgba(0, 0, 0, 0.04);
    --card-hover-box-shadow-1-y: 5px;
    --card-hover-box-shadow-1-blur: 10px;
    --card-hover-box-shadow-2: rgba(0, 0, 0, 0.3);
    --card-hover-box-shadow-2-y: 15px;
    --card-hover-box-shadow-2-blur: 25px;
    --card-hover-icon-color: #34D399;
    --card-hover-icon-background-color: rgba(52, 211, 153, 0.1);
    --card-hover-icon-border-color: rgba(52, 211, 153, 0.2);
    --blur-opacity: .01;
    --card-yellow: #e6cf65;
    --card-green: #10B981;
    --card-purple: #d658aa;
    --card-red: #DC2626;
}

.home-4 {
    display: flex;
    font-family: "Inter", Arial;
    justify-content: center;
    align-items: center;
    background-color: var(--background-color);
}

.grid {
    display: grid;
    position: relative;
    z-index: 1;
}

.cardSections {
    box-shadow: 0px 3px 6px var(--card-hover-box-shadow-1), 0px var(--card-hover-box-shadow-2-y) var(--card-hover-box-shadow-2-blur) var(--card-hover-box-shadow-2), 0 0 0 1px var(--card-hover-border-color);
    position: relative;
    transition: box-shadow 0.25s;
    background: radial-gradient(555px at 0.4% 48%, rgb(87 87 87 / 23%) 0%, rgb(0 0 0) 97.5%);
}
.cardSections::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    background-color: var(--card-background-color);
}
.cardSections .icon {
    z-index: 2;
    position: relative;
    display: table;
    padding: 8px;
}
.cardSections .icon::after {
    content: "";
    position: absolute;
    inset: 4.5px;
    border-radius: 15%;
    background-color: var(--card-hover-icon-background-color);
    border: 1px solid var(--card-hover-icon-border-color);
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    transition: background-color 0.25s, border-color 0.25s;
}
.cardSections .icon svg {
    position: relative;
    z-index: 1;
    display: block;
    width: 24px;
    height: 24px;
    transform: translateZ(0);
    color: var(--card-hover-icon-color);
    transition: color 0.25s;
}
.cardSections h4 {
    z-index: 2;
    position: relative;
    margin: 12px 0 4px 0;
    font-family: inherit;
}
.cardSections p {
    z-index: 2;
    position: relative;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-color);
}
.cardSections .shine {
    border-radius: inherit;
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.5s;
}
.cardSections .shine:before {
    content: "";
    width: 150%;
    padding-bottom: 150%;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    bottom: 55%;
    filter: blur(35px);
    opacity: var(--card-shine-opacity);
    transform: translateX(-50%);
    background-image: var(--card-shine-gradient);
}
.cardSections .background {
    border-radius: inherit;
    position: absolute;
    inset: 0;
    overflow: hidden;
    -webkit-mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
    mask-image: radial-gradient(circle at 60% 5%, black 0%, black 15%, transparent 60%);
}
.cardSections .background .tiles {
    opacity: 1;
    transition: opacity 0.25s;
}
.cardSections .background .tiles .tile {
    position: absolute;
    background-color: var(--card-tile-color);
    -webkit-animation-duration: 8s;
            animation-duration: 8s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    opacity: 1;
    animation-name: tile;
}
.cardSections .background .tiles .tile.tile-4, .cardSections .background .tiles .tile.tile-6, .cardSections .background .tiles .tile.tile-10 {
    -webkit-animation-delay: -2s;
            animation-delay: -2s;
}
.cardSections .background .tiles .tile.tile-3, .cardSections .background .tiles .tile.tile-5, .cardSections .background .tiles .tile.tile-8 {
    -webkit-animation-delay: -4s;
            animation-delay: -4s;
}
.cardSections .background .tiles .tile.tile-2, .cardSections .background .tiles .tile.tile-9 {
    -webkit-animation-delay: -6s;
            animation-delay: -6s;
}
.cardSections .background .tiles .tile.tile-1 {
    top: 0;
    left: 0;
    height: 10%;
    width: 22.5%;
}
.cardSections .background .tiles .tile.tile-2 {
    top: 0;
    left: 22.5%;
    height: 10%;
    width: 27.5%;
}
.cardSections .background .tiles .tile.tile-3 {
    top: 0;
    left: 50%;
    height: 10%;
    width: 27.5%;
}
.cardSections .background .tiles .tile.tile-4 {
    top: 0;
    left: 77.5%;
    height: 10%;
    width: 22.5%;
}
.cardSections .background .tiles .tile.tile-5 {
    top: 10%;
    left: 0;
    height: 22.5%;
    width: 22.5%;
}
.cardSections .background .tiles .tile.tile-6 {
    top: 10%;
    left: 22.5%;
    height: 22.5%;
    width: 27.5%;
}
.cardSections .background .tiles .tile.tile-7 {
    top: 10%;
    left: 50%;
    height: 22.5%;
    width: 27.5%;
}
.cardSections .background .tiles .tile.tile-8 {
    top: 10%;
    left: 77.5%;
    height: 22.5%;
    width: 22.5%;
}
.cardSections .background .tiles .tile.tile-9 {
    top: 32.5%;
    left: 50%;
    height: 22.5%;
    width: 27.5%;
}
.cardSections .background .tiles .tile.tile-10 {
    top: 32.5%;
    left: 77.5%;
    height: 22.5%;
    width: 22.5%;
}
@-webkit-keyframes tile {
    0%, 12.5%, 100% {
        opacity: 1;
    }
    25%, 82.5% {
        opacity: 0;
    }
}
@keyframes tile {
    0%, 12.5%, 100% {
        opacity: 1;
    }
    25%, 82.5% {
        opacity: 0;
    }
}
.cardSections .background .line {
    position: absolute;
    inset: 0;
    opacity: 1;
    transition: opacity 0.35s;
}
.cardSections .background .line:before, .cardSections .background .line:after {
    content: "";
    position: absolute;
    background-color: var(--card-line-color);
    transition: transform 0.35s;
}
.cardSections .background .line:before {
    left: 0;
    right: 0;
    height: 1px;
    transform-origin: 0 50%;
    transform: scaleX(1);
}
.cardSections .background .line:after {
    top: 0;
    bottom: 0;
    width: 1px;
    transform-origin: 50% 0;
    transform: scaleY(1);
}
.cardSections .background .line.line-1:before {
    top: 10%;
}
.cardSections .background .line.line-1:after {
    left: 22.5%;
}
.cardSections .background .line.line-1:before, .cardSections .background .line.line-1:after {
    transition-delay: 0s;
}
.cardSections .background .line.line-2:before {
    top: 32.5%;
}
.cardSections .background .line.line-2:after {
    left: 50%;
}
.cardSections .background .line.line-2:before, .cardSections .background .line.line-2:after {
    transition-delay: 0s;
}
.cardSections .background .line.line-3:before {
    top: 55%;
}
.cardSections .background .line.line-3:after {
    right: 22.5%;
}
.cardSections:hover {
    box-shadow: 0px 3px 6px var(--card-hover-box-shadow-1), 0px var(--card-hover-box-shadow-2-y) var(--card-hover-box-shadow-2-blur) var(--card-hover-box-shadow-2), 0 0 0 1px var(--card-hover-border-color);
}
.cardSections:hover .icon::after {
    background-color: var(--card-hover-icon-background-color);
    border-color: var(--card-hover-icon-border-color);
}
.cardSections:hover .icon svg {
    color: var(--card-hover-icon-color);
}
.cardSections:hover .shine {
    opacity: 1;
    transition-duration: 0.5s;
    transition-delay: 0s;
}
.cardSections:hover .background .tiles {
    opacity: 1;
    transition-delay: 0.25s;
}
.cardSections:hover .background .tiles .tile {
    -webkit-animation-name: tile;
            animation-name: tile;
}
.cardSections:hover .background .line {
    opacity: 1;
    transition-duration: 0.15s;
}
.cardSections:hover .background .line:before {
    transform: scaleX(1);
}
.cardSections:hover .background .line:after {
    transform: scaleY(1);
}
.cardSections:hover .background .line.line-1:before, .cardSections:hover .background .line.line-1:after {
    transition-delay: 0s;
}
.cardSections:hover .background .line.line-2:before, .cardSections:hover .background .line.line-2:after {
    transition-delay: 0.15s;
}
.cardSections:hover .background .line.line-3:before, .cardSections:hover .background .line.line-3:after {
    transition-delay: 0.3s;
}

.day-night {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    opacity: 0.3;
}
.day-night input {
    display: none;
}
.day-night input + div {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    position: relative;
    box-shadow: inset 8px -8px 0 0 var(--text-color);
    transform: scale(1) rotate(-2deg);
    transition: box-shadow 0.5s ease 0s, transform 0.4s ease 0.1s;
}
.day-night input + div:before {
    content: "";
    width: inherit;
    height: inherit;
    border-radius: inherit;
    position: absolute;
    left: 0;
    top: 0;
    transition: background-color 0.3s ease;
}
.day-night input + div:after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin: -3px 0 0 -3px;
    position: absolute;
    top: 50%;
    left: 50%;
    box-shadow: 0 -23px 0 var(--text-color), 0 23px 0 var(--text-color), 23px 0 0 var(--text-color), -23px 0 0 var(--text-color), 15px 15px 0 var(--text-color), -15px 15px 0 var(--text-color), 15px -15px 0 var(--text-color), -15px -15px 0 var(--text-color);
    transform: scale(0);
    transition: all 0.3s ease;
}
.day-night input:checked + div {
    box-shadow: inset 20px -20px 0 0 var(--text-color);
    transform: scale(0.5) rotate(0deg);
    transition: transform 0.3s ease 0.1s, box-shadow 0.2s ease 0s;
}
.day-night input:checked + div:before {
    background: var(--text-color);
    transition: background-color 0.3s ease 0.1s;
}
.day-night input:checked + div:after {
    transform: scale(1);
    transition: transform 0.5s ease 0.15s;
}

/* Card color variations */
.cardSections:nth-child(1) {
    --card-shine-gradient: conic-gradient(from 205deg at 50% 50%, rgba(234, 179, 8, 0) 0deg, var(--card-yellow) 25deg, rgba(234, 179, 8, 0.18) 295deg, rgba(234, 179, 8, 0) 360deg);
    --card-tile-color: rgba(234, 179, 8, 0.05);
    --card-hover-icon-color: var(--card-yellow);
    --card-hover-icon-background-color: rgba(234, 179, 8, 0.1);
    --card-hover-icon-border-color: rgba(234, 179, 8, 0.2);
}

.cardSections:nth-child(2) {
    --card-shine-gradient: conic-gradient(from 205deg at 50% 50%, rgba(16, 185, 129, 0) 0deg, var(--card-green) 25deg, rgba(16, 185, 129, 0.18) 295deg, rgba(16, 185, 129, 0) 360deg);
    --card-tile-color: rgba(16, 185, 129, 0.05);
    --card-hover-icon-color: var(--card-green);
    --card-hover-icon-background-color: rgba(16, 185, 129, 0.1);
    --card-hover-icon-border-color: rgba(16, 185, 129, 0.2);
}

.cardSections:nth-child(3) {
    --card-shine-gradient: conic-gradient(from 205deg at 50% 50%, rgba(147, 51, 234, 0) 0deg, var(--card-purple) 25deg, rgba(147, 51, 234, 0.18) 295deg, rgba(147, 51, 234, 0) 360deg);
    --card-tile-color: rgba(147, 51, 234, 0.05);
    --card-hover-icon-color: var(--card-purple);
    --card-hover-icon-background-color: rgba(147, 51, 234, 0.1);
    --card-hover-icon-border-color: rgba(147, 51, 234, 0.2);
}

.cardSections:nth-child(4) {
    --card-shine-gradient: conic-gradient(from 205deg at 50% 50%, rgba(220, 38, 38, 0) 0deg, var(--card-red) 25deg, rgba(220, 38, 38, 0.18) 295deg, rgba(220, 38, 38, 0) 360deg);
    --card-tile-color: rgba(220, 38, 38, 0.05);
    --card-hover-icon-color: var(--card-red);
    --card-hover-icon-background-color: rgba(220, 38, 38, 0.1);
    --card-hover-icon-border-color: rgba(220, 38, 38, 0.2);
}

.icon-settings-profile {
    display: flex;
    align-items: center;
}
.icon-settings-profile {
    width: 35px;
}

.hr-divider {
    background-image: linear-gradient(90deg, hsl(0deg 0% 100% / 0%), #aaaaaad3, hsl(0deg 2% 67% / 0%));
    border: 0;
    height: 1px;
    width: 100%;
    margin: 10px auto;
    padding-bottom: 0;
}

.bg-fCard {
    border: 1px solid #1e1e1e;
    background: radial-gradient(666px at 0.4% 48%, rgb(20 20 20 / 41%) 0%, rgb(28 28 31) 97.5%);
}



.about-description p {
  font-size: 1.5rem;
  font-family: 'Satoshi', sans-serif;
}


@media (max-width:768px) {
  .about-description p {
    font-size: revert;
  }
}

:root {
    --space: 1rem;
    --bg: #09090b;
    --fg: #e3e3e3;
    --surface-1: #101012;
    --surface-2: #27272a;
    --surface-3: #52525b;
    --ease-out: cubic-bezier(0.5, 1, 0.89, 1);
    --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  }

  
  /* Pixel canvas background styling */
pixel-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: inherit;
}

/* Multi-color gradient borders for pixel cards */
.pixel-card-border {
  position: relative;
  background: linear-gradient(149deg, #3cb7c726 0%, #e7ff0a33 100%);
  padding: 1.5px;
  border-radius: 1rem;
}

.pixel-card-inner {
    position: relative;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 0.875rem;
    z-index: 1;
}

  .divider
{
    position: relative;
    margin-top: 50px;
    margin-bottom: 30px;
    height: 1px;
    width: 100%;
    max-width: 600px;
    opacity: 50%;
}

.div-transparent:before
{
	content: "";
	position: absolute;
	top: 0;
	left: 5%;
	right: 5%;
	width: 90%;
	height: 1px;
	background-image: linear-gradient(to right, transparent, rgb(4, 119, 0), transparent);
}

/* Enhanced Stepper Design */
.stepper-container {
    position: relative;
    padding: 2rem 0;
}

.stepper-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #767676 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 123, 255, 0.3);
}

.stepper-timeline {
    position: relative;
    padding: 2rem 0;
}

.stepper-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 217, 255, 0.3) 20%, rgba(0, 255, 255, 0.38) 50%, rgb(255 242 0 / 42%) 50%, rgba(238, 47, 255, 0.3) 80%, transparent 100%);
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.2);
}

.stepper-step {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.stepper-step:nth-child(1) { animation-delay: 0.2s; }
.stepper-step:nth-child(2) { animation-delay: 0.4s; }
.stepper-step:nth-child(3) { animation-delay: 0.6s; }

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

.stepper-content {
    background: radial-gradient(circle at 50% 0%, rgba(58, 58, 58, 0.1) 0%, rgba(26, 26, 26, 0.3) 64%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1),
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease-in-out;
    width: 45%;
}

.stepper-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, 
        rgba(0, 123, 255, 0.1) 0%, 
        rgba(255, 47, 185, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: -1;
}



.stepper-step:nth-child(odd) .stepper-content {
    margin-left: auto;
    text-align: right;
}

.stepper-step:nth-child(even) .stepper-content {
    margin-right: auto;
    text-align: left;
}

.stepper-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #3cb7c7 0%, #0056b3 100%);
    border: 3px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
    z-index: 10;
    box-shadow: 
        inset 0 2px 4px rgba(255, 255, 255, 0.2),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease-in-out;
}

.stepper-number::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, #3cb7c7, #d658aa);
    opacity: 0.3;
    transition: opacity 0.4s ease-in-out;
    z-index: -1;
}



.stepper-title-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dbdbdb;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}

.stepper-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .stepper-timeline::before {
        left: 2rem;
    }
    
    .stepper-content {
        width: calc(100% - 6rem);
        margin-left: 4rem !important;
        margin-right: 0 !important;
        text-align: left !important;
    }
    
    .stepper-number {
        left: 2rem;
        transform: translate(-50%, -50%);
    }
    
    .stepper-title {
        font-size: 2rem;
    }
}

/* Unified budget cards (match stepper look + hover) */
.budget-card {
    position: relative;
    background: radial-gradient(circle at 50% 0%, rgba(58, 58, 58, 0.1) 0%, rgba(26, 26, 26, 0.3) 64%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem; /* match rounded-lg */
    backdrop-filter: blur(8px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2),
        0 6px 18px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
    min-height: 180px;
}

.budget-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.12) 0%, rgba(255, 47, 185, 0.12) 100%);
    opacity: 0.35;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.budget-card::after {
    /* subtle top sheen */
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    opacity: 0.4;
}

.budget-card h3 {
    color: #e5e7eb;
}

.budget-card p {
    color: rgba(229, 231, 235, 0.75);
}

/* FAQ Transitions - Smooth and Slower */
#faq details {
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
    transform: translateY(0);
    cursor: pointer !important; /* Make entire card show pointer cursor */
}

#faq details:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 30px rgba(0, 123, 255, 0.2), 0 4px 10px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.15) !important;
    cursor: pointer !important;
}

#faq details[open] {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 20px rgba(0, 123, 255, 0.15) !important;
}

#faq details[open]:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 30px rgba(255, 47, 185, 0.2), 0 4px 10px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.15) !important;
}

/* Make content area not clickable for toggling but still selectable */
#faq details .faq-content {
    cursor: text !important;
}

#faq details summary {
    transition: color 0.3s ease, text-shadow 0.3s ease !important;
    position: relative !important;
    padding-right: 3rem !important;
    list-style: none !important;
    cursor: pointer !important;
    user-select: none !important;
    -webkit-user-select: none !important;
}

#faq details summary::-webkit-details-marker {
    display: none !important;
}

#faq details summary:hover {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.3) !important;
}

/* Custom expand/collapse icons */
#faq details summary::before {
    content: '+' !important;
    position: absolute !important;
    right: 1rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 1.5rem !important;
    font-weight: bold !important;
    color: #3cb7c7 !important;
    transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease !important;
    line-height: 1 !important;
    pointer-events: none !important; /* This fixes the click issue */
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.5) !important;
}

#faq details[open] summary::before {
    content: '−' !important;
    color: #d658aa !important;
    text-shadow: 0 0 10px rgba(255, 47, 185, 0.5) !important;
}

#faq details summary:hover::before {
    color: #ffffff !important;
    transform: translateY(-50%) scale(1.15) !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8) !important;
}

/* Smooth content expand/collapse - Data attribute driven */
section#faq details .faq-content {
    overflow: hidden !important;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.5s ease-in-out 0.1s, 
                margin-top 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Closed state - highest specificity */
section#faq details[data-state="closed"] .faq-content[data-state="closed"] {
    max-height: 0px !important;
    opacity: 0 !important;
    margin-top: 0px !important;
}

/* Open state - highest specificity */
section#faq details[data-state="open"] .faq-content[data-state="open"] {
    max-height: 1000px !important;
    opacity: 1 !important;
    margin-top: 0.75rem !important;
}

/* Fallback for native details/open attribute */
section#faq details[open] .faq-content {
    max-height: 1000px !important;
    opacity: 1 !important;
    margin-top: 0.75rem !important;
}

section#faq details:not([open]) .faq-content {
    max-height: 0px !important;
    opacity: 0 !important;
    margin-top: 0px !important;
}



/* Reusable modal system */
body.modal-open {
    overflow: hidden;
}

#modal-root {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
}

#modal-root .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.15s ease;
    pointer-events: none;
}

#modal-root .modal-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.96);
    opacity: 0;
    width: min(95vw, 520px);
    border-radius: 0.75rem;
    background: radial-gradient(circle at 50% 0%, rgba(58, 58, 58, 0.1) 0%, rgba(26, 26, 26, 0.3) 64%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2),
        0 12px 28px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    padding: 1rem 1rem 0.75rem 1rem;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

#modal-root.is-open {
    pointer-events: auto;
}

#modal-root.is-open .modal-overlay {
    opacity: 1;
    pointer-events: auto;
}

#modal-root.is-open .modal-dialog {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    margin-bottom: 0.5rem;
}

.modal-title {
    font-weight: 700;
    color: #dbdbdb;
}

.modal-body {
    max-height: 60vh;
    overflow-y: auto;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

/* Close button styling inside modal */
.modal-footer .button {
    cursor: pointer;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #3030303b, #000000);
    border: 1px solid #d658aa91;
    font-size: 0.95rem;
    color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px #0000ff00;
    transition: all 0.2s ease;
}

.modal-footer .button:hover {
    border-color: #d658aa;
    box-shadow: 0 0 0 1px rgba(225, 0, 255, 0.25), 0 6px 16px rgba(0, 0, 0, 0.35);
}

/* Info icon button next to ETH price */
.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 9999px;
    color: #9CA3AF; /* gray-400 */
    border: 1px solid #374151; /* gray-700 */
    background: linear-gradient(135deg, #3030303b, #000000);
    transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.info-icon:hover {
    color: #ffffff;
    border-color: #3cb7c7;
    box-shadow: 0 0 0 1px rgba(0, 123, 255, 0.25), 0 10px 20px rgba(0, 0, 0, 0.25);
}

.info-icon:focus-visible {
    outline: 2px solid #3cb7c7;
    outline-offset: 2px;
}