:root {
    --zitere-green: #98ff12; /* Exact Bright Neon Green */
    --border-green: rgba(152, 255, 18, 0.4);
    --dark-bg: #000000;
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; }

/* Hide/Show Logic */
.desktop-view { display: flex; }
.mobile-view { display: none; }

@media (max-width: 1024px) {
    .desktop-view { display: none; }
    .mobile-view { display: block; }
}

/* --- DESKTOP HERO --- */
.desktop-view {
    height: 100vh;
    width: 100%;
    background: #000;
    position: relative;
    overflow: hidden;
    color: white;
}

.video-bg {
    position: absolute; top:0; left:0; width:100%; height:100%;
    object-fit: cover; z-index: 0; opacity: 0.5;
}

.desktop-layout {
    position: relative; z-index: 1;
    display: flex; justify-content: space-between; align-items: center;
    width: 100%; height: 100%; padding: 0 8%;
}

.hero-text-side { flex: 1.2; }
.main-heading { font-size: 68px; font-weight: 800; line-height: 1; margin-bottom: 25px; letter-spacing: -2px; }
.cyan-highlight { color: #5ce1ff; font-weight: bold; }

.auth-input-container {
    display: flex; border: 1px solid var(--zitere-green); border-radius: 4px;
    padding: 6px; width: 500px; background: rgba(0,0,0,0.8); margin-bottom: 50px;
}
.auth-input { background: transparent; border:none; color:white; flex:1; padding:15px; outline:none; font-size: 16px; }
.auth-btn { 
    background: white; color: black; border: none; padding: 0 35px; 
    border-radius: 2px; font-weight: 900; cursor: pointer; transition: 0.3s;
}
.auth-btn:hover { background: var(--zitere-green); }

/* WIDGETS LAYOUT (Swapped: Popular Left, Slanted Right) */
.widgets-side {
    flex: 1; display: flex; align-items: center; gap: 20px; justify-content: flex-end;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-green);
}

.popular-widget { width: 340px; border-radius: 12px; padding: 25px; height: 550px; }
.widget-title { font-size: 22px; font-weight: 700; margin-bottom: 20px; }

.slanted-column { display: flex; flex-direction: column; gap: 10px; }
.stat-card { width: 230px; padding: 25px; border-radius: 4px; }

/* Precise Bitget Slants */
.slanted-top { clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%); }
.slanted-bottom { clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%); }

.val { font-size: 32px; font-weight: 800; margin: 10px 0; }

/* --- MOBILE VIEW --- */
.mobile-view { background: white; min-height: 100vh; padding: 60px 20px; text-align: center; }
.mobile-title { font-size: 34px; font-weight: 800; color: #000; margin-top: 40px; }

.marker-text {
    color: var(--zitere-green); position: relative; display: inline-block;
}
.marker-text::after {
    content: ""; position: absolute; bottom: 2px; left: 0; width: 100%;
    height: 4px; background: #7ee7ff; border-radius: 10px;
}

.mobile-action-btn {
    background: black; color: white; width: 100%; max-width: 350px;
    padding: 22px; border-radius: 50px; font-size: 22px; font-weight: 900;
    border: none; margin-top: 60px;
}

/* ANIMATIONS */
@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}
.floating-cash { width: 85%; animation: floating 4s ease-in-out infinite; }

@keyframes jump {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3) rotate(8deg); }
}
.jump-gift { display: inline-block; animation: jump 1.5s infinite; }