/* -----------------------------
   1. CHRISTMAS COLOR VARIABLES
   ----------------------------- */

:root {
  --xr-xmas-red:   #ff4f7d;
  --xr-xmas-green: #4df8b4;
  --xr-xmas-gold:  #ffd86d;
  --xr-xmas-blue:  #66d3ff;

  --xr-bg-deep:    #0b0617;
  --xr-bg-panel:   #120b26;
}

/* -------------------------------------------------
   2. GLOBAL BACKGROUND + SOFT NEON SNOW OVERLAY
   ------------------------------------------------- */

:root {
  --xr-bg-deep: #1a0a0f;
  --xr-xmas-red: #ff3b2d;        /* neon glow red */
  --xr-xmas-red-soft: #b40c0a;  /* softer background red */
  --xr-xmas-deepred: #5b0000;   /* deep mulled wine */
  --xr-xmas-gold: #ffaf4f;      /* warm gold/orange */
  --xr-xmas-green: #2c8a3c;     /* holly leaf green */
  --xr-xmas-blue: #d8d8d8;      /* icy grey */
  --xr-snow-white: #f7f7f7;
}

/* --------------------------------------------
   1. GLOBAL BACKGROUND – NIGHT RED + SNOW
   -------------------------------------------- */
body {
  background-color: var(--xr-bg-deep);
  background-image:
    url('rewindchristmasbg.png'),
    radial-gradient(circle at 0% 0%,
      #2a0010 0%,
      var(--xr-xmas-deepred) 40%,
      var(--xr-xmas-red-soft) 100%
    );
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
body {

	margin: 0;

	background-image:url('rewindchristmasbg.png'); background-position:top center;background-repeat:no-repeat;background-attachment: fixed;



}

/* Snow overlay */
body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(2px 2px at 10% 20%, rgba(255,255,255,0.8) 50%, transparent 52%),
    radial-gradient(2px 2px at 80% 10%, rgba(255,255,255,0.7) 50%, transparent 52%),
    radial-gradient(3px 3px at 30% 70%, rgba(255,255,255,0.6) 50%, transparent 52%),
    radial-gradient(2px 2px at 60% 40%, rgba(255,255,255,0.7) 50%, transparent 52%);
  background-size: 220px 220px, 260px 260px, 280px 280px, 300px 300px;
  animation: xr-xmas-snow 45s linear infinite;
  z-index: 0;
}

/* --------------------------------------------
   3. MAIN CONTENT PANELS – RED GLOW
   -------------------------------------------- */
.rowmain {
  background: rgba(255, 255, 255, 0.65);
backdrop-filter: blur(4px);
  border-radius: 10px;
  border-top: 3px solid var(--xr-xmas-red);
  box-shadow:
    0 0 25px rgba(255, 59, 45, 0.25),
    0 0 10px rgba(255, 175, 79, 0.2);
}

/* Underline gradient update */
.site-content .site-main .widget-title span::after,
h1.page-title::after,
h1.entry-title::after,
h2.section-title::after {
  background: linear-gradient(90deg,
    var(--xr-xmas-red),
    var(--xr-xmas-gold),
    var(--xr-xmas-green)
  );
  box-shadow: 0 0 8px rgba(255, 175, 79, 0.7);
}

/* --------------------------------------------
   4. HEADER + LOGO AREA
   -------------------------------------------- */
.masthead-banner {
  background: radial-gradient(circle at top,
    rgba(255,255,255,0.03),
    rgba(0,0,0,0.9)
  );
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-branding .site-title {
  color: #ffffff;
  text-shadow:
    0 0 10px rgba(255, 59, 45, 0.75),
    0 0 18px rgba(255, 175, 79, 0.85);
}

.top-masthead {
  background: linear-gradient(90deg,
    var(--xr-xmas-deepred),
    #300111,
    var(--xr-xmas-deepred)
  );
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.main-navigation {
  background: linear-gradient(90deg,
    #24000a,
    #3b0012,
    #24000a
  );
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.main-navigation .menu ul li a {
  color: #eee;
}

.main-navigation ul > li > a:hover {
  color: var(--xr-xmas-gold);
  text-shadow:
    0 0 6px rgba(255, 175, 79, 0.9),
    0 0 10px rgba(255, 59, 45, 0.7);
}

/* --------------------------------------------
   6. REQUEST ITEMS – RED NIGHT MODE
   -------------------------------------------- */
.retro-request {
  background: linear-gradient(135deg, #1a0a0f, #300015);
  border: 2px solid rgba(255,255,255,0.05);
  box-shadow:
    0 0 12px rgba(255,59,45,0.4),
    0 0 18px rgba(255,175,79,0.3);
}

.retro-request .song-title { color:#ffffff; }
.artist-name { color:var(--xr-xmas-gold); }

/* Badges updated to match night-red palette */
.req-badge.warn    { background: var(--xr-xmas-gold);  color:#000; }
.req-badge.info    { background: var(--xr-xmas-blue);  color:#000; }
.req-badge.good    { background: var(--xr-xmas-green); color:#000; }
.req-badge.bad     { background: var(--xr-xmas-red);   color:#fff; }

/* --------------------------------------------
   7. BUTTONS – RED/GOLD GLOW
   -------------------------------------------- */
button,
input[type="submit"],
.search-form .search-submit {
  background: linear-gradient(120deg,
    var(--xr-xmas-red),
    var(--xr-xmas-gold)
  );
  border-color: rgba(0,0,0,0.6);
  color: #200010;
  box-shadow:
    0 0 12px rgba(255, 59, 45, 0.7),
    0 0 15px rgba(255, 175, 79, 0.75);
}

button:hover,
input[type="submit"]:hover {
  background: linear-gradient(120deg,
    var(--xr-xmas-green),
    var(--xr-xmas-gold)
  );
}

/* Inputs focus */
input:focus,
textarea:focus {
  border-color: var(--xr-xmas-red);
  box-shadow: 0 0 8px rgba(255, 59, 45, 0.7);
}

/* --------------------------------------------
   8. BANNERS / RIBBONS
   -------------------------------------------- */
.xr-xmas-banner {
  background: linear-gradient(90deg,
    rgba(255,59,45,0.9),
    rgba(255,175,79,0.95),
    rgba(44,138,60,0.9)
  );
  color: #1a0006;
  box-shadow:
    0 0 20px rgba(255,59,45,0.6),
    0 0 20px rgba(255,175,79,0.5);
}

.xr-xmas-ribbon {
  background: var(--xr-xmas-red);
}
.spotlight-post,.single-column-posts,#secondary .widget,article .entry-content-wrap,article .comments-area,article .em-posts-promotions .widget{


    margin-bottom: 20px;

rgba(255, 255, 255, 0.65);
backdrop-filter: blur(4px);
    
    /* Gentle snow texture overlay */
    position: relative;
    overflow: hidden;
}
