/* ==========================================================================
   WONDERMAX — PREMIUM DARK WEB3 & FINTECH THEME STYLESHEET
   Colors: Dark Navy (#050816), Cyan (#00D4FF), Indigo (#6366F1), Profit Green (#22C55E)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
    --bg-main: #030712;
    --bg-secondary: #07101F;
    --bg-card: #0A1428;
    --bg-card-hover: rgba(10, 20, 40, 0.95);
    --bg-glass: rgba(10, 20, 40, 0.70);
    
    --primary-cyan: #00D4FF;
    --electric-blue: #2563EB;
    --secondary-indigo: #6366F1;
    --accent-purple: #7C3AED;
    --profit-green: #22C55E;
    
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-cyan: rgba(0, 212, 255, 0.20);
    --border-glow: rgba(0, 212, 255, 0.40);
    
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-card: 0 12px 36px -10px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 35px rgba(0, 212, 255, 0.15);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Global Reset & Typography --- */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-main) !important;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
    margin-top: 0;
}

a {
    color: var(--primary-cyan);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover, a:focus {
    color: #38bdf8;
    text-decoration: none;
}

/* --- Ambient Background Glow Grid --- */
.wm-bg-grid {
    position: relative;
    background-color: var(--bg-main);
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(0, 212, 255, 0.07) 0%, transparent 45%),
        radial-gradient(circle at 85% 70%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
}

/* --- Gradient Text Helper --- */
.wm-text-gradient {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--secondary-indigo) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.wm-text-gradient-purple {
    background: linear-gradient(135deg, var(--secondary-indigo) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* --- Container & Layout Helpers --- */
.wm-container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.wm-section {
    padding: 90px 0;
    position: relative;
}

.wm-section-alt {
    background-color: var(--bg-secondary);
}

.wm-section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px auto;
}

.wm-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 9999px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--primary-cyan);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.wm-section-title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.wm-section-desc {
    color: var(--text-secondary);
    font-size: 18px;
    margin: 0;
}

/* --- Glass Card Utility --- */
.wm-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(16px);
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.wm-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-cyan);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}

/* --- Modern Header Navigation --- */
.wm-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(5, 8, 22, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    transition: background-color var(--transition-normal), padding var(--transition-normal), backdrop-filter var(--transition-normal);
}

.wm-navbar.scrolled {
    background: rgba(5, 8, 22, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.wm-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.wm-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.wm-brand img {
    height: 50px;
    max-width: 220px;
    width: auto;
    object-fit: contain;
}

.wm-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.wm-nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    padding: 6px 0;
    position: relative;
    transition: color var(--transition-fast);
    text-decoration: none;
}

.wm-nav-link:hover, .wm-nav-link.active {
    color: var(--text-primary);
    text-decoration: none;
}

.wm-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--secondary-indigo));
    border-radius: 2px;
}

.wm-nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

/* Header Specific Action Buttons */
.wm-btn-nav-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.wm-btn-nav-login:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
    transform: translateY(-1px);
    text-decoration: none;
}

.wm-btn-nav-wallet {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 42px;
    padding: 0 22px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--secondary-indigo) 100%);
    border: none;
    color: #050816;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.25);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.wm-btn-nav-wallet:hover {
    color: #050816;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 212, 255, 0.4);
    text-decoration: none;
}

/* Hamburger Toggle Button & Mobile Navigation Buttons */
.wm-nav-toggle {
    display: none;
    background: rgba(10, 20, 40, 0.85);
    border: 1px solid rgba(0, 212, 255, 0.4);
    color: var(--primary-cyan);
    width: 42px;
    height: 42px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 20px;
    transition: all var(--transition-fast);
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.15);
}

.wm-nav-toggle:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: var(--primary-cyan);
}

.wm-mobile-only-btn {
    display: none;
}

/* --- Buttons --- */
.wm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}

.wm-btn-primary {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--secondary-indigo) 100%);
    color: #050816;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.25);
}

.wm-btn-primary:hover {
    color: #050816;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0, 212, 255, 0.4);
}

.wm-btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-subtle);
    color: var(--text-primary);
}

.wm-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
    transform: translateY(-2px);
}

.wm-btn-outline {
    background: transparent;
    border-color: var(--border-cyan);
    color: var(--primary-cyan);
}

.wm-btn-outline:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* --- Hero Section & Background --- */
.wm-hero {
    padding-top: 150px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 30%, rgba(0, 212, 255, 0.08) 0%, rgba(3, 7, 18, 1) 70%);
}

.wm-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Status Pill & Badge */
.wm-hero-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--profit-green);
    margin-bottom: 14px;
}

.wm-status-dot-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--profit-green);
    border-radius: 50%;
    position: relative;
}

.wm-status-dot-pulse::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.4);
    animation: wm-live-dot-pulse 2s infinite ease-out;
}

@keyframes wm-live-dot-pulse {
    0% { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

.wm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.35);
    border-radius: 9999px;
    color: var(--primary-cyan);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.wm-hero-title {
    font-size: 55px;
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.wm-hero-gradient-text {
    background: linear-gradient(90deg, #00D4FF 0%, #2563EB 50%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.wm-hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 580px;
    line-height: 1.65;
}

.wm-hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Hero Action Buttons */
.wm-btn-hero-primary {
    background: linear-gradient(135deg, #00D4FF 0%, #6366F1 50%, #7C3AED 100%);
    border: none;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    padding: 14px 30px;
    border-radius: 14px;
    box-shadow: 0 4px 25px rgba(0, 212, 255, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.wm-btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.35);
    color: #FFFFFF;
    text-decoration: none;
}

.wm-btn-hero-secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.wm-btn-hero-secondary:hover {
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
    text-decoration: none;
}

.wm-trust-list {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
}

.wm-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.wm-trust-item i {
    color: var(--primary-cyan);
}

/* --- Constellation Canvas Background --- */
.wm-constellation-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* --- Hero Left Column Text & Button (Dark & Light Blue Theme) --- */
.wm-hero-gradient-cyan {
    background: linear-gradient(90deg, #00D4FF 0%, #2563EB 50%, #6366F1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.wm-btn-hero-cyan {
    background: linear-gradient(135deg, #00D4FF 0%, #2563EB 50%, #6366F1 100%);
    border: none;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 16px 36px;
    border-radius: 9999px;
    box-shadow: 0 4px 25px rgba(0, 212, 255, 0.35);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.wm-btn-hero-cyan:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 212, 255, 0.55);
    color: #FFFFFF;
    text-decoration: none;
}

/* --- Live Market Feed Glass Widget (Institutional Dark/Light Blue Glassmorphism) --- */
.wm-live-feed-widget {
    background: rgba(10, 20, 40, 0.85);
    border: 1px solid rgba(0, 212, 255, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 22px 24px;
    box-shadow: 0 0 35px rgba(0, 212, 255, 0.15), 0 20px 50px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 100%;
}

.wm-feed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wm-feed-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 700;
    color: #22C55E;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.wm-feed-badge.reconnecting {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    color: #F59E0B;
}

.wm-feed-dot {
    width: 6px;
    height: 6px;
    background: #22C55E;
    border-radius: 50%;
    box-shadow: 0 0 8px #22C55E;
    animation: wmDotPulse 2s infinite ease-in-out;
}

.wm-feed-badge.reconnecting .wm-feed-dot {
    background: #F59E0B;
    box-shadow: 0 0 8px #F59E0B;
}

@keyframes wmDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.wm-feed-subtext {
    font-size: 11px;
    color: #64748B;
    margin-top: 2px;
}

.wm-feed-live-signal {
    font-size: 12px;
    color: #94A3B8;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.wm-signal-dot {
    width: 7px;
    height: 7px;
    background: #22C55E;
    border-radius: 50%;
    box-shadow: 0 0 10px #22C55E;
}

.wm-ticker-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* 3-Part Market Row Layout */
.wm-ticker-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: center;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    transition: all 0.25s ease;
    cursor: pointer;
}

.wm-ticker-row:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.12);
}

.wm-row-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wm-asset-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}

.wm-asset-badge.btc { background: rgba(247, 147, 26, 0.2); color: #F7931A; }
.wm-asset-badge.xrp { background: rgba(0, 212, 255, 0.2); color: #00D4FF; }
.wm-asset-badge.eth { background: rgba(99, 102, 241, 0.2); color: #6366F1; }
.wm-asset-badge.xau { background: rgba(0, 212, 255, 0.2); color: #00D4FF; }
.wm-asset-badge.xag { background: rgba(203, 213, 225, 0.2); color: #CBD5E1; }
.wm-asset-badge.usdjpy { background: rgba(239, 68, 68, 0.2); color: #EF4444; }
.wm-asset-badge.eurusd { background: rgba(59, 130, 246, 0.2); color: #3B82F6; }

.wm-symbol-title {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
}

.wm-asset-name {
    font-size: 11px;
    color: #64748B;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

.wm-row-center {
    text-align: right;
    padding-right: 12px;
}

.wm-live-price {
    font-size: 14px;
    font-weight: 700;
    color: #F8FAFC;
    font-family: var(--font-heading);
    transition: color 0.3s ease;
}

.wm-row-right {
    text-align: right;
}

.wm-live-change {
    font-size: 12px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.wm-live-price.up, .wm-live-change.up { color: #22C55E !important; }
.wm-live-price.down, .wm-live-change.down { color: #EF4444 !important; }

/* Real-Time Price Flash Animations */
.wm-ticker-row.price-flash-up {
    animation: wmFlashUp 0.6s ease-out;
}

.wm-ticker-row.price-flash-down {
    animation: wmFlashDown 0.6s ease-out;
}

@keyframes wmFlashUp {
    0% { background: rgba(34, 197, 94, 0.25); border-color: rgba(34, 197, 94, 0.5); }
    100% { background: rgba(255, 255, 255, 0.02); border-color: transparent; }
}

@keyframes wmFlashDown {
    0% { background: rgba(239, 68, 68, 0.25); border-color: rgba(239, 68, 68, 0.5); }
    100% { background: rgba(255, 255, 255, 0.02); border-color: transparent; }
}

.wm-ticker-val {
    font-size: 13px;
    font-weight: 700;
    color: #F8FAFC;
    font-family: var(--font-heading);
    transition: color 0.3s ease;
}

.wm-ticker-val.up, .wm-ticker-change.up { color: #22C55E !important; }
.wm-ticker-val.down, .wm-ticker-change.down { color: #EF4444 !important; }

.wm-ticker-change {
    font-size: 12px;
    font-weight: 700;
    min-width: 62px;
    text-align: right;
}

.wm-btc-symbol {
    font-size: 80px;
    color: #FFFFFF;
    font-weight: 800;
    font-family: var(--font-heading);
    filter: drop-shadow(0 0 18px #00D4FF);
}

@keyframes wm-btc-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-12px) scale(1.03); }
}

/* 4 Orbital Rings around Bitcoin Core Coin */
.wm-orbit-ring-1 {
    position: absolute;
    width: 290px;
    height: 290px;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.8);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.55);
    transform: rotateX(65deg) rotateY(-18deg);
    animation: wm-orbit-spin-cw 16s linear infinite;
    z-index: 4;
}

.wm-orbit-ring-2 {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 2px dashed rgba(124, 58, 237, 0.8);
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.55);
    transform: rotateX(65deg) rotateY(22deg);
    animation: wm-orbit-spin-ccw 12s linear infinite;
    z-index: 4;
}

.wm-orbit-ring-3 {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid rgba(37, 99, 235, 0.6);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.45);
    transform: rotateX(60deg) rotateY(0deg);
    animation: wm-orbit-spin-cw 22s linear infinite;
    z-index: 4;
}

.wm-orbit-ring-4 {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 2px dotted rgba(0, 255, 163, 0.7);
    box-shadow: 0 0 20px rgba(0, 255, 163, 0.45);
    transform: rotateX(70deg) rotateY(-40deg);
    animation: wm-orbit-spin-ccw 14s linear infinite;
    z-index: 4;
}

@keyframes wm-orbit-spin-cw {
    0% { transform: rotateX(65deg) rotateY(-18deg) rotate(0deg); }
    100% { transform: rotateX(65deg) rotateY(-18deg) rotate(360deg); }
}

@keyframes wm-orbit-spin-ccw {
    0% { transform: rotateX(65deg) rotateY(22deg) rotate(0deg); }
    100% { transform: rotateX(65deg) rotateY(22deg) rotate(-360deg); }
}

/* Floating Crypto Asset Badges matching Image 2 */
.wm-crypto-badge-node {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(7, 16, 35, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
    transition: transform 0.3s ease;
}

.wm-node-eth {
    top: 25px;
    left: 170px;
    border: 2px solid #00D4FF;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
    animation: wm-node-float 4.5s ease-in-out infinite;
}

.wm-node-bnb {
    top: 50px;
    right: 40px;
    border: 2px solid #F3BA2F;
    box-shadow: 0 0 25px rgba(243, 186, 47, 0.6);
    animation: wm-node-float 5s ease-in-out infinite 1s;
}

.wm-node-sol {
    bottom: 110px;
    left: 40px;
    border: 2px solid #9945FF;
    box-shadow: 0 0 25px rgba(153, 69, 255, 0.6);
    animation: wm-node-float 4s ease-in-out infinite 2s;
}

.wm-node-usdt {
    bottom: 110px;
    right: 40px;
    border: 2px solid #26A17B;
    box-shadow: 0 0 25px rgba(38, 161, 123, 0.6);
    animation: wm-node-float 5.5s ease-in-out infinite 1.5s;
}

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

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

/* Floating Glass Cards Around Core */
.wm-hero-glass-card {
    position: absolute;
    background: rgba(10, 20, 40, 0.75);
    border: 1px solid rgba(0, 212, 255, 0.25);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 16px;
    padding: 12px 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 212, 255, 0.08);
    z-index: 4;
    font-family: var(--font-body);
}

.wm-card-btc {
    top: 15px;
    right: -10px;
    animation: wm-float-soft 6s ease-in-out infinite;
}

.wm-card-ai-engine {
    top: 15px;
    left: -20px;
    animation: wm-float-soft 5.5s ease-in-out infinite 1.2s;
}

.wm-card-signal {
    bottom: 25px;
    right: -20px;
    animation: wm-float-soft 6.5s ease-in-out infinite 0.8s;
}

.wm-card-perf {
    bottom: 25px;
    left: -20px;
    animation: wm-float-soft 5s ease-in-out infinite 2s;
}

/* Bottom Wide Stats Panel */
.wm-hero-bottom-panel {
    margin-top: 60px;
    background: rgba(7, 16, 35, 0.75);
    border: 1px solid rgba(0, 212, 255, 0.18);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 24px 32px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 5;
}

.wm-hero-stat-col {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wm-hero-stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--primary-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.wm-hero-stat-title {
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2px;
}

.wm-hero-stat-sub {
    font-size: 13px;
    color: var(--text-secondary);
}

/* --- Stats Section --- */
.wm-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: rgba(13, 22, 48, 0.4);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.wm-stat-item {
    text-align: center;
    position: relative;
}

.wm-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border-subtle);
}

.wm-stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-cyan);
    margin-bottom: 6px;
}

.wm-stat-label {
    color: var(--text-secondary);
    font-size: 14px;
}

/* --- Feature Grid (Why WonderMax) --- */
.wm-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.wm-feature-card {
    position: relative;
    overflow: hidden;
}

.wm-feature-num {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-cyan);
    background: rgba(0, 212, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 4px 10px;
    display: inline-block;
    margin-bottom: 20px;
}

.wm-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-cyan);
    margin-bottom: 20px;
}

.wm-feature-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.wm-feature-desc {
    color: var(--text-secondary);
    font-size: 15px;
    margin: 0;
}

/* --- Trading Technology Flow --- */
.wm-tech-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
}

.wm-flow-step {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    position: relative;
}

.wm-flow-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 16px auto;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.wm-flow-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

/* Arrow between flow steps */
.wm-flow-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-cyan);
    font-weight: 800;
    z-index: 2;
}

/* --- Investment Tier Cards --- */
.wm-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.wm-plan-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wm-plan-card.featured {
    border-color: var(--primary-cyan);
    box-shadow: var(--shadow-card), 0 0 30px rgba(0, 212, 255, 0.2);
}

.wm-plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-cyan), var(--secondary-indigo));
    color: #050816;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 9999px;
}

.wm-plan-name {
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
}

.wm-plan-value {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-cyan);
    margin-bottom: 24px;
}

.wm-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.wm-plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wm-plan-features li svg {
    color: var(--profit-green);
    flex-shrink: 0;
}

/* --- Timeline Component --- */
.wm-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin: 40px 0;
}

.wm-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--secondary-indigo));
    z-index: 0;
}

.wm-timeline-step {
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    border: 2px solid var(--primary-cyan);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary-cyan);
    margin: 0 auto 16px auto;
}

.wm-timeline-item {
    text-align: center;
    width: 18%;
}

.wm-timeline-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

/* --- FAQ Accordion --- */
.wm-faq-container {
    max-width: 840px;
    margin: 0 auto;
}

.wm-faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.wm-faq-item.active {
    border-color: var(--border-cyan);
}

.wm-faq-button {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    text-align: left;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.wm-faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--primary-cyan);
    transition: transform var(--transition-fast);
}

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

.wm-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    padding: 0 24px;
    color: var(--text-secondary);
    font-size: 15px;
}

.wm-faq-item.active .wm-faq-content {
    max-height: 500px;
    padding: 0 24px 20px 24px;
    transition: max-height 0.3s ease-in-out;
}

/* --- Web3 Form Styles (Login / Register) --- */
.wm-auth-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px 20px;
}

.wm-auth-card {
    width: 100%;
    max-width: 480px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    box-shadow: var(--shadow-card), var(--shadow-glow);
}

.wm-auth-title {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
}

.wm-auth-subtitle {
    color: var(--text-secondary);
    font-size: 14px;
    text-align: center;
    margin-bottom: 32px;
}

.wm-form-group {
    margin-bottom: 20px;
}

.wm-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.wm-form-input {
    width: 100%;
    background: rgba(5, 8, 22, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.wm-form-input:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.15);
}

/* --- Responsive Priority (All Devices) --- */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

@media (max-width: 991px) {
    .wm-nav-toggle {
        display: flex !important;
        z-index: 1001;
    }
    .wm-nav-actions {
        display: none !important;
    }
    .wm-mobile-only-btn {
        display: block !important;
        width: 100%;
        margin-top: 10px;
    }
    .wm-nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(8, 14, 28, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid rgba(0, 212, 255, 0.2);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 28px 32px 28px;
        gap: 16px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
        transition: right var(--transition-normal);
        z-index: 999;
    }
    .wm-nav-links.open {
        right: 0;
    }
    .wm-hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
    .wm-hero-title {
        font-size: 38px;
        line-height: 1.15;
    }
    .wm-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .wm-hero-actions {
        justify-content: center;
    }
    .wm-trust-list {
        justify-content: center;
    }
    .wm-live-feed-widget {
        max-width: 520px;
        margin: 0 auto;
    }
    .wm-features-grid { grid-template-columns: repeat(2, 1fr); }
    .wm-tech-flow { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .wm-flow-step:not(:last-child)::after { display: none; }
}

@media (max-width: 768px) {
    .wm-section { padding: 50px 0; }
    .wm-section-title { font-size: 28px; }
    .wm-hero { padding-top: 110px; padding-bottom: 50px; }
    .wm-hero-status-pill {
        font-size: 11px;
        padding: 6px 12px;
        max-width: 100%;
        box-sizing: border-box;
        line-height: 1.4;
        white-space: normal;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .wm-hero-title {
        font-size: 30px;
        line-height: 1.15;
        word-break: break-word;
        text-align: center;
    }
    .wm-hero-desc {
        font-size: 15px;
        text-align: center;
    }
    .wm-trust-list {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }
    .wm-live-feed-widget {
        max-width: 100%;
        padding: 16px 12px;
        border-radius: 16px;
        box-sizing: border-box;
    }
    .wm-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .wm-stat-item:not(:last-child)::after { display: none; }
    .wm-features-grid { grid-template-columns: 1fr; }
    .wm-tech-flow { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .wm-container { padding-left: 14px; padding-right: 14px; box-sizing: border-box; }
    .wm-hero-title { font-size: 26px; }
    .wm-ticker-row {
        grid-template-columns: 1.1fr 1fr 0.9fr;
        padding: 8px 8px;
        gap: 4px;
    }
    .wm-symbol-title { font-size: 12px; }
    .wm-asset-name { font-size: 10px; max-width: 70px; }
    .wm-live-price { font-size: 12px; }
    .wm-live-change { font-size: 11px; }
    .wm-stats-bar { grid-template-columns: 1fr; }
    .wm-btn { width: 100%; }
}

/* --- Reduced Motion Support --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Feature Glass Card Hover Effect */
.wm-feature-glass-card:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(0, 212, 255, 0.45) !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 212, 255, 0.2) !important;
}

/* ==========================================================================
   GLOBEFI TOUR BONANZA SECTION STYLES
   ========================================================================== */
.web3-tour-section-container {
    background: linear-gradient(145deg, rgba(8, 18, 38, 0.88) 0%, rgba(4, 11, 26, 0.95) 100%);
    border: 1.5px solid rgba(0, 212, 255, 0.22);
    border-radius: 24px;
    padding: 28px 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 212, 255, 0.1);
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.tour-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 22px;
}

.tour-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tour-badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0284C7, #06B6D4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #FFFFFF;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
    flex-shrink: 0;
}

.tour-title-main {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tour-pill-tag {
    font-size: 11px;
    font-weight: 800;
    color: #FFFFFF;
    background: linear-gradient(135deg, #0284C7, #06B6D4);
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(6, 182, 212, 0.35);
}

.tour-subtitle {
    margin: 4px 0 0 0;
    font-size: 13.5px;
    color: #94A3B8;
}

.tour-nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(10, 24, 48, 0.85);
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: #CBD5E1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tour-nav-btn:hover {
    background: linear-gradient(135deg, #2563EB, #06B6D4);
    color: #FFFFFF;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.35);
}

.tour-filters-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.tour-filters-wrapper::-webkit-scrollbar {
    display: none;
}

.tour-filter-btn {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 600;
    background: rgba(15, 30, 60, 0.65);
    border: 1px solid rgba(59, 130, 246, 0.25);
    color: #94A3B8;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tour-filter-btn:hover,
.tour-filter-btn.active {
    background: linear-gradient(135deg, #2563EB, #06B6D4);
    color: #FFFFFF;
    border-color: transparent;
    box-shadow: 0 2px 10px rgba(6, 182, 212, 0.35);
}

.tour-cards-track {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 6px 4px 16px 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(6, 182, 212, 0.4) rgba(10, 24, 48, 0.5);
}

.tour-cards-track::-webkit-scrollbar {
    height: 6px;
}

.tour-cards-track::-webkit-scrollbar-track {
    background: rgba(10, 24, 48, 0.5);
    border-radius: 10px;
}

.tour-cards-track::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #2563EB, #06B6D4);
    border-radius: 10px;
}

.tour-card-item {
    flex: 0 0 295px;
    max-width: 295px;
    background: linear-gradient(160deg, rgba(13, 27, 53, 0.96) 0%, rgba(6, 18, 38, 0.98) 100%);
    border-radius: 18px;
    border: 1px solid rgba(59, 130, 246, 0.22);
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.tour-card-item:hover {
    transform: translateY(-6px);
    border-color: rgba(6, 182, 212, 0.6);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(6, 182, 212, 0.25);
}

.tour-img-wrapper {
    position: relative;
    width: 100%;
    height: 165px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #06152d;
}

.tour-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tour-card-item:hover .tour-card-img {
    transform: scale(1.08);
}

.tour-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 12, 28, 0.45) 0%, rgba(4, 12, 28, 0.05) 45%, rgba(4, 12, 28, 0.85) 100%);
    pointer-events: none;
}

.tour-img-top-badges {
    position: absolute;
    top: 9px;
    left: 9px;
    right: 9px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    z-index: 1;
}

.tour-badge-pill {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tour-pkg-price-badge {
    font-size: 13px;
    font-weight: 800;
    color: #FFFFFF;
    background: rgba(6, 18, 38, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(6, 182, 212, 0.5);
    padding: 4px 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-img-bottom-info {
    position: absolute;
    bottom: 8px;
    left: 9px;
    right: 9px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    z-index: 1;
}

.tour-img-chip {
    font-size: 10.5px;
    font-weight: 600;
    color: #F8FAFC;
    background: rgba(10, 24, 48, 0.8);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 3px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tour-card-body {
    padding: 0 2px 10px 2px;
}

.tour-card-title {
    font-size: 15px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 3px 0;
    line-height: 1.25;
}

.tour-card-dest {
    font-size: 12px;
    color: #94A3B8;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tour-reward-box {
    background: rgba(6, 182, 212, 0.08);
    border: 1px dashed rgba(6, 182, 212, 0.35);
    border-radius: 10px;
    padding: 8px 10px;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    color: #38BDF8;
    display: flex;
    align-items: center;
    gap: 7px;
}

.tour-claim-btn {
    width: 100%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    box-sizing: border-box;
    background: linear-gradient(135deg, #0284C7, #06B6D4);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(6, 182, 212, 0.3);
}

.tour-claim-btn:hover {
    background: linear-gradient(135deg, #0369A1, #0891B2);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(6, 182, 212, 0.45);
}
