/**
 * CRYPTOINNYC - Subtle Depth Enhancement
 *
 * Very minimal changes - just adds subtle background gradient
 * to separate header from content area.
 *
 * Desktop only - mobile unchanged.
 */

/* ============================================
   DESKTOP ONLY
   ============================================ */
@media (min-width: 769px) {

/* ============================================
   BACKGROUND - SUBTLE GRADIENT
   ============================================ */

/* Body gets slightly lighter background - creates natural separation */
body {
    background: #0f0f15 !important;
}

/* Header stays pure black - contrast creates natural border */
.site-head-wrapper {
    background: #000000 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
}

/* Footer also pure black */
.site-foot {
    background: #000000 !important;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.5) !important;
}

} /* End desktop media query */
