:root {
    --primary: #FFCA04;
    --primary-dark: #d4a800;
    --primary-light: #ffe066;
    --primary-glow: rgba(255, 202, 4, 0.5);
    --secondary: #FF8A00;
    --secondary-dark: #e67e00;
    --secondary-light: #ffaa33;
    --secondary-glow: rgba(255, 138, 0, 0.5);
    --bg-dark: #0a0a0a;
    --bg-card: #0d0d0d;
    --bg-card-light: #141414;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #999999;
    --border-color: #222222;
    --gradient-primary: linear-gradient(135deg, #FFCA04 0%, #d4a800 100%);
    --gradient-secondary: linear-gradient(135deg, #FF8A00 0%, #e67e00 100%);
    --gradient-mixed: linear-gradient(135deg, #FFCA04 0%, #FF8A00 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    --shadow-glow: 0 0 60px rgba(255, 202, 4, 0.3);
    --shadow-glow-orange: 0 0 60px rgba(255, 138, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.gradient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: -1;
}

.gradient-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 202, 4, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.gradient-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 202, 4, 0.1) 0%, transparent 70%);
    bottom: 20%;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.gradient-orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 202, 4, 0.08) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation: float 18s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 12px 16px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Desktop nav icons (match mobile menu icon style) */
.nav-links a{
    display:flex;
    align-items:center;
    gap:8px;
}
.nav-link-icon{
    font-size:0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease, transform 0.3s ease;
}
.nav-links a:hover .nav-link-icon{
    color: var(--primary);
    transform: translateY(-1px);
}

.nav-social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-social-links a {
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nav-social-links a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.connect-wallet-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #FFCA04;
    border: none;
    color: #000000;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.connect-wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 202, 4, 0.5);
}

.wallet-icon svg {
    width: 18px;
    height: 18px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 20px 20px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    max-height: 600px;
    opacity: 1;
    padding: 20px;
	border-radius: 19px;
    margin-top: 5px;
	border: 1px solid var(--border-color);
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-links li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-nav-links li a:hover {
    background: var(--bg-card);
    color: var(--primary);
}

.mobile-nav-links li a i {
    width: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.mobile-nav-links li a:hover i {
    color: var(--primary);
}

.mobile-wallet-btn {
    width: 100%;
    margin-top: 16px;
    justify-content: center;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 20px 140px;
    overflow: hidden;
}

.hero-bg-metamask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-meta {
    position: absolute;
    pointer-events: none;
    opacity: 0.07;
}

.hero-meta-1 {
    width: 140px;
    left: 3%;
    top: 20%;
    filter: blur(1px);
    animation: hero-meta-float-1 18s ease-in-out infinite;
}

.hero-meta-2 {
    width: 80px;
    left: 8%;
    top: 55%;
    filter: blur(5px);
    opacity: 0.04;
    animation: hero-meta-float-2 22s ease-in-out infinite;
}

.hero-meta-3 {
    width: 50px;
    left: 2%;
    top: 80%;
    filter: blur(8px);
    opacity: 0.03;
    animation: hero-meta-float-3 25s ease-in-out infinite;
}

@keyframes hero-meta-float-1 {
    0%, 100% { transform: translateY(0) rotate(-8deg); }
    50% { transform: translateY(-35px) rotate(12deg); }
}

@keyframes hero-meta-float-2 {
    0%, 100% { transform: translateY(0) rotate(5deg); }
    50% { transform: translateY(25px) rotate(-10deg); }
}

@keyframes hero-meta-float-3 {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(8deg); }
}

@media (max-width: 1200px) {
    /* Responsive coin safety */
    .features-coin{ width: 160px; }
    .features-coin-left{ left: -14%; }
    .features-coin-right{ right: -14%; }
    .features-coin-left-far{ left: -22%; }
    .features-coin-right-far{ right: -22%; }

    .dashboard-coin{ width: 140px; }
    .dashboard-coin-left{ left: -12%; }
    .dashboard-coin-right{ right: -12%; }
    .dashboard-coin-left-far{ left: -24%; }
    .dashboard-coin-right-far{ right: -24%; }

    .matrix-marquee-wrapper{ max-width: 820px; }

    .hero-meta-1 { width: 100px; }
    .hero-meta-2 { width: 60px; }
    .hero-meta-3 { width: 40px; }
}

@media (max-width: 768px) {
    .hero-bg-metamask {
        display: none;
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.5;
    animation: particle-float 10s ease-in-out infinite;
}

@keyframes particle-float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.5; }
    50% { transform: translateY(-100px) translateX(50px); opacity: 0.8; }
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
}

.hero-logo-top {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.hero-main-logo {
    width: 350px;
    height: auto;
    filter: drop-shadow(0 0 60px rgba(255, 202, 4, 0.4));
    animation: logoEntrance 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.3) rotateY(-180deg);
        filter: drop-shadow(0 0 0px rgba(255, 202, 4, 0)) blur(20px);
    }
    40% {
        opacity: 0.8;
        transform: scale(1.15) rotateY(0deg);
        filter: drop-shadow(0 0 100px rgba(255, 202, 4, 0.8)) blur(0px);
    }
    60% {
        transform: scale(0.95) rotateY(10deg);
        filter: drop-shadow(0 0 80px rgba(255, 202, 4, 0.6));
    }
    80% {
        transform: scale(1.05) rotateY(-5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateY(0deg);
        filter: drop-shadow(0 0 60px rgba(255, 202, 4, 0.4));
    }
}

.hero-main-logo::after {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(255, 202, 4, 0.3) 0%, transparent 70%);
    animation: logoPulse 2s ease-in-out infinite;
    animation-delay: 1.8s;
    opacity: 0;
    pointer-events: none;
}

@keyframes logoPulse {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@media (max-width: 768px) {
    .hero-main-logo {
        width: 220px;
    }
    
    .hero-logo-top {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-main-logo {
        width: 280px;
    }
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #FFCA04;
    border: none;
    color: #000000;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 60px rgba(255, 202, 4, 0.5);
}

.btn-orange {
    background: #ffffff;
    border: none;
    color: #000000;
}

.btn-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover .btn-glow {
    width: 300px;
    height: 300px;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.hero-3d-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-coin-left,
.hero-coin-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.hero-coin-left {
    left: 2%;
    animation: float-left 6s ease-in-out infinite;
}

.hero-coin-right {
    right: 2%;
    animation: float-right 6s ease-in-out infinite;
    animation-delay: -3s;
}

.hero-coin-left img,
.hero-coin-right img {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(255, 202, 4, 0.4));
    transition: transform 0.3s ease;
}

.hero-coin-small-left,
.hero-coin-small-right {
    position: absolute;
    z-index: 3;
}

.hero-coin-small-left {
    left: 8%;
    top: 20%;
    animation: float-small-left 8s ease-in-out infinite;
}

.hero-coin-small-right {
    right: 10%;
    bottom: 18%;
    animation: float-small-right 8s ease-in-out infinite;
    animation-delay: -4s;
}

.hero-coin-small-left img,
.hero-coin-small-right img {
    width: 100px;
    height: auto;
    filter: blur(3px) drop-shadow(0 0 25px rgba(255, 202, 4, 0.3));
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.hero-coin-tiny-left,
.hero-coin-tiny-right {
    position: absolute;
    z-index: 2;
}

.hero-coin-tiny-left {
    left: 15%;
    bottom: 25%;
    animation: float-tiny-left 10s ease-in-out infinite;
}

.hero-coin-tiny-right {
    right: 18%;
    top: 22%;
    animation: float-tiny-right 10s ease-in-out infinite;
    animation-delay: -5s;
}

.hero-coin-tiny-left img,
.hero-coin-tiny-right img {
    width: 60px;
    height: auto;
    filter: blur(5px) drop-shadow(0 0 20px rgba(255, 202, 4, 0.2));
    opacity: 0.4;
    transition: transform 0.3s ease;
}

@keyframes float-tiny-left {
    0%, 100% { 
        transform: translateY(0) translateX(0) rotate(-15deg) scale(1); 
    }
    20% {
        transform: translateY(-25px) translateX(20px) rotate(10deg) scale(1.08);
    }
    40% { 
        transform: translateY(-40px) translateX(5px) rotate(20deg) scale(0.92); 
    }
    60% {
        transform: translateY(-20px) translateX(-15px) rotate(-8deg) scale(1.05);
    }
    80% {
        transform: translateY(-10px) translateX(10px) rotate(5deg) scale(0.97);
    }
}

@keyframes float-tiny-right {
    0%, 100% { 
        transform: translateY(0) translateX(0) rotate(15deg) scale(1); 
    }
    20% {
        transform: translateY(20px) translateX(-18px) rotate(-12deg) scale(0.95);
    }
    40% { 
        transform: translateY(35px) translateX(-8px) rotate(-20deg) scale(1.1); 
    }
    60% {
        transform: translateY(15px) translateX(12px) rotate(8deg) scale(0.93);
    }
    80% {
        transform: translateY(8px) translateX(-5px) rotate(-5deg) scale(1.03);
    }
}

@keyframes float-left {
    0%, 100% { 
        transform: translateY(-50%) translateX(0) rotate(-5deg); 
    }
    50% { 
        transform: translateY(-60%) translateX(10px) rotate(5deg); 
    }
}

@keyframes float-right {
    0%, 100% { 
        transform: translateY(-50%) translateX(0) rotate(5deg); 
    }
    50% { 
        transform: translateY(-40%) translateX(-10px) rotate(-5deg); 
    }
}

@keyframes float-small-left {
    0%, 100% { 
        transform: translateY(0) translateX(0) rotate(-10deg) scale(1); 
    }
    25% {
        transform: translateY(-20px) translateX(15px) rotate(5deg) scale(1.05);
    }
    50% { 
        transform: translateY(-35px) translateX(8px) rotate(15deg) scale(0.95); 
    }
    75% {
        transform: translateY(-15px) translateX(-10px) rotate(-5deg) scale(1.02);
    }
}

@keyframes float-small-right {
    0%, 100% { 
        transform: translateY(0) translateX(0) rotate(10deg) scale(1); 
    }
    25% {
        transform: translateY(15px) translateX(-12px) rotate(-8deg) scale(0.98);
    }
    50% { 
        transform: translateY(30px) translateX(-5px) rotate(-15deg) scale(1.05); 
    }
    75% {
        transform: translateY(10px) translateX(8px) rotate(3deg) scale(0.96);
    }
}

.floating-coin {
    position: absolute;
    animation: coin-float 6s ease-in-out infinite;
}

.coin-usdt {
    width: 100px;
    height: 100px;
    left: 10%;
    top: 30%;
}

.coin-eth {
    width: 80px;
    height: 80px;
    right: 15%;
    top: 25%;
    animation-delay: -2s;
}

.coin-bnb {
    width: 70px;
    height: 70px;
    right: 20%;
    bottom: 30%;
    animation-delay: -4s;
}

.coin-face {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    box-shadow: 0 0 30px var(--primary-glow), inset 0 0 20px rgba(255, 202, 4, 0.1);
    transform: rotateY(15deg) rotateX(15deg);
    transition: transform 0.3s ease;
}

.coin-face span {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: bold;
}

.coin-face svg {
    width: 50%;
    height: 50%;
}

@keyframes coin-float {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-30px) rotateY(180deg); }
}

.hero-hexagon {
    position: absolute;
    width: 150px;
    height: 150px;
    left: 5%;
    bottom: 20%;
    animation: hex-rotate 20s linear infinite;
    opacity: 0.3;
}

@keyframes hex-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.glow-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: glow-move 3s ease-in-out infinite;
}

.glow-line-1 {
    width: 200px;
    top: 40%;
    left: 0;
}

.glow-line-2 {
    width: 150px;
    bottom: 35%;
    right: 0;
    animation-delay: -1.5s;
}

@keyframes glow-move {
    0%, 100% { opacity: 0; transform: translateX(-100%); }
    50% { opacity: 1; transform: translateX(100%); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.8rem;
    animation: bounce 2s ease-in-out infinite;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheel-scroll 2s ease-in-out infinite;
}

@keyframes wheel-scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.features {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.features-floating-coins {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.features-coin {
    position: absolute;
    z-index: 1;
    width: 180px;
    height: auto;
    animation: features-float 8s ease-in-out infinite;
}

.features-coin-left {
    left: -10%;
    top: 20%;
    animation-name: features-float-left;
}

.features-coin-right {
    right: -10%;
    top: 40%;
    animation-name: features-float-right;
    animation-delay: -4s;
}

/* Distant blurred coins (extra layer) */
.features-coin-left-far{
    left:-18%;
    top:55%;
    width:130px;
    opacity:0.35;
    filter: blur(3px);
    z-index:0;
    animation-duration: 11s;
}
.features-coin-right-far{
    right:-18%;
    top:15%;
    width:130px;
    opacity:0.35;
    filter: blur(3px);
    z-index:0;
    animation-duration: 11s;
    animation-delay: -6s;
}

@keyframes features-float-left {
    0%, 100% { 
        transform: translateY(0) rotate(-10deg); 
    }
    50% { 
        transform: translateY(-30px) rotate(5deg); 
    }
}

@keyframes features-float-right {
    0%, 100% { 
        transform: translateY(0) rotate(10deg); 
    }
    50% { 
        transform: translateY(25px) rotate(-5deg); 
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--primary-glow) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature-card:hover .card-glow {
    opacity: 0.1;
}

.card-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.crypto-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.crypto-item:last-of-type {
    border-bottom: none;
}

.crypto-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.usdt-icon {
    background: rgba(255, 202, 4, 0.15);
    color: var(--primary);
    border: 1px solid #ffffff;
	border-radius: 50px;
}

.btc-icon {
    background: rgba(247, 147, 26, 0.15);
    color: #f7931a;
    border: 1px solid #f7931a;
}

.crypto-info {
    flex: 1;
}

.crypto-name {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}

.crypto-ticker {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.crypto-value {
    text-align: right;
}

.crypto-value .value {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
}

.crypto-value .change {
    font-size: 0.85rem;
}

.crypto-value .change.positive {
    color: var(--primary);
}

.card-footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.card-footer strong {
    color: var(--text-primary);
}

.feature-card-large .card-content {
    min-height: 300px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.chart-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.chart-period {
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
}

.chart-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.chart-change .positive {
    color: var(--primary);
    font-size: 0.95rem;
}

.chart-container {
    margin-top: 30px;
    height: 150px;
    position: relative;
}

.crypto-universe {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.universe-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.star-field {
    position: absolute;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.universe-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
    perspective: 1000px;
    margin: 30px 0;
}

.cube-3d {
    width: 150px;
    height: 150px;
    position: relative;
    transform-style: preserve-3d;
    animation: cube-rotate 15s linear infinite;
}

@keyframes cube-rotate {
    from { transform: rotateX(-20deg) rotateY(0deg); }
    to { transform: rotateX(-20deg) rotateY(360deg); }
}

.cube-face {
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(255, 202, 4, 0.2) 0%, rgba(17, 17, 17, 0.9) 100%);
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cube-front { transform: translateZ(75px); }
.cube-back { transform: rotateY(180deg) translateZ(75px); }
.cube-left { transform: rotateY(-90deg) translateZ(75px); }
.cube-right { transform: rotateY(90deg) translateZ(75px); }
.cube-top { transform: rotateX(90deg) translateZ(75px); }
.cube-bottom { transform: rotateX(-90deg) translateZ(75px); }

.eth-logo svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 20px var(--primary-glow));
}

.cube-usdt-symbol {
    font-size: 4rem;
    font-weight: bold;
    color: var(--primary);
    text-shadow: 0 0 30px var(--primary-glow), 0 0 60px var(--primary-glow);
}

.matrix-container {
    position: relative;
    width: 100%;
    height: 200px;
    margin: 15px 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#matrixCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.matrix-marquee-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;

    max-width: 920px;
    margin: 0 auto;
    align-items: center;
}

.matrix-marquee-wrapper .crypto-marquee {
    margin: 0;
}

.crypto-marquee {
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
}

.marquee-track-reverse {
    animation-direction: reverse;
    margin-top: 30px;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.crypto-icon-item {
    font-size: 2rem;
    color: var(--text-muted);
    opacity: 0.5;
    transition: all 0.3s ease;
    min-width: 50px;
    text-align: center;
}

.crypto-icon-item:hover {
    color: var(--primary);
    opacity: 1;
    transform: scale(1.2);
}

.universe-desc {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.dashboard-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.dashboard-floating-coins {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.dashboard-coin {
    position: absolute;
    width: 160px;
    height: auto;
    animation: dashboard-float 9s ease-in-out infinite;
}

.dashboard-coin-left {
    left: -8%;
    top: 30%;
    animation-name: dashboard-float-left;
}

.dashboard-coin-right {
    right: -8%;
    top: 50%;
    animation-name: dashboard-float-right;
    animation-delay: -4.5s;
}

.dashboard-coin-left-far{
    left:-20%;
    top:65%;
    width:120px;
    opacity:0.28;
    filter: blur(3px);
    z-index:0;
    animation-duration: 12s;
}
.dashboard-coin-right-far{
    right:-20%;
    top:15%;
    width:120px;
    opacity:0.28;
    filter: blur(3px);
    z-index:0;
    animation-duration: 12s;
    animation-delay: -6s;
}

@keyframes dashboard-float-left {
    0%, 100% { 
        transform: translateY(0) rotate(-8deg); 
    }
    50% { 
        transform: translateY(-25px) rotate(8deg); 
    }
}

@keyframes dashboard-float-right {
    0%, 100% { 
        transform: translateY(0) rotate(8deg); 
    }
    50% { 
        transform: translateY(30px) rotate(-8deg); 
    }
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.dashboard-text {
    max-width: 500px;
}

.dashboard-preview {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.dashboard-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 200px;
    background: radial-gradient(ellipse, var(--primary-glow) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
}

.dashboard-window {
    display: grid;
    grid-template-columns: 200px 1fr;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.dashboard-sidebar {
    background: var(--bg-dark);
    padding: 20px;
    border-right: 1px solid var(--border-color);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.sidebar-logo svg {
    width: 28px;
    height: 28px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-nav.secondary {
    margin-top: 20px;
}

.sidebar-nav .nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sidebar-nav .nav-item:hover {
    background: var(--bg-card);
    color: var(--text-primary);
}

.sidebar-nav .nav-item.active {
    background: var(--bg-card);
    color: var(--text-primary);
}

.sidebar-nav .nav-item i {
    width: 16px;
    font-size: 0.9rem;
}

.badge {
    background: #FFCA04;
    color: #000000;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: auto;
}

.sidebar-divider {
    height: 1px;
    background: var(--border-color);
    margin: 20px 0;
}

.dashboard-main {
    padding: 20px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.dashboard-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.header-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

.header-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.dashboard-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.dash-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
}

.dash-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.card-controls {
    display: flex;
    gap: 8px;
}

.card-controls .control {
    padding: 4px 10px;
    background: var(--bg-card);
    border-radius: 4px;
    font-size: 0.75rem;
}

.card-controls .control.active {
    background: var(--border-color);
    color: var(--text-primary);
}

.dash-card h4 {
    font-size: 1rem;
    margin-bottom: 16px;
}

.time-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.time-filters span {
    cursor: pointer;
    transition: color 0.3s ease;
}

.time-filters span.active {
    color: var(--text-primary);
    font-weight: 600;
}

.time-filters span:hover {
    color: var(--primary);
}

.chart-placeholder {
    height: 80px;
}

.line-chart {
    width: 100%;
    height: 100%;
}

.small-btn {
    padding: 4px 10px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-muted);
    font-size: 0.7rem;
    cursor: pointer;
    font-family: inherit;
}

.period-toggle {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.period-toggle span.active {
    color: var(--text-primary);
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 80px;
}

.bar {
    flex: 1;
    background: var(--border-color);
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
}

.bar.active {
    background: var(--primary);
}

.bar:hover {
    background: var(--primary-light);
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.activity-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.activity-header span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.activity-header h4 {
    font-size: 1rem;
    margin-top: 4px;
}

.activity-actions {
    display: flex;
    gap: 12px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

.action-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.action-btn.primary {
    background: #FFCA04;
    border: none;
    color: #000000;
}

.action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 202, 4, 0.5);
}

.faq-section {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer {
    padding: 60px 20px 30px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #050505 100%);
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.link-group h4 {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.link-group a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-link-icon{
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease, transform 0.3s ease;
}

.link-group a:hover {
    color: var(--primary);
}

.link-group a:hover .footer-link-icon{
    color: var(--primary);
    transform: translateY(-1px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.legal-links {
    display: flex;
    gap: 30px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-links a:hover {
    color: var(--primary);
}

.legal-links a:hover .footer-link-icon{
    color: var(--primary);
    transform: translateY(-1px);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* 404 page */
.notfound{
    min-height: calc(100vh - 260px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
}

.notfound-content{
    max-width: 760px;
    text-align: center;
    padding: 42px 34px;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.notfound-content::before{
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(circle at top, rgba(255, 202, 4, 0.18), transparent 60%);
    pointer-events: none;
}

.notfound-badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.notfound-title{
    font-family: var(--font-heading);
    font-size: clamp(64px, 9vw, 112px);
    line-height: 1;
    margin: 6px 0 14px;
    background: linear-gradient(90deg, var(--primary), #ffb400);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 1;
}

.notfound-subtitle{
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 26px;
    position: relative;
    z-index: 1;
}

.notfound-actions{
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Responsive coin offsets (prevent overlapping text on smaller screens) */
@media (max-width: 1200px) {
    .features-coin-left{ left:-14%; }
    .features-coin-right{ right:-14%; }
    .features-coin{ width:160px; }
    .features-coin-left-far{ left:-22%; width:115px; }
    .features-coin-right-far{ right:-22%; width:115px; }

    .dashboard-coin{ width:145px; }
    .dashboard-coin-left{ left:-12%; }
    .dashboard-coin-right{ right:-12%; }
    .dashboard-coin-left-far{ left:-24%; width:105px; }
    .dashboard-coin-right-far{ right:-24%; width:105px; }
}

@media (max-width: 1024px) {
    /* Coin offsets to avoid text overlap */
    .features-coin{ width: 145px; }
    .features-coin-left{ left: -16%; top: 12%; }
    .features-coin-right{ right: -16%; top: 48%; }
    .features-coin-left-far{ left: -26%; top: 62%; width: 115px; }
    .features-coin-right-far{ right: -26%; top: 10%; width: 115px; }

    .dashboard-coin{ width: 130px; }
    .dashboard-coin-left{ left: -14%; top: 26%; }
    .dashboard-coin-right{ right: -14%; top: 58%; }
    .dashboard-coin-left-far{ left: -28%; top: 70%; width: 105px; }
    .dashboard-coin-right-far{ right: -28%; top: 12%; width: 105px; }
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-window {
        grid-template-columns: 1fr;
    }
    
    .dashboard-sidebar {
        display: none;
    }
    
    .dashboard-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-social-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .connect-wallet-btn {
        display: none;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .floating-coin,
    .hero-coin-left,
    .hero-coin-right,
    .hero-coin-small-left,
    .hero-coin-small-right,
    .hero-coin-tiny-left,
    .hero-coin-tiny-right,
    .features-floating-coins,
    .dashboard-floating-coins {
        display: none;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .activity-section {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .features {
        padding: 40px 15px;
    }
    
    .crypto-universe {
        padding: 40px 15px;
    }
    
    .faq-section {
        padding: 40px 15px;
    }
    
    .dashboard-section {
        padding: 40px 15px;
    }
    
    .footer {
        padding: 40px 15px 25px;
    }
    
    .dashboard-text {
        text-align: center;
        max-width: 100%;
    }
    
    .dashboard-text .section-title {
        font-size: 1.8rem;
    }
    
    .dashboard-text .section-desc {
        font-size: 0.9rem;
    }
    
    .dashboard-text .section-desc br {
        display: none;
    }
    
    .dashboard-content {
        gap: 25px;
    }
    
    .dashboard-window {
        border-radius: 12px;
    }
    
    .dashboard-main {
        padding: 15px;
    }
    
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .dashboard-header h3 {
        font-size: 1.1rem;
    }
    
    .header-actions {
        width: 100%;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .search-box {
        flex: 1;
        min-width: 120px;
    }
    
    .header-btn {
        padding: 8px 10px;
        font-size: 0.75rem;
    }
    
    .dash-card {
        padding: 15px;
    }
    
    .dash-card h4 {
        font-size: 0.9rem;
    }
    
    .time-filters {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .bar-chart {
        gap: 8px;
        height: 60px;
    }
    
    .activity-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .action-btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-header {
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-desc {
        font-size: 0.9rem;
    }
    
    .section-desc br {
        display: none;
    }
    
    .universe-showcase {
        height: 180px;
        margin: 20px 0;
    }
    
    .cube-3d {
        width: 100px;
        height: 100px;
    }
    
    .cube-face {
        width: 100px;
        height: 100px;
    }
    
    .cube-front { transform: translateZ(50px); }
    .cube-back { transform: rotateY(180deg) translateZ(50px); }
    .cube-left { transform: rotateY(-90deg) translateZ(50px); }
    .cube-right { transform: rotateY(90deg) translateZ(50px); }
    .cube-top { transform: rotateX(90deg) translateZ(50px); }
    .cube-bottom { transform: rotateX(-90deg) translateZ(50px); }
    
    .cube-usdt-symbol {
        font-size: 2.5rem;
    }
    
    .matrix-container {
        height: 150px;
        margin: 10px 0;
    }
    
    .universe-desc {
        font-size: 0.9rem;
    }
    
    .universe-desc br {
        display: none;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .hero {
        padding: 90px 15px 30px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .hero-subtitle br {
        display: none;
    }
    
    .hero-buttons {
        margin-bottom: 30px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .card-content h3 {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
    
    .card-footer {
        margin-top: 16px;
        padding-top: 14px;
        font-size: 0.85rem;
    }
    
    .card-footer br {
        display: none;
    }
    
    .chart-value {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 16px 18px;
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 0 18px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 1200px) {
    .hero-coin-left img,
    .hero-coin-right img {
        width: 200px;
    }
    
    .hero-coin-small-left img,
    .hero-coin-small-right img {
        width: 70px;
    }
    
    .hero-coin-tiny-left img,
    .hero-coin-tiny-right img {
        width: 45px;
    }
}

@media (max-width: 1024px) {
    .hero-coin-left img,
    .hero-coin-right img {
        width: 150px;
    }
    
    .hero-coin-left {
        left: 0;
    }
    
    .hero-coin-right {
        right: 0;
    }
    
    .hero-coin-small-left,
    .hero-coin-small-right,
    .hero-coin-tiny-left,
    .hero-coin-tiny-right {
        display: none;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

.magnetic-btn {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 202, 4, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

::selection {
    background: var(--primary);
    color: white;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #FFCA04;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.2rem;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 202, 4, 0.5);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 202, 4, 0.5);
}

.mobile-bg-coins {
    display: none;
}

@media (max-width: 768px) {
    .mobile-bg-coins {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1;
        overflow: hidden;
    }
    
    .mobile-coin {
        position: absolute;
        animation: float-bg-coin 10s ease-in-out infinite;
    }
    
    .mobile-coin.coin-1 {
        width: 70px;
        top: 5%;
        left: -10%;
        animation-delay: 0s;
        opacity: 0.5;
        filter: none;
    }
    
    .mobile-coin.coin-2 {
        width: 65px;
        top: 8%;
        right: -8%;
        animation-delay: -2s;
        opacity: 0.45;
        filter: none;
    }
    
    .mobile-coin.coin-3 {
        width: 35px;
        top: 35%;
        left: -3%;
        animation-delay: -4s;
        opacity: 0.15;
        filter: blur(4px);
    }
    
    .mobile-coin.coin-4 {
        width: 60px;
        top: 45%;
        right: -10%;
        animation-delay: -1s;
        opacity: 0.4;
        filter: blur(1px);
    }
    
    .mobile-coin.coin-5 {
        width: 65px;
        top: 60%;
        left: -12%;
        animation-delay: -3s;
        opacity: 0.5;
        filter: none;
    }
    
    .mobile-coin.coin-6 {
        width: 30px;
        top: 70%;
        right: -2%;
        animation-delay: -5s;
        opacity: 0.12;
        filter: blur(5px);
    }
    
    .mobile-coin.coin-7 {
        width: 25px;
        top: 85%;
        left: 5%;
        animation-delay: -2.5s;
        opacity: 0.1;
        filter: blur(6px);
    }
    
    .mobile-coin.coin-8 {
        width: 55px;
        top: 90%;
        right: -6%;
        animation-delay: -4.5s;
        opacity: 0.35;
        filter: blur(1px);
    }
    
    @keyframes float-bg-coin {
        0%, 100% { 
            transform: translateY(0) translateX(0) rotate(-10deg); 
        }
        25% {
            transform: translateY(-20px) translateX(10px) rotate(5deg);
        }
        50% { 
            transform: translateY(-10px) translateX(-5px) rotate(15deg); 
        }
        75% {
            transform: translateY(-30px) translateX(15px) rotate(-5deg);
        }
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .navbar {
        padding: 10px 15px;
    }
    
    .logo span {
        font-size: 1rem;
    }
    
    .chart-value {
        font-size: 1.6rem;
    }
    
    .mobile-coin.coin-1,
    .mobile-coin.coin-2,
    .mobile-coin.coin-4,
    .mobile-coin.coin-5,
    .mobile-coin.coin-8 {
        width: 50px;
    }
}

/* ===============================
   Universe Expanding Cards (CodePen-inspired)
   =============================== */
.crypto-universe .universe-options{
  width: min(1100px, calc(100% - 40px));
  margin: 26px auto 0;
}
.crypto-universe .u-options{
  display:flex;
  align-items:stretch;
  gap:14px;
  overflow:hidden;
  border-radius:32px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.06);
}
.crypto-universe .u-option{
  position:relative;
  overflow:hidden;
  flex:1;
  min-width:72px;
  height:780px;
  border-radius:28px;
  background: var(--optionBg);
  background-color: rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.10);
  cursor:pointer;
  transition: flex .55s cubic-bezier(0.05, 0.61, 0.41, 0.95),
              transform .35s ease,
              border-radius .35s ease;
}
.crypto-universe .u-option:hover{
  transform: translateY(-1px);
}
.crypto-universe .u-option.u-active,
.crypto-universe .u-option.active{ /* keep both in case */
  flex: 6;
  border-radius:28px;
}
.crypto-universe .u-shadow{
  position:absolute;
  inset:0;
  pointer-events:none;
  background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,.22) 55%, rgba(0,0,0,.06));
  opacity: 1;
}

.crypto-universe .u-collapsed-images {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.5s ease;
  overflow: hidden;
}
.crypto-universe .u-option.active .u-collapsed-images,
.crypto-universe .u-option.u-active .u-collapsed-images {
  opacity: 0;
  pointer-events: none;
}
.crypto-universe .u-collapsed-img {
  position: absolute;
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
}
.crypto-universe .u-collapsed-img-main {
  width: 500%;
  opacity: 0.95;
  z-index: 3;
  animation: collapsedImgSway 10s ease-in-out infinite;
}
.crypto-universe .u-collapsed-img-bg {
  filter: blur(8px) drop-shadow(0 20px 60px rgba(0,0,0,0.4));
  z-index: 1;
}
.crypto-universe .u-collapsed-img-bg.bg-1 {
  width: 320%;
  opacity: 0.4;
  animation: bgImgFloat1 14s ease-in-out infinite;
}
.crypto-universe .u-collapsed-img-bg.bg-2 {
  width: 280%;
  opacity: 0.3;
  animation: bgImgFloat2 12s ease-in-out infinite;
}
.crypto-universe .u-collapsed-img-bg.bg-3 {
  width: 250%;
  opacity: 0.25;
  animation: bgImgFloat3 16s ease-in-out infinite;
}

@keyframes collapsedImgSway {
  0%, 100% { 
    transform: translateX(-15%) rotate(-5deg) scale(1);
  }
  50% { 
    transform: translateX(15%) rotate(5deg) scale(1.05);
  }
}
@keyframes bgImgFloat1 {
  0%, 100% { 
    transform: translateX(-40%) translateY(-20%) rotate(-12deg) scale(0.9);
    opacity: 0.3;
  }
  50% { 
    transform: translateX(30%) translateY(15%) rotate(8deg) scale(1);
    opacity: 0.5;
  }
}
@keyframes bgImgFloat2 {
  0%, 100% { 
    transform: translateX(35%) translateY(25%) rotate(10deg) scale(0.85);
    opacity: 0.25;
  }
  50% { 
    transform: translateX(-30%) translateY(-15%) rotate(-8deg) scale(0.95);
    opacity: 0.4;
  }
}
@keyframes bgImgFloat3 {
  0%, 100% { 
    transform: translateX(20%) translateY(-30%) rotate(-6deg) scale(0.8);
    opacity: 0.2;
  }
  50% { 
    transform: translateX(-25%) translateY(20%) rotate(6deg) scale(0.9);
    opacity: 0.35;
  }
}

.crypto-universe .u-label{
  position:absolute;
  left:16px;
  right:16px;
  bottom:16px;
  display:flex;
  align-items:center;
  gap:12px;
  z-index:2;
}
.crypto-universe .u-icon{
  width:48px;
  height:48px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
  flex: 0 0 48px;
}
.crypto-universe .u-icon i{
  font-size:18px;
}
.crypto-universe .u-coin{
  font-weight:800;
  font-size:22px;
  line-height:1;
}
.crypto-universe .u-info{min-width:0;}
.crypto-universe .u-main{
  font-weight:800;
  letter-spacing:.2px;
  font-size:18px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.crypto-universe .u-sub{
  opacity:.82;
  font-size:13.5px;
  margin-top:2px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.crypto-universe .u-content{
  position:absolute;
  top:12px;
  left:14px;
  right:14px;
  bottom:70px;
  padding-bottom: 20px;
  z-index:2;
  opacity:0;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.3) transparent;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events:none;
}
.crypto-universe .u-content::-webkit-scrollbar {
  width: 6px;
}
.crypto-universe .u-content::-webkit-scrollbar-track {
  background: transparent;
}
.crypto-universe .u-content::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.3);
  border-radius: 3px;
}
.crypto-universe .u-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.5);
}
.crypto-universe .u-option.u-active .u-content,
.crypto-universe .u-option.active .u-content{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}
.crypto-universe .u-text{
  opacity:.92;
  font-size:13px;
  line-height:1.4;
  max-width: 560px;
  margin:0 0 8px;
}

.crypto-universe .u-headline{
  font-size:18px;
  font-weight:900;
  letter-spacing:.2px;
  margin: 2px 0 6px;
}

.crypto-universe .u-levels{
  max-width: 640px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:10px;
  margin: 10px 0 14px;
}
.crypto-universe .u-level{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 12px;
  border-radius:16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.crypto-universe .u-level span{opacity:.82; font-size:13px;}
.crypto-universe .u-level strong{font-size:14px; font-weight:900;}

.crypto-universe .u-callout{
    max-width: 640px;
    display:flex;
    align-items:flex-start;
    gap:10px;
    padding:12px 14px;
    border-radius:18px;
    background: rgba(255,202,4,.08);
    border: 1px solid rgba(255,202,4,.18);
    font-size:13.5px;
    opacity:.95;
  }
.crypto-universe .u-callout-dot{
    width:10px;
    height:10px;
    border-radius:99px;
    margin-top:5px;
    background: rgba(255,202,4,.95);
    box-shadow: 0 0 18px rgba(255,202,4,.35);
    flex:0 0 10px;
  }

.crypto-universe .u-req{
  max-width: 640px;
  border-radius:18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  overflow:hidden;
}
.crypto-universe .u-req-row{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:12px 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.crypto-universe .u-req-row:first-child{border-top:0;}
.crypto-universe .u-req-l{font-weight:900; font-size:13.5px;}
.crypto-universe .u-req-r{opacity:.9; font-size:13.5px; text-align:right;}
.crypto-universe .u-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:10px;
  margin: 8px 0 10px;
  max-width: 560px;
}
.crypto-universe .u-pill{
  border-radius:16px;
  padding:10px 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
}
.crypto-universe .u-pill-k{display:block; font-size:12px; opacity:.8;}
.crypto-universe .u-pill-v{display:block; font-size:13px; font-weight:700; margin-top:4px;}
.crypto-universe .u-note{display:none;}

.crypto-universe .u-list{list-style:none; padding:0; margin: 10px 0 0; max-width:560px;}
.crypto-universe .u-list li{display:flex; gap:10px; align-items:flex-start; margin:10px 0;}
.crypto-universe .u-bullet{width:8px; height:8px; border-radius:99px; background: rgba(255,180,0,.9); margin-top:7px; flex:0 0 8px;}

.crypto-universe .u-placeholder{
  margin-top:14px;
  max-width:560px;
  height:92px;
  border-radius:18px;
  background: rgba(255,255,255,.06);
  border: 1px dashed rgba(255,255,255,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-size:12.5px;
  opacity:.85;
  padding:12px;
}

/* Premium content blocks */
.crypto-universe .u-headline{
  font-size:22px;
  font-weight:900;
  letter-spacing:-0.02em;
  color:#fff;
  margin: 2px 0 10px;
}

.crypto-universe .u-levels{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:10px;
  max-width: 560px;
  margin: 10px 0 14px;
}
.crypto-universe .u-level{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.crypto-universe .u-level span{opacity:.86; font-size:14px;}
.crypto-universe .u-level strong{font-size:16px; font-weight:900;}

.crypto-universe .u-callout{
    max-width:560px;
    display:flex;
    gap:10px;
    align-items:flex-start;
    padding:12px 14px;
    border-radius:18px;
    background: rgba(0,0,0,.22);
    border: 1px solid rgba(255,202,4,.18);
    color: rgba(255,255,255,.92);
    font-size:14px;
    line-height:1.5;
  }
.crypto-universe .u-callout-dot{
    width:10px;
    height:10px;
    border-radius:999px;
    margin-top:5px;
    background: rgba(255,202,4,.95);
    box-shadow: 0 0 22px rgba(255,202,4,.35);
    flex: 0 0 10px;
  }

.crypto-universe .u-req{
  max-width:560px;
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top: 10px;
}
.crypto-universe .u-req-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.crypto-universe .u-req-l{font-weight:900; font-size:14px; white-space:nowrap;}
.crypto-universe .u-req-r{opacity:.9; font-size:14px; text-align:right;}

.crypto-universe .u-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:14px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  text-decoration:none;
  color: inherit;
  margin: 6px 0 14px;
}
.crypto-universe .u-link:hover{background: rgba(255,180,0,.14);}

.crypto-universe .u-kv{
  max-width:560px;
  display:grid;
  grid-template-columns: 120px 1fr;
  gap:10px 14px;
  padding: 12px;
  border-radius:18px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
}
.crypto-universe .u-k{opacity:.78; font-size:12.5px;}
.crypto-universe .u-v{font-weight:700; font-size:12.8px;}

.crypto-universe .u-headline-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.crypto-universe .u-headline-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 202, 4, 0.2), rgba(255, 202, 4, 0.05));
    border: 1px solid rgba(255, 202, 4, 0.3);
    color: #FFCA04;
    font-size: 14px;
    flex-shrink: 0;
    animation: iconPulse 3s ease-in-out infinite;
  }

.crypto-universe .u-headline-icon.purple {
  background: linear-gradient(135deg, rgba(147, 112, 219, 0.2), rgba(147, 112, 219, 0.05));
  border-color: rgba(147, 112, 219, 0.3);
  color: #9370db;
}

.crypto-universe .u-headline-icon.gold {
  background: linear-gradient(135deg, rgba(255, 206, 84, 0.2), rgba(255, 206, 84, 0.05));
  border-color: rgba(255, 206, 84, 0.3);
  color: #ffce54;
}

@keyframes iconPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 202, 4, 0.2); }
    50% { box-shadow: 0 0 30px rgba(255, 202, 4, 0.4); }
  }

.crypto-universe .u-levels-modern {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 640px;
  margin: 14px 0;
}

.crypto-universe .u-levels-tier {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.crypto-universe .u-levels-tier:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}

.crypto-universe .u-tier-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.crypto-universe .u-tier-badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.crypto-universe .u-tier-badge.high {
    background: linear-gradient(135deg, rgba(255, 202, 4, 0.25), rgba(255, 202, 4, 0.1));
    color: #FFCA04;
    border: 1px solid rgba(255, 202, 4, 0.3);
    animation: badgeGlow 2s ease-in-out infinite;
  }

.crypto-universe .u-tier-badge.mid {
  background: linear-gradient(135deg, rgba(93, 156, 236, 0.25), rgba(93, 156, 236, 0.1));
  color: #5d9cec;
  border: 1px solid rgba(93, 156, 236, 0.3);
}

.crypto-universe .u-tier-badge.low {
  background: linear-gradient(135deg, rgba(128, 128, 128, 0.25), rgba(128, 128, 128, 0.1));
  color: #a0a0a0;
  border: 1px solid rgba(128, 128, 128, 0.3);
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 202, 4, 0.3); }
    50% { box-shadow: 0 0 20px rgba(255, 202, 4, 0.5); }
  }

.crypto-universe .u-tier-range {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.crypto-universe .u-tier-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.crypto-universe .u-tier-grid.compact {
  grid-template-columns: repeat(2, 1fr);
}

.crypto-universe .u-level-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.crypto-universe .u-level-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 202, 4, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }

.crypto-universe .u-level-card .u-level-num {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.crypto-universe .u-level-card .u-level-percent {
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(135deg, #fff, rgba(255, 202, 4, 0.9));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

.crypto-universe .u-level-card .u-level-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: var(--bar-width, 0%);
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 202, 4, 0.8), rgba(255, 202, 4, 0.3));
    border-radius: 0 0 12px 12px;
    transition: width 0.6s ease;
  }

.crypto-universe .u-level-card.mini {
  flex-direction: row;
  justify-content: space-between;
  padding: 12px 14px;
}

.crypto-universe .u-level-card.mini span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.crypto-universe .u-level-card.mini strong {
  font-size: 14px;
  color: #fff;
}

.crypto-universe .u-callout-modern {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(255, 202, 4, 0.08), rgba(255, 202, 4, 0.02));
    border: 1px solid rgba(255, 202, 4, 0.2);
    border-radius: 16px;
    max-width: 640px;
    animation: calloutShimmer 4s ease-in-out infinite;
  }

@keyframes calloutShimmer {
    0%, 100% { border-color: rgba(255, 202, 4, 0.2); }
    50% { border-color: rgba(255, 202, 4, 0.4); }
  }

.crypto-universe .u-callout-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 202, 4, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFCA04;
    font-size: 14px;
    flex-shrink: 0;
  }

.crypto-universe .u-callout-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.crypto-universe .u-callout-title {
    font-size: 12px;
    font-weight: 700;
    color: #FFCA04;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

.crypto-universe .u-callout-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.crypto-universe .u-callout-text strong {
  color: #fff;
  font-weight: 700;
}

.crypto-universe .u-req-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 560px;
  margin-top: 12px;
}

.crypto-universe .u-req-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.crypto-universe .u-req-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(147, 112, 219, 0.3);
  transform: translateY(-2px);
}

.crypto-universe .u-req-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(147, 112, 219, 0.15), rgba(147, 112, 219, 0.05));
  border-color: rgba(147, 112, 219, 0.3);
}

.crypto-universe .u-req-card.featured:hover {
  border-color: rgba(147, 112, 219, 0.5);
  box-shadow: 0 8px 30px rgba(147, 112, 219, 0.2);
}

.crypto-universe .u-req-featured-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  background: linear-gradient(135deg, #9370db, #7b68ee);
  border-radius: 6px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;
}

.crypto-universe .u-req-levels {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #fff, rgba(147, 112, 219, 0.9));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.crypto-universe .u-req-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.crypto-universe .u-req-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.crypto-universe .u-req-item i {
  width: 16px;
  color: rgba(147, 112, 219, 0.7);
  font-size: 12px;
}

.crypto-universe .u-link-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: linear-gradient(135deg, rgba(255, 206, 84, 0.15), rgba(255, 206, 84, 0.05));
  border: 1px solid rgba(255, 206, 84, 0.25);
  border-radius: 10px;
  color: #ffce54;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  margin: 6px 0 10px;
  transition: all 0.3s ease;
}

.crypto-universe .u-link-modern:hover {
  background: linear-gradient(135deg, rgba(255, 206, 84, 0.25), rgba(255, 206, 84, 0.1));
  border-color: rgba(255, 206, 84, 0.5);
  transform: translateX(4px);
  box-shadow: 0 8px 25px rgba(255, 206, 84, 0.15);
}

.crypto-universe .u-link-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(255, 206, 84, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.crypto-universe .u-link-text {
  flex: 1;
}

.crypto-universe .u-link-arrow {
  opacity: 0.6;
  transition: all 0.3s ease;
}

.crypto-universe .u-link-modern:hover .u-link-arrow {
  opacity: 1;
  transform: translateX(4px);
}

.crypto-universe .u-kv-modern {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 100%;
}

.crypto-universe .u-kv-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.crypto-universe .u-kv-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 206, 84, 0.3);
  transform: translateX(4px);
}

.crypto-universe .u-kv-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 206, 84, 0.2), rgba(255, 206, 84, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffce54;
  font-size: 14px;
  flex-shrink: 0;
}

.crypto-universe .u-kv-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.crypto-universe .u-kv-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.crypto-universe .u-kv-value {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

/* Responsive: turn into modern stacked cards */
@media (max-width: 900px){
  .crypto-universe .u-option{height:380px;}
  .crypto-universe .u-grid{grid-template-columns: 1fr;}
  .crypto-universe .u-levels{grid-template-columns: repeat(2, minmax(0, 1fr));}
  .crypto-universe .u-kv{grid-template-columns: 110px 1fr;}
  .crypto-universe .u-tier-grid { grid-template-columns: repeat(3, 1fr); }
  .crypto-universe .u-req-modern { grid-template-columns: 1fr; }
  .crypto-universe .u-req-card.featured { grid-column: span 1; }
}

/* Mobile Switcher */
.u-mobile-switcher {
  display: none;
  gap: 8px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.03);
  padding: 6px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.u-switch-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 6px;
  border-radius: 12px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.u-switch-item i {
  font-size: 16px;
}

.u-switch-item span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.u-switch-item.active {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.u-switch-item:not(.active):active {
  transform: scale(0.95);
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 720px){
    .u-mobile-switcher {
      display: flex;
    }
    
    .crypto-universe .u-options{
      flex-direction:column;
      gap:0;
      padding: 0;
      border: none;
      background: transparent;
    }
    
    .crypto-universe .u-option{
      display: none;
      width: 100%;
      height: auto !important;
      min-height: auto !important;
    }
    
    .crypto-universe .u-option.active,
    .crypto-universe .u-option.u-active {
      display: block;
      background: rgba(255,255,255,.03);
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding-bottom: 24px;
    }

    .crypto-universe .u-label {
      display: none !important;
    }
    
    .crypto-universe .u-shadow {
      display: none !important;
    }

    .crypto-universe .u-content {
      position: relative !important;
      top: auto !important;
      left: auto !important;
      right: auto !important;
      bottom: auto !important;
      padding: 20px 16px 0 !important;
      opacity: 1 !important;
      transform: none !important;
      pointer-events: auto !important;
      overflow: visible !important;
      max-height: none !important;
    }
    
    .crypto-universe .u-levels-modern {
      gap: 12px;
    }
    
    .crypto-universe .u-levels-tier {
      padding: 12px;
    }
    
    .crypto-universe .u-callout-modern {
      margin-top: 16px;
    }
    
    .crypto-universe .u-main{font-size:15px;}
    .crypto-universe .u-sub{font-size:11px;}
    .crypto-universe .u-headline{font-size:18px;}
    .crypto-universe .u-icon{width:36px; height:36px; font-size:16px;}
    .crypto-universe .u-tier-grid { grid-template-columns: repeat(3, 1fr); }
    .crypto-universe .u-tier-grid.compact { grid-template-columns: 1fr; }
    .crypto-universe .u-levels-modern { gap: 10px; }
    .crypto-universe .u-levels-tier { padding: 10px; }
    .crypto-universe .u-level-card .u-level-percent { font-size: 15px; }
    .crypto-universe .u-req-modern { grid-template-columns: 1fr; gap: 8px; }
    .crypto-universe .u-req-card.featured { grid-column: span 1; }
    .crypto-universe .u-req-levels { font-size: 16px; }
    .crypto-universe .u-callout-modern { padding: 12px; gap: 10px; }
    .crypto-universe .u-kv-item { padding: 10px 12px; }
}

.u-kv-item-copyable {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.u-kv-item-copyable .u-kv-info {
    flex: 1;
    min-width: 0;
}

.u-kv-item-copyable .u-kv-value {
    word-break: break-all;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 11px;
    color: var(--primary-light);
}

.u-kv-value-small {
    font-size: 10px !important;
    line-height: 1.4;
}

.u-copy-btn {
    background: rgba(255, 202, 4, 0.15);
    border: 1px solid rgba(255, 202, 4, 0.3);
    color: var(--primary);
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 12px;
}

.u-copy-btn:hover {
    background: rgba(255, 202, 4, 0.3);
    border-color: var(--primary);
    transform: scale(1.05);
}

.u-copy-btn:active {
    transform: scale(0.95);
}

.u-copy-btn.copied {
    background: var(--primary);
    color: white;
}

.u-renounced-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    font-size: 8px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 4px;
    margin-left: 6px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.u-kv-item-renounced {
    border: 1px solid rgba(231, 76, 60, 0.3);
    background: rgba(231, 76, 60, 0.05);
}

.u-renounced-note {
    font-size: 10px;
    color: var(--text-secondary);
    margin-top: 8px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    border-left: 2px solid var(--primary);
    line-height: 1.5;
}

.u-renounced-note i {
    color: var(--primary);
    margin-right: 6px;
}

.u-banner-image {
    width: 100%;
    margin: 15px 0 20px;
    border-radius: 16px;
    overflow: hidden;
}
.u-banner-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.u-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}
.u-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 202, 4, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 202, 4, 0.15);
}
.u-feature-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: rgba(255, 202, 4, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
}
.u-feature-item span {
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.5;
}
.u-text-small {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
    margin: 15px 0;
}
.u-callout-modern.green {
    background: linear-gradient(135deg, rgba(255, 202, 4, 0.15), rgba(255, 202, 4, 0.05));
    border-left: 3px solid var(--primary);
}
.u-callout-modern.green .u-callout-icon {
    color: var(--primary);
}

.contract-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px auto;
    padding: 30px;
    max-width: 1100px;
    flex-wrap: wrap;
}
.contract-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    min-width: 180px;
    flex: 1;
    max-width: 240px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.contract-feature-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 202, 4, 0.3);
}
.contract-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 202, 4, 0.2), rgba(255, 138, 0, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.contract-feature-icon i {
    font-size: 22px;
    color: var(--primary);
}
.contract-feature-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    text-transform: uppercase;
}
.contract-feature-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}
@media (max-width: 768px) {
    .contract-features {
        gap: 12px;
        padding: 20px 15px;
    }
    .contract-feature-item {
        min-width: 140px;
        padding: 18px 16px;
    }
    .contract-feature-icon {
        width: 40px;
        height: 40px;
    }
    .contract-feature-icon i {
        font-size: 18px;
    }
    .contract-feature-label {
        font-size: 10px;
    }
    .contract-feature-value {
        font-size: 13px;
    }
}

.contract-features-section {
    position: relative;
    padding: 30px 20px 60px;
    background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(255, 138, 0, 0.08), transparent 70%);
}

.contract-features-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.bnb-origin-section {
    padding: 80px 20px;
    background: var(--bg-dark);
}

.bnb-section-heading {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.bnb-origin-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.bnb-origin-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(255, 202, 4, 0.15);
    border-radius: 20px;
    padding: 30px 25px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.bnb-origin-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 202, 4, 0.4);
}

.bnb-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 202, 4, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.bnb-origin-card:hover .bnb-card-glow {
    opacity: 1;
}

.bnb-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 202, 4, 0.2), rgba(255, 202, 4, 0.05));
    border: 1px solid rgba(255, 202, 4, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.bnb-card-icon i {
    font-size: 26px;
    color: var(--primary);
}

.bnb-origin-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.bnb-origin-content {
    position: relative;
}

.bnb-origin-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.bnb-origin-text:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .bnb-origin-container {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .bnb-origin-section {
        padding: 50px 15px;
    }
    
    .bnb-origin-card {
        padding: 25px 20px;
    }
    
    .bnb-origin-title {
        font-size: 14px;
    }
    
    .bnb-origin-text {
        font-size: 13px;
    }
    
    .bnb-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .bnb-card-icon i {
        font-size: 22px;
    }
}

.dashboard-preview-new {
    position: relative;
    background: #0d0d0d;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    max-width: 1400px;
    margin: 0 auto;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #FFCA04, #FF8A00);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12px;
    color: #000;
}

.preview-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.preview-logo span {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

.preview-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.preview-user-avatar {
    width: 32px;
    height: 32px;
    background: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #000;
}

.preview-user-info {
    display: flex;
    flex-direction: column;
}

.preview-user-name {
    font-weight: 600;
    font-size: 13px;
    color: #fff;
}

.preview-user-id {
    font-size: 11px;
    color: #FFCA04;
}

.preview-disconnect-btn {
    background: transparent;
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #EF4444;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.preview-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1fr 1fr 0.9fr;
    gap: 12px;
    padding: 15px;
    min-height: 450px;
}

.preview-panel {
    background: rgba(20, 20, 20, 0.9);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px;
    display: flex;
    flex-direction: column;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.panel-header > i {
    width: 36px;
    height: 36px;
    background: rgba(255, 202, 4, 0.15);
    border: 1px solid rgba(255, 202, 4, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFCA04;
    font-size: 14px;
}

.panel-header h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.panel-header span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.panel-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 10px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 8px 10px;
}

.stat-box .stat-label {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

.stat-box .stat-val {
    font-size: 11px;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.stat-box .stat-val i {
    color: #FFCA04;
    font-size: 10px;
}

.panel-income-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 10px;
}

.income-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}

.income-box > i {
    color: #FFCA04;
    font-size: 16px;
    margin-bottom: 6px;
}

.income-box .income-label {
    display: block;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.income-box .income-val {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: #FFCA04;
}

.income-box .income-sub {
    display: block;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}

.panel-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.panel-btn {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: none;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.panel-btn.deposit {
    background: linear-gradient(135deg, #FFCA04, #FF8A00);
    color: #000;
}

.panel-btn.withdraw {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.panel-referral {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 10px;
    margin-top: auto;
}

.referral-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.referral-header > i {
    color: #FFCA04;
    font-size: 14px;
}

.referral-header strong {
    font-size: 11px;
    color: #fff;
    display: block;
}

.referral-header span {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
}

.referral-warning {
    background: rgba(255, 138, 0, 0.15);
    border: 1px solid rgba(255, 138, 0, 0.3);
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 10px;
    color: #FF8A00;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cycles-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
}

.cycles-empty > i {
    font-size: 40px;
    margin-bottom: 12px;
    opacity: 0.3;
}

.cycles-empty h5 {
    font-size: 14px;
    color: #fff;
    margin: 0 0 6px;
}

.cycles-empty p {
    font-size: 11px;
    margin: 0;
}

.teams-level-progress {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(255, 202, 4, 0.1);
    border-radius: 8px;
    margin-bottom: 10px;
}

.teams-level-progress i {
    color: #FFCA04;
}

.teams-level-progress span {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
}

.teams-levels-scroll {
    flex: 1;
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 202, 4, 0.3) transparent;
}

.teams-levels-scroll::-webkit-scrollbar {
    width: 4px;
}

.teams-levels-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.teams-levels-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 202, 4, 0.3);
    border-radius: 2px;
}

.teams-levels-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 202, 4, 0.5);
}

.teams-level-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 8px;
}

.level-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.level-header span {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.level-badge {
    font-size: 8px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

.level-badge.locked {
    background: rgba(107, 114, 128, 0.3);
    color: #9CA3AF;
}

.level-desc {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 8px;
}

.level-stats {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.level-stats > div {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
}

.level-progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.level-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFCA04, #FF8A00);
    border-radius: 2px;
}

.wallet-earnings {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(255, 202, 4, 0.1);
    border-radius: 8px;
    margin-bottom: 10px;
}

.wallet-earnings i {
    color: #FFCA04;
}

.wallet-earnings span {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
}

.wallet-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

.wallet-stat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 8px;
    text-align: center;
}

.wallet-stat i {
    color: #FFCA04;
    font-size: 16px;
    margin-bottom: 4px;
}

.wallet-stat span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
}

.wallet-stat strong {
    font-size: 14px;
    color: #fff;
}

.wallet-rules {
    background: rgba(255, 202, 4, 0.08);
    border: 1px solid rgba(255, 202, 4, 0.2);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
}

.wallet-rules > i {
    color: #FFCA04;
    margin-right: 6px;
}

.wallet-rules > span {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
}

.wallet-rules ul {
    margin: 8px 0 0 0;
    padding-left: 20px;
}

.wallet-rules li {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.wallet-roi {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 10px;
}

.roi-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.roi-header i {
    color: #FFCA04;
}

.roi-header span {
    flex: 1;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
}

.roi-header strong {
    font-size: 11px;
    color: #FFCA04;
}

.roi-input {
    width: 100%;
    padding: 8px 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 11px;
    margin-bottom: 8px;
}

.roi-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.roi-buttons {
    display: flex;
    gap: 6px;
}

.roi-btn {
    flex: 1;
    padding: 8px;
    border-radius: 8px;
    border: none;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.roi-btn.withdraw {
    background: linear-gradient(135deg, #FFCA04, #FF8A00);
    color: #000;
}

.roi-btn.reinvest {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.panel-chat .panel-header {
    flex-wrap: wrap;
}

.chat-header {
    gap: 8px;
}

.chat-header > i {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    color: #8B5CF6;
}

.chat-header > span {
    flex: 1;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.chat-online {
    font-size: 10px;
    color: #10B981;
    display: flex;
    align-items: center;
    gap: 4px;
}

.chat-online i {
    font-size: 6px;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 5px 0;
}

.chat-msg {
    display: flex;
    gap: 8px;
}

.chat-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
}

.chat-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 8px 10px;
}

.chat-name {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.chat-name span {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 6px;
}

.chat-content p {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}

.chat-notification {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 10px;
    color: #10B981;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-notification i {
    font-size: 6px;
}

.chat-input {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.chat-input input {
    flex: 1;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 11px;
}

.chat-input input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.chat-input button {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #FFCA04, #FF8A00);
    border: none;
    border-radius: 10px;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-bottom-nav {
    display: flex;
    justify-content: space-around;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-bottom-nav .bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: color 0.3s ease;
}

.preview-bottom-nav .bottom-nav-item i {
    font-size: 16px;
}

.preview-bottom-nav .bottom-nav-item span {
    font-size: 10px;
}

.preview-bottom-nav .bottom-nav-item.active {
    color: #FFCA04;
}

.preview-bottom-nav .bottom-nav-item:hover i {
    animation: iconWiggle 0.5s ease;
}

@keyframes iconWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
    75% { transform: rotate(-5deg); }
}

@media (max-width: 1200px) {
    .preview-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .panel-chat {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .preview-header {
        flex-direction: column;
        gap: 10px;
        padding: 10px 15px;
    }
    
    .preview-user {
        width: 100%;
        justify-content: space-between;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 10px;
    }
    
    .panel-chat {
        grid-column: span 1;
    }
    
    .preview-panel {
        padding: 12px;
    }
    
    .wallet-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

