
:root{
  --c103-brown-1:#2a1f16;
  --c103-brown-2:#17110c;
  --c103-gold:#c28b3c;
  --c103-red:#d31616;
  --c103-black:#0f0f10;
  --c103-white:#ffffff;
  --c103-hero-image: url("https://country103fm.ca/wp-content/uploads/2026/02/ChatGPT-Image-Feb-11-2026-02_13_12-PM.png");
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#111;
  background: linear-gradient(180deg,#f5f2ee,#f0ece6);
}
a{color:inherit}
img{max-width:100%;height:auto}
.c103-wrap{max-width:1100px;margin:0 auto;padding:18px}
@media (max-width:900px){ .c103-wrap{padding:14px} }

.c103-site-header{
  position:sticky;top:0;z-index:999;
  background:linear-gradient(90deg,var(--c103-brown-2),#241a12 45%,var(--c103-brown-2));
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.c103-header-inner{
  max-width:1100px;margin:0 auto;
  display:flex;align-items:center;gap:18px;
  padding:14px 18px;
}
.c103-brand{
  display:flex;flex-direction:column;gap:2px;
  text-decoration:none;color:#fff;line-height:1.05;
}
.c103-brand-top{display:flex;align-items:baseline;gap:10px}
.c103-brand-mark{font-weight:900;letter-spacing:.06em;text-transform:uppercase;font-size:14px;opacity:.9}
.c103-brand-num{font-weight:1000;font-size:34px}
.c103-brand-sub{font-size:12px;opacity:.82}
.c103-nav{
  flex:1;
  display:flex;
  justify-content:center;
}
.c103-menu{list-style:none;display:flex;gap:16px;margin:0;padding:0;flex-wrap:wrap;align-items:center}
.c103-menu a{color:#fff;text-decoration:none;font-weight:800;font-size:13px;opacity:.9}
.c103-menu a:hover{opacity:1;text-decoration:underline}
.c103-header-cta{margin-left:10px}
.c103-listen-live{
  display:inline-flex;align-items:center;justify-content:center;
  background:#0f0f10;color:#fff;text-decoration:none;
  font-weight:1000;padding:10px 14px;border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 10px 24px rgba(0,0,0,.25);
}
.c103-listen-live:hover{filter:brightness(1.06)}
.c103-listen-live.is-playing{background:var(--c103-red);box-shadow:0 0 0 0 rgba(211,22,22,.5);animation:c103glow 1.4s infinite}
@keyframes c103glow{
  0%{box-shadow:0 0 0 0 rgba(211,22,22,.45)}
  70%{box-shadow:0 0 0 14px rgba(211,22,22,0)}
  100%{box-shadow:0 0 0 0 rgba(211,22,22,0)}
}
@media (max-width:900px){
  .c103-header-inner{flex-wrap:wrap}
  .c103-nav{order:3;width:100%}
  .c103-menu{justify-content:flex-start}
}

.c103-hero{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 18px 42px rgba(0,0,0,.22);
  background:
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.28)),
    var(--c103-hero-image);
  background-size:cover;
  background-position:center 60%;
  color:#fff;
}
.c103-hero-inner{display:flex;gap:18px;align-items:stretch;padding:24px}
.c103-hero-left{flex:1;min-width:360px;opacity:0;pointer-events:none}
.c103-hero-right{width:460px;min-width:280px;display:grid;gap:12px;margin-left:auto}
@media (max-width:900px){
  .c103-hero-inner{padding:16px;flex-wrap:wrap}
  .c103-hero-left{display:none}
  .c103-hero-right{width:100%}
}

.c103-glass{
  background:rgba(255,255,255,.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border:1px solid rgba(255,255,255,.35);
  box-shadow:0 10px 22px rgba(0,0,0,.16);
  border-radius:16px;
}
.c103-onair-card{padding:14px}
.c103-onair-head{display:flex;gap:10px;align-items:flex-start}
.c103-live-dot{
  width:10px;height:10px;border-radius:999px;background:var(--c103-red);margin-top:6px;
  box-shadow:0 0 0 0 rgba(211,22,22,.45);
  animation:c103pulse 1.6s infinite;
}
@keyframes c103pulse{
  0%{box-shadow:0 0 0 0 rgba(211,22,22,.45)}
  70%{box-shadow:0 0 0 10px rgba(211,22,22,0)}
  100%{box-shadow:0 0 0 0 rgba(211,22,22,0)}
}
.c103-onair-label{font-size:10px;letter-spacing:.14em;text-transform:uppercase;opacity:.75;font-weight:1000}
.c103-nowplaying{font-weight:1000;font-size:14px;margin-top:2px}

/* Weather mini (hero card) */
.c103-weather-mini{
  margin-top:12px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.65);
  border:1px solid rgba(0,0,0,.08);
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:12px;
  color:#111;
}
.c103-weather-mini .label{font-weight:1000;letter-spacing:.12em;text-transform:uppercase;font-size:11px;opacity:.95}
.c103-weather-mini .icon{width:52px;height:52px;display:flex;align-items:center;justify-content:center;opacity:.95}
.c103-weather-mini .icon img{width:52px;height:52px;object-fit:contain;display:block}
.c103-weather-mini .right{text-align:right}
.c103-weather-mini .temp{font-weight:1000;font-size:28px;line-height:1}
.c103-weather-mini .desc{font-weight:900;font-size:12px;opacity:.9;text-transform:lowercase}

.c103-onair-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px;align-items:center;justify-content:center}
.c103-pill{
  display:inline-flex;align-items:center;justify-content:center;
  font-weight:1000;font-size:12px;
  background:rgba(255,255,255,.62);
  border:1px solid rgba(0,0,0,.08);
  padding:10px 12px;border-radius:999px;
  text-decoration:none;color:#111;
}
.c103-pill:hover{filter:brightness(1.03)}
.c103-mini-links-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:10px;
  text-align:center;
  font-size:12px;
}
.c103-mini-links-grid a{font-weight:1000;text-decoration:none}
.c103-mini-links-grid a:hover{text-decoration:underline}

.c103-grid{display:flex;gap:18px;align-items:flex-start;flex-wrap:wrap;margin-top:18px}
.c103-col-main{flex:1;min-width:280px}
.c103-col-side{width:380px;min-width:260px}
@media (max-width:900px){.c103-col-side{width:100%}}

.c103-card{
  background:#fff;border-radius:18px;padding:16px;margin-bottom:14px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 12px 26px rgba(0,0,0,.07)
}
.c103-card-head{display:flex;align-items:baseline;justify-content:space-between;gap:10px;margin-bottom:10px}
.c103-h2{margin:0;font-size:20px}
.c103-link{font-weight:1000;text-decoration:none}
.c103-link:hover{text-decoration:underline}

.c103-events{display:grid;gap:12px}
.c103-event{
  display:flex;gap:14px;align-items:center;
  padding:12px;border-radius:14px;
  border:1px solid rgba(0,0,0,.06);
  background:#fbfaf8;
}
.c103-date-pill{
  width:54px;min-width:54px;height:54px;border-radius:14px;
  background:#111;color:#fff;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  line-height:1.0;
}
.c103-date-pill .m{font-size:11px;letter-spacing:.08em;font-weight:900;opacity:.9}
.c103-date-pill .d{font-size:18px;font-weight:1000;margin-top:2px}
.c103-event-title{font-weight:1000}
.c103-event-meta{opacity:.75;font-size:13px;margin-top:2px}
.c103-submit-pill{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:999px;
  font-weight:1000;text-decoration:none;
  background:linear-gradient(180deg,#c79a4e,#a8742f);
  color:#111;
  border:1px solid rgba(0,0,0,.12);
}
.c103-submit-pill:hover{filter:brightness(1.03)}

.c103-site-footer{padding:30px 0;color:#111}
.c103-footer-inner{max-width:1100px;margin:0 auto;padding:0 18px;display:flex;gap:16px;align-items:center;justify-content:space-between}
.c103-footer-right a{text-decoration:none;font-weight:800;opacity:.9}
.c103-footer-right a:hover{text-decoration:underline}

body{padding-bottom:92px}
#c103-playerbar{
  position:fixed;bottom:0;left:0;right:0;z-index:9999;
  padding:12px 18px;
  background:linear-gradient(90deg,rgba(15,15,16,.92),rgba(30,22,16,.92),rgba(15,15,16,.92));
  color:#fff;
  border-top:1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.c103-pb-inner{
  max-width:1100px;margin:0 auto;
  display:flex;align-items:center;justify-content:center;
  gap:16px;flex-wrap:wrap;
}
.c103-pb-art{width:44px;height:44px;border-radius:12px;overflow:hidden;position:relative;flex:0 0 auto;border:1px solid rgba(255,255,255,.12)}
.c103-pb-art img{width:100%;height:100%;object-fit:cover;display:block}
.c103-eq{position:absolute;bottom:6px;left:6px;right:6px;height:16px;display:flex;gap:3px;align-items:flex-end;opacity:.9}
.c103-eq span{flex:1;height:20%;background:rgba(255,255,255,.85);border-radius:2px;transform-origin:bottom}
#c103-playerbar.is-live .c103-eq span{animation:eq 1s infinite ease-in-out}
#c103-playerbar.is-live .c103-eq span:nth-child(2){animation-delay:.1s}
#c103-playerbar.is-live .c103-eq span:nth-child(3){animation-delay:.2s}
#c103-playerbar.is-live .c103-eq span:nth-child(4){animation-delay:.3s}
@keyframes eq{
  0%,100%{transform:scaleY(.25)}
  50%{transform:scaleY(1)}
}

.c103-pb-title{font-weight:1000;letter-spacing:.04em;text-transform:uppercase;font-size:12px;opacity:.9}
.c103-pb-track{font-weight:900;font-size:13px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:420px}
.c103-pb-live{
  display:inline-flex;align-items:center;gap:8px;
  font-weight:1000;font-size:11px;letter-spacing:.14em;text-transform:uppercase;opacity:.9;
}
.c103-pb-live .dot{
  width:10px;height:10px;border-radius:999px;background:var(--c103-red);
  box-shadow:0 0 0 0 rgba(211,22,22,.5);
}
#c103-playerbar.is-live .c103-pb-live .dot{animation:c103pulse 1.6s infinite}

.c103-pb-controls{display:flex;align-items:center;gap:10px}
.c103-pb-btn{
  width:38px;height:38px;border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
  color:#fff;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  font-size:14px;
}
#c103-playerbar.is-live .c103-pb-btn[data-pb-play].is-playing{
  background:rgba(211,22,22,.9);
  box-shadow:0 0 0 0 rgba(211,22,22,.5);
  animation:c103glow 1.4s infinite;
}
.c103-pb-vol{width:130px}
.c103-pb-open{color:#fff;text-decoration:none;font-weight:900;font-size:12px;opacity:.9}
.c103-pb-open:hover{text-decoration:underline}

@media (max-width:700px){
  .c103-pb-track{max-width:260px}
  .c103-pb-vol{width:110px}
}
