@charset "UTF-8";

/* ==========================================================================
   ZZAN Design Factory (ZDF) Market Section V3 (Visual & Info)
   ========================================================================== */
.zdf-market-v3 {
    background: #050505;
    padding: 100px 0;
    width: 100%;
    overflow: hidden;
}

.market-rail-container {
    width: 100%;
    overflow-x: hidden;
    cursor: grab;
    padding: 50px 0;
    -webkit-user-select: none;
    user-select: none;
}

.market-rail-container.active { cursor: grabbing; }

.market-rail-inner {
    display: flex;
    gap: 40px;
    padding-left: 5vw;
    padding-right: 5vw;
    width: max-content;
}

/* Base Card Style */
.zdf-v-card {
    flex: 0 0 420px;
    height: 600px;
    background: #111;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.zdf-v-card:hover {
    transform: translateY(-20px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 40px 80px rgba(0,0,0,0.8);
}

/* Visual Canvas Area */
.v-canvas {
    width: 100%;
    height: 380px;
    position: relative;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Blur Orbs (Common for Glassmorphism) */
.v-canvas::before, .v-canvas::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.4;
    z-index: 1;
    animation: orbFloat 10s infinite alternate ease-in-out;
}
.v-canvas::before { background: #0066FF; top: 20%; left: 20%; }
.v-canvas::after { background: #7000ff; bottom: 20%; right: 20%; animation-delay: -5s; }

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 40px) scale(1.3); }
}

/* Glass Element Base */
.glass-element {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* 01. Liquid Gradient */
.liquid-grad .orb-main {
    width: 200px; height: 200px;
    background: linear-gradient(135deg, #0066FF, #7000ff);
    filter: blur(30px); border-radius: 50%; opacity: 0.8;
}

/* 02. Glass UI */
.glass-ui .g-card { width: 240px; height: 160px; }

/* 03. Neon Grid */
.neon-grid .n-line {
    position: relative; z-index: 2; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(0,102,255,0.1) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0,102,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* 06. Floating Dots */
.floating-dots span {
    position: absolute; z-index: 2; width: 4px; height: 4px;
    background: #fff; border-radius: 50%; filter: blur(1px);
    animation: pMove 15s infinite linear;
}
@keyframes pMove { from { transform: translateY(400px); } to { transform: translateY(-100px); } }

/* 07. Tech Blueprint */
.blueprint .b-grid {
    width: 180px; height: 180px;
    border: 1px solid rgba(0,255,200,0.2);
    display: flex; align-items: center; justify-content: center;
}
.blueprint .b-circle { width: 100px; height: 100px; border: 1px dashed rgba(0,255,200,0.4); border-radius: 50%; }

/* 08. Retro Wave */
.retro-wave .sun {
    position: relative; z-index: 2; width: 120px; height: 120px;
    background: linear-gradient(to bottom, #ff00cc, #ffcc00);
    border-radius: 50%; box-shadow: 0 0 40px #ff00cc;
}

/* 09. Prism Light */
.prism-light::before {
    content: ''; position: absolute; z-index: 2; width: 100%; height: 100%;
    background: conic-gradient(from 180deg at 50% 50%, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #8f00ff, #ff0000);
    opacity: 0.15; filter: blur(40px);
}

/* 10. Nexus Theme Mockup */
.nexus-theme .mock-ui {
    width: 220px; height: 140px;
    background: #111; border: 1px solid #333; border-radius: 10px;
    padding: 15px;
}

/* Info Area Styling */
.v-info {
    padding: 35px 30px;
    background: #111;
    flex: 1;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.v-badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(0,102,255,0.1);
    color: #0066FF;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.v-title {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.v-desc {
    font-size: 15px;
    color: #888;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .zdf-v-card { flex: 0 0 350px; height: 500px; }
    .v-canvas { height: 300px; }
    .v-title { font-size: 20px; }
}
