:root{
  --bg: #ffffff;
  --ink: #231942;
  --accent: #6a1b9a;
  --accent-2: #d4af37;
  --muted: #6b6b6b;
  --blue: #1769ff;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  background:var(--bg);
  color:var(--ink);
  font-family:'Spectral', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji','Segoe UI Emoji';
  line-height:1.6;
}
.container{max-width:1100px;margin:0 auto;padding:0 20px}
.center{text-align:center}
a{color:var(--accent)}

.site-header{
  background: radial-gradient(1000px 300px at 10% 0%, #f7eefe 0, #ffffff 60%);
  border-bottom: 1px solid #eee;
}
.header-inner{display:flex;gap:24px;align-items:center;padding:28px 0}
.logo{width:88px;height:88px;border-radius:50%;border:3px solid var(--accent-2);object-fit:cover}
.brand{font-size:44px;letter-spacing:2px;margin:0;color:var(--accent)}
.tagline{margin:.25rem 0 1rem 0;font-weight:600;color:var(--ink)}
.nav{margin-left:auto;display:flex;gap:18px}
.nav a{text-decoration:none;font-weight:700}

.section{padding:56px 0} /* reduced main spacing (keep from v3-fixed4) */
.section-title{ text-align:center; font-size:32px; margin:0 0 24px 0; }
.script{font-family:'Charmonman', cursive; color: var(--accent-2)}

.grid-2{ display:grid; grid-template-columns: 1.1fr .9fr; gap:28px; align-items:center; }
.flyer{width:100%;border-radius:12px;box-shadow:var(--shadow)}
.details{list-style:none;padding:0;margin:16px 0 0 0}
.details li{margin:6px 0}

.card{ background:var(--card); border-radius:14px; box-shadow:var(--shadow); overflow:hidden; }
.card-body{ padding:14px 14px 16px 14px; }
.card h3{ margin:8px 0 6px; font-size:18px; }
.meta{ color:var(--muted); font-size:.9rem; }

.video-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:18px; }
.video-grid .video{ width:100%; aspect-ratio:16/9; border:0; display:block; }

.section .lead{ text-align:center; max-width:760px; margin:0 auto 18px; color:var(--muted);}

.site-footer{ border-top:1px solid #eee; padding:18px 0; background:#faf7ff; }
.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:12px}
.footer-nav{display:flex;gap:14px}
.footer-nav a{color:var(--accent);text-decoration:none}
.small{font-size:.9rem}
.muted{color:var(--muted)}

.streaming-grid{ display:grid; grid-template-columns: repeat(2, minmax(220px,1fr)); gap:16px; max-width:720px; margin:0 auto; }
.streaming-item{ display:flex; align-items:center; gap:12px; }
.streaming-item svg{ width:28px; height:28px; }

.views-small{ font-size:.85rem; color: var(--muted); }
.views-big{ font-size:.9rem; color: var(--blue); font-weight:700; }

@media (max-width: 1024px){
  .video-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px){
  .grid-2{ grid-template-columns:1fr; }
  .video-grid{ grid-template-columns: 1fr; }
  .brand{font-size:36px}
}


@media (max-width: 720px){
  .header-inner{ 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 12px;
  }
  .nav{
    margin-left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
  }
  .nav a{
    padding: 6px 0;
  }
}


/* Bold red for the three video section headings */
.video-section-title{
  color: #c40000;
  font-weight: 800;
}


/* Dropdown submenu for Videos (desktop hover, mobile inline) */
.dropdown{ position: relative; }
.dropdown .menu{
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 8px 10px;
  min-width: 220px;
  z-index: 50;
}
.dropdown .menu a{
  display: block;
  text-decoration: none;
  color: var(--ink);
  padding: 6px 4px;
  font-weight: 600;
}
.dropdown:hover .menu,
.dropdown:focus-within .menu{ display: block; }

@media (max-width: 720px){
  .dropdown .menu{
    position: static;
    border: 1px solid #eee;
    width: 100%;
    margin-top: 6px;
  }
}


/* --- Submenu visibility: force hidden by default, shown only on state/hover --- */
.nav .dropdown > .menu{ display:none !important; }
.nav .dropdown.open > .menu{ display:block !important; }

/* Desktop-only hover open; touch devices won't trigger :hover */
@media (hover: hover){
  .nav .dropdown:hover > .menu{ display:block !important; }
}

/* Mobile stacking: still hidden unless .open is present */
@media (max-width: 720px){
  .nav .dropdown > .menu{ display:none !important; }
  .nav .dropdown.open > .menu{ display:block !important; }
}


/* --- Submenu fix: hidden by default, shows on hover (desktop) or .open (click) --- */
.nav .dropdown{ position: relative; }
.nav .dropdown > .menu{
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  display: none !important;
  z-index: 9999 !important;
}
.nav .dropdown.open > .menu{ display: block !important; }

/* Desktop hover */
@media (hover: hover){
  .nav .dropdown:hover > .menu{ display: block !important; }
}

/* Mobile: keep absolute so it doesn't push layout up */
@media (max-width: 720px){
  .nav .dropdown > .menu{
    position: absolute !important;
    width: auto !important;
    min-width: 220px !important;
    margin-top: 6px !important;
  }
}


/* === Namespaced dropdown to avoid host CSS conflicts === */
.nav .vn-dropdown{ position: relative; }
.nav .vn-dropdown > .vn-menu{
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 8px 10px;
  min-width: 220px;
  z-index: 9999;
}
.nav .vn-dropdown.open > .vn-menu{ display: block; }

/* Desktop hover support */
@media (hover: hover){
  .nav .vn-dropdown:hover > .vn-menu{ display: block; }
}

/* Mobile stacking: keep absolute so it doesn't push layout */
@media (max-width: 720px){
  .nav .vn-dropdown{ width: 100%; }
  .nav .vn-dropdown > .vn-menu{
    position: absolute;
    width: auto;
    min-width: 220px;
    margin-top: 6px;
  }
}


/* --- Submenu robustness: stacking & interactions --- */
.site-header{ position: relative; z-index: 10000; }
.nav{ position: relative; overflow: visible; }
.nav .vn-dropdown{ position: relative; }
.nav .vn-dropdown > .vn-menu{
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 8px 12px;
  min-width: 240px;
  z-index: 10001;
  pointer-events: auto;
  white-space: nowrap;
}
.nav .vn-dropdown.open > .vn-menu{ display: block; }
@media (hover: hover){
  .nav .vn-dropdown:hover > .vn-menu{ display: block; }
}
@media (max-width: 720px){
  .nav{ align-items:center; overflow:visible; }
  .nav .vn-dropdown{ display:inline-flex; align-items:center; }
  .nav .vn-dropdown > .vn-menu{ top: calc(100% + 6px); }
}
.nav .vn-dropdown > .vn-menu a{
  display: block;
  padding: 4px 0;
  font-weight: 600;
  color: inherit;
}
.nav .vn-dropdown > .vn-menu a::before{
  content: "• ";
  margin-right: 6px;
}


/* Mobile: stack all top nav items vertically */
@media (max-width: 720px){
  .nav{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav > *{
    width: 100%;
  }
}
