/* ==========================================================================
   NETFLY Core Stylesheet - Premium Dark Theme & Interactive Elements
   ========================================================================== */

/* Design Tokens / Variables */
:root {
    --bg-dark: #060608;
    --bg-card: rgba(10, 10, 14, 0.7);
    --bg-card-hover: rgba(16, 16, 22, 0.85);
    --border-glass: rgba(212, 175, 55, 0.1);
    --border-glass-hover: rgba(212, 175, 55, 0.25);
    
    /* Brand Colors */
    --gold-primary: #d4af37;
    --gold-light: #ffe293;
    --gold-dark: #85581a;
    
    /* Theme Gradients */
    --gradient-gold: linear-gradient(135deg, #ffe293 0%, #d4af37 50%, #85581a 100%);
    --gradient-cyberpunk: linear-gradient(135deg, #00f2fe 0%, #ff007f 100%);
    --gradient-emerald: linear-gradient(135deg, #34d399 0%, #059669 50%, #064e3b 100%);
    --gradient-sapphire: linear-gradient(135deg, #60a5fa 0%, #2563eb 50%, #1e3a8a 100%);
    
    /* Current Active Gradient (Updated by JS) */
    --theme-gradient: var(--gradient-gold);
    --theme-glow-color: rgba(212, 175, 55, 0.5);
    
    /* Interactive variables */
    --glow-intensity: 5px;
    --tilt-sensitivity: 10px;
    --card-rx: 0deg;
    --card-ry: 0deg;
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset & Base Rules */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    color: #e2e8f0;
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #060608;
}
::-webkit-scrollbar-thumb {
    background: #1c1c24;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* Interactive Canvas Background */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, #0f0f14 0%, #060608 100%);
}

/* Typography & Utility classes */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.gradient-text {
    background: var(--theme-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gold-primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 600px;
    font-weight: 300;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 100;
    background: rgba(6, 6, 8, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.header-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
}

.logo-icon-small {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 6px var(--theme-glow-color));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.brand-logo:hover .brand-logo-img {
    filter: drop-shadow(0 0 10px var(--theme-glow-color)) brightness(1.1);
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #ffffff;
    line-height: 1.1;
}

.brand-tagline {
    font-size: 0.5rem;
    letter-spacing: 0.15em;
    color: #94a3b8;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--theme-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.connect-wallet-btn {
    background: transparent;
    border: 1px solid var(--border-glass-hover);
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.connect-wallet-btn:hover {
    background: var(--theme-gradient);
    border-color: transparent;
    color: #060608;
    box-shadow: 0 0 15px var(--theme-glow-color);
    transform: translateY(-2px);
}

/* Main Layout */
.main-content {
    max-width: 1200px;
    margin: 80px auto 0 auto;
    padding: 2rem;
}

/* Hero Section */
.hero-section {
    padding: 4rem 0 1rem 0;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.hero-description {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 540px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Buttons */
.btn {
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.btn-primary.pill-btn {
    background: var(--theme-gradient);
    color: #060608;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(212, 175, 55, 0.1);
}

.btn-primary.pill-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--theme-glow-color);
}

.btn-text-arrow {
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 500;
}

.btn-text-arrow i {
    color: var(--gold-primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-text-arrow:hover {
    color: var(--gold-light);
}

.btn-text-arrow:hover i {
    transform: translateX(5px);
}

/* Hero Right: 3D Scene Wrapper */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    height: 520px;
    position: relative;
}

.hero-scene-container {
    width: 100%;
    max-width: 480px;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(var(--card-rx)) rotateY(var(--card-ry));
    transition: transform 0.1s ease;
}

/* Gothic Arch Window Details */
.scene-arch-bg {
    position: absolute;
    top: 5%;
    left: 10%;
    right: 10%;
    bottom: 5%;
    border-radius: 200px 200px 0 0;
    border: 1px solid rgba(212, 175, 55, 0.1);
    background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.08) 0%, rgba(6, 6, 8, 0.95) 75%);
    box-shadow: inset 0 0 30px rgba(212, 175, 55, 0.05);
    z-index: 1;
    transform: translateZ(-20px);
}

.arch-spokes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 200px 200px 0 0;
    background-image: 
        linear-gradient(0deg, transparent 50%, rgba(212, 175, 55, 0.04) 50%),
        linear-gradient(90deg, transparent 50%, rgba(212, 175, 55, 0.04) 50%),
        linear-gradient(45deg, transparent 50%, rgba(212, 175, 55, 0.04) 50%),
        linear-gradient(-45deg, transparent 50%, rgba(212, 175, 55, 0.04) 50%);
    background-size: 100% 100%;
    opacity: 0.7;
}

.scene-grid-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    transform: translateZ(-10px);
}

/* Logo Floating Inside Arch */
.scene-logo-glow {
    position: absolute;
    top: 15%;
    left: 20%;
    width: 60%;
    height: 60%;
    z-index: 3;
    transform: translateZ(15px);
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.scene-logo-glow .hero-logo-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 calc(var(--glow-intensity) * 1.5) var(--theme-glow-color));
    transition: filter 0.3s ease;
}

/* Sculpture Layer */
.scene-sculpture {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    transform: translateZ(40px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.hero-sculpture-img-main {
    max-width: 105%;
    max-height: 98%;
    object-fit: contain;
    filter: contrast(1.05) brightness(0.9) saturate(0.95);
}

/* Floating Portals */
.scene-portal {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 5;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.portal-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    overflow: hidden;
    background: #0f0f14;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5), 0 0 12px rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}

.portal-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portal-label {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #94a3b8;
    text-transform: uppercase;
    background: rgba(6, 6, 8, 0.75);
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Individual Portal Coordinates */
.portal-real-estate {
    top: 10%;
    left: 20%;
}
.portal-commodities {
    bottom: 18%;
    left: 12%;
}
.portal-art {
    top: 32%;
    right: 8%;
}

.scene-portal:hover {
    transform: translateZ(80px) scale(1.15) !important;
}

.scene-portal:hover .portal-circle {
    border-color: var(--gold-light);
    box-shadow: 0 15px 30px rgba(0,0,0,0.6), 0 0 20px var(--theme-glow-color);
}

.scene-portal:hover .portal-circle img {
    transform: scale(1.1);
}

.scene-portal:hover .portal-label {
    color: #ffffff;
    border-color: var(--gold-primary);
}

/* HUD Text */
.scene-hud {
    position: absolute;
    font-family: var(--font-heading);
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.1em;
    transform: translateZ(5px);
}
.scene-hud.top-left { top: 20px; left: 20px; }
.scene-hud.bottom-left { bottom: 20px; left: 20px; }

/* Diagonal slash layout decoration for mockup matching */
.hero-diagonal-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0.15;
    margin: 3rem 0 1rem 0;
}

/* Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 1.2fr;
    gap: 1.5rem;
    background: rgba(10, 10, 14, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-top: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding-right: 1rem;
}

.stat-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gold-primary);
    font-size: 1.1rem;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
}

.stat-label {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stats-badge-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-glass-hover);
    border-radius: 10px;
    padding: 0.75rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.badge-text-group {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 600;
}

.badge-desc {
    font-size: 0.65rem;
    color: #94a3b8;
}

.badge-vector-icon {
    font-size: 1.3rem;
    color: var(--gold-primary);
    text-shadow: 0 0 8px var(--theme-glow-color);
}

/* Features Columns Section (Tokenize + Trade cards) */
.features-section {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
    padding: 2.5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    border-color: var(--border-glass-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.02);
}

.feature-card-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.feature-visual-left {
    flex: 0 0 160px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 12px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 80%);
}

.bust-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.6));
    transition: transform 0.5s ease;
}

.feature-card:hover .bust-img {
    transform: scale(1.05) translateY(-5px);
}

.feature-details-right, .feature-details-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-card-title {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.feature-card-desc {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.5;
    font-weight: 300;
}

.feature-bullet-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.bullet-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    cursor: pointer;
}

.bullet-icon-item i {
    font-size: 1.25rem;
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.08);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}

.bullet-icon-item span {
    font-size: 0.65rem;
    color: #94a3b8;
    font-weight: 500;
    line-height: 1.2;
}

.bullet-icon-item:hover i {
    background: var(--gold-primary);
    color: #060608;
    box-shadow: 0 0 10px var(--theme-glow-color);
    transform: translateY(-2px);
}

.bullet-icon-item:hover span {
    color: #ffffff;
}

.feature-bullets-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.bullet-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #e2e8f0;
}

.bullet-list-item i {
    color: var(--gold-primary);
    font-size: 1rem;
}

.feature-visual-right {
    flex: 0 0 220px;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
}

.villa-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.feature-card:hover .villa-img {
    transform: scale(1.06);
    opacity: 1;
}

/* Customizer Dashboard / Control Panel */
.control-panel-section {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.section-header-centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

.controls-card-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.controls-glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.control-group-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 4rem;
    row-gap: 2rem;
}

.control-field {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.control-label {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
}

.control-value-display {
    color: var(--gold-primary);
    font-size: 0.85rem;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.1rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Sliders styling */
.range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #1e1e24;
    outline: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--theme-gradient);
    cursor: pointer;
    box-shadow: 0 0 10px var(--theme-glow-color);
    transition: transform 0.1s ease;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* Select dropdown styling */
.custom-select {
    width: 100%;
    background: #121218;
    border: 1px solid var(--border-glass);
    color: #e2e8f0;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.custom-select:focus {
    border-color: var(--gold-primary);
}

/* Theme Button Toggles */
.theme-buttons-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.theme-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    color: #94a3b8;
    padding: 0.6rem 0.4rem;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-btn-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--btn-color);
    box-shadow: 0 0 6px var(--btn-color);
}

.theme-btn:hover {
    color: #ffffff;
    border-color: var(--border-glass-hover);
    background: rgba(255, 255, 255, 0.05);
}

.theme-btn.active {
    border-color: var(--btn-color);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.02);
}

/* Toggle Switch */
.toggle-field {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.switch-container {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

.switch-container input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1e1e24;
    transition: .4s;
    border-radius: 24px;
    border: 1px solid var(--border-glass);
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: #94a3b8;
    transition: .4s;
    border-radius: 50%;
}

.switch-container input:checked + .switch-slider {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
}

.switch-container input:checked + .switch-slider:before {
    transform: translateX(24px);
    background-color: var(--gold-primary);
    box-shadow: 0 0 6px var(--theme-glow-color);
}

/* Marketplace Section */
.marketplace-section {
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.marketplace-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.view-assets-outline-btn {
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    border: 1px solid var(--border-glass-hover);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.view-assets-outline-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.05);
    transform: translateY(-2px);
}

.market-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.market-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.market-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glass-hover);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--card-glow-color);
}

.market-card-image-placeholder {
    height: 180px;
    width: 100%;
    background: #0f0f14;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.market-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    opacity: 0.75;
    filter: contrast(1.05) brightness(0.8);
}

.market-card:hover .market-card-img {
    transform: scale(1.08);
    opacity: 1.0;
    filter: contrast(1.1) brightness(1.0);
}

/* Decorative grid pattern in card thumbnails */
.market-card-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(var(--gold-primary) 0.5px, transparent 0.5px), 
        radial-gradient(var(--gold-primary) 0.5px, #0f0f14 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.04;
    transition: opacity 0.3s ease;
}

.market-card:hover .market-card-image-placeholder::before {
    opacity: 0.08;
}

.market-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-glass-hover);
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
    z-index: 2;
}

.market-card-body {
    padding: 1.5rem;
}

.market-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.market-card-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.market-card-stat {
    display: flex;
    flex-direction: column;
}

.market-card-stat .m-label {
    font-size: 0.65rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.market-card-stat .m-val {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}

.market-card-stat .m-val.highlight {
    color: #34d399;
}

/* Dots Carousel indicator */
.carousel-dots-container {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2.5rem;
}

.carousel-dots-container .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-dots-container .dot.active {
    background: var(--gold-primary);
    transform: scale(1.2);
    box-shadow: 0 0 6px var(--theme-glow-color);
}

/* Why Netfly Section */
.why-netfly-section {
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    gap: 1.25rem;
}

.benefit-icon {
    font-size: 1.5rem;
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: var(--gold-primary);
    color: #060608;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--theme-glow-color);
}

.benefit-text h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: #ffffff;
}

.benefit-text p {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.5;
}

/* Globe Card */
.globe-visual-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.globe-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.globe-title {
    font-size: 2.2rem;
    line-height: 1.1;
    font-weight: 800;
}

.globe-desc {
    font-size: 0.95rem;
    color: #94a3b8;
    max-width: 320px;
}

.globe-canvas-container {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#globe-canvas {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
}

.align-center {
    align-self: center;
}

/* Footer styling */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-mid {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.85rem;
}

.footer-mid-icon {
    font-size: 0.95rem;
    color: var(--gold-primary);
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    color: #64748b;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    color: #ffffff;
    transform: translateY(-2px);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-content {
        text-align: center;
        align-items: center;
    }
    .hero-description {
        margin: 0 auto;
    }
    .hero-visual {
        order: -1;
        height: 480px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .market-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .globe-visual-card {
        max-width: 500px;
        margin: 0 auto;
    }
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .stat-item:nth-child(2) {
        border-right: none;
    }
    .stats-badge-card {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }
    .nav-menu {
        display: none;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .control-group-grid {
        grid-template-columns: 1fr;
        row-gap: 1.5rem;
    }
    .market-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .feature-card-content {
        flex-direction: column;
        text-align: center;
    }
    .feature-visual-left, .feature-visual-right {
        flex: 0 0 180px;
        width: 100%;
        height: 180px;
    }
    .feature-bullet-icons {
        justify-content: center;
    }
    .bullet-list-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
    .market-cards-grid {
        grid-template-columns: 1fr;
    }
    .stats-bar {
        grid-template-columns: 1fr;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 1rem;
        padding-right: 0;
    }
    .stats-badge-card {
        grid-column: span 1;
    }
    .theme-buttons-container {
        grid-template-columns: 1fr 1fr;
    }
}
