/* =============================================
   COMEDYAPEX — Main.css
   ============================================= */

/* === RESET & BASE === */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #e8f4fc;
  font-family: Arial, sans-serif;
}

/* Make sure all content sits above the overlay */
body > * {
  position: relative;
  z-index: 1;
}

a {
  text-decoration: none;
}

/* === HEADER === */
.site-header {
  background: linear-gradient(180deg, #4ec9f5 0%, #12a3e6 60%, #0e8ccc 100%);
  padding: 0;
  width: 100%;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 12px 4px 12px;
}

.header-top > a {
  display: block;
  width: 340px;
  flex-shrink: 0;
}

/* === LOGO / BANNER === */
.site-logo {
  width: 340px;
  max-width: 750px;
  height: auto;
  display: block;
}

/* Footer logo (full width) */
.footerheader {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

/* === SEARCH BAR === */
.Searchbarandbutton {
  display: flex;
  align-items: center;
  gap: 4px;
}

.searchbar {
  font-size: 16px;
  font-family: 'Times New Roman', serif;
  padding: 6px 10px;
  border-radius: 12px 0 0 12px;
  border: 2px solid #0a70aa;
  outline: none;
  width: 220px;
}

.searchbutton {
  font-size: 16px;
  font-family: Arial, sans-serif;
  font-style: italic;
  font-weight: bold;
  padding: 6px 16px;
  border-radius: 0 12px 12px 0;
  border: 2px solid #0a70aa;
  background-color: #0e8ccc;
  color: white;
  cursor: pointer;
  transition: opacity 0.15s;
}

.searchbutton:hover {
  opacity: 0.75;
}

.searchbutton:active {
  background-color: aqua;
  color: #000;
}

/* Sign In button next to search bar */
.signin-header-btn {
  font-size: 16px;
  font-family: Arial, sans-serif;
  font-style: italic;
  font-weight: bold;
  padding: 6px 14px;
  margin-left: 8px;
  border-radius: 8px;
  border: 2px solid #0a70aa;
  background-color: rgb(18, 163, 230);
  color: black;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.15s, background-color 0.15s;
  line-height: 1.3;
  text-align: center;
}

.signin-header-btn:hover {
  opacity: 0.8;
}

.signin-header-btn:active {
  background-color: aqua;
}

/* === NAVIGATION === */
.Navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  padding: 4px 8px 6px 8px;
  background: linear-gradient(180deg, #0e8ccc 0%, #0a70aa 100%);
}

.Navigation a {
  text-decoration: none;
}

.WebPageMainBar {
  background-color: rgb(18, 163, 230);
  padding: 10px 24px;
  border: 2px solid rgba(0,0,0,0.2);
  font-family: Arial, sans-serif;
  font-style: italic;
  font-size: 20px;
  font-weight: bold;
  border-radius: 18px;
  margin: 2px;
  color: black;
  cursor: pointer;
  transition: opacity 0.15s;
  white-space: nowrap;
}

.WebPageMainBar:hover {
  opacity: 0.75;
}

.WebPageMainBar:active {
  background-color: aqua;
}

/* === FEATURED SECTION === */

/* Stage background wrapper — only behind featured section */
.featured-stage-wrap {
  background-image: url('images/RedCurtain.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  opacity: 100%;
}

.featured-stage-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 40, 0.78);
  pointer-events: none;
  z-index: 0;
}

.featured-stage-wrap > * {
  position: relative;
  z-index: 1;
}

.FeaturedBox {
  margin: 18px auto 18px auto;
  border: 6px solid red;
  border-radius: 6px;
  width: fit-content;
  max-width: 720px;
  font-weight: normal;
  padding: 0;
  background: rgba(10, 22, 40, 0.75);
  box-shadow: 0 8px 40px rgba(0,0,0,0.45), 0 0 0 2px rgba(255,80,80,0.3);
  overflow: hidden;
  position: relative;
}

/* Subtle red glow on top edge */
.FeaturedBox::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, red, transparent);
  z-index: 2;
}

.featured-header-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px 10px;
  background: linear-gradient(90deg, rgba(255,0,0,0.08), rgba(255,0,0,0.18), rgba(255,0,0,0.08));
  border-bottom: 2px solid rgba(255, 50, 50, 0.3);
}

.featured-star {
  font-size: 22px;
  filter: drop-shadow(0 0 6px gold);
}

.FeaturedFont {
  margin: 0;
  font-size: 30pt;
  font-style: italic;
  font-weight: bold;
  font-family: Arial, sans-serif;
  text-align: center;
  color: white;
  text-shadow: 0 0 20px rgba(255,100,100,0.6), 0 2px 4px rgba(0,0,0,0.8);
  letter-spacing: 2px;
}

.featured-video-wrap {
  position: relative;
  padding: 10px 10px 0 10px;
  background: #000;
}

.FeaturedVideo {
  width: 680px;
  height: 382px;
  display: block;
  border: none;
  border-radius: 2px;
}

.featured-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.07));
  border-top: 2px solid rgba(255,255,255,0.08);
}

.featuredescription {
  font-size: 20px;
  margin: 0;
  font-family: Arial, sans-serif;
  font-style: italic;
  font-weight: bold;
  color: white;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  flex: 1;
}

.featured-more-btn {
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: bold;
  color: black;
  background: rgb(18, 163, 230);
  border: 2px solid #0a70aa;
  border-radius: 14px;
  padding: 6px 16px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s, background 0.15s;
  flex-shrink: 0;
}

.featured-more-btn:hover  { opacity: 0.8; }
.featured-more-btn:active { background: aqua; }

/* === CATEGORY BUTTONS === */
.category-section {
  padding: 8px 8px 0 8px;
}

.category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #e8f4fc;
  padding: 6px 0;
}

.category {
  background-color: rgb(18, 163, 230);
  padding: 10px 30px;
  border: 2px solid rgba(0,0,0,0.15);
  font-family: Arial, sans-serif;
  font-style: italic;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  color: black;
  cursor: pointer;
  transition: opacity 0.15s, background-color 0.15s;
}

.category:hover {
  opacity: 0.75;
}

.category.active,
.category:active {
  background-color: aqua;
  border-color: #0a70aa;
}

/* === TABLES === */
.data-table {
  display: none;
  border: 10px solid rgb(45, 2, 235);
  background-color: rgba(73, 69, 72, 0.281);
  width: 98vw;
  border-collapse: collapse;
}

.data-table.active {
  display: table;
}

.indextable {
  border-collapse: collapse;
  width: 98vw;
}

.indextabletoprow {
  font-size: 36px;
  font-family: Arial, sans-serif;
  font-style: italic;
  color: rgb(60, 60, 60);
  padding: 8px 12px;
  border-bottom: 3px solid rgb(45, 2, 235);
}

.indextabletoprow:hover {
  text-decoration: underline;
  opacity: 0.7;
  cursor: pointer;
}

.indextableth {
  text-align: center;
  color: rgb(0, 0, 0);
  font-size: 24px;
  padding: 8px;
  border: 1px solid rgba(0,0,0,0.15);
}

/* Highlight artist column on hover */
td:nth-child(2):hover {
  cursor: pointer;
  opacity: 0.7;
  color: rgb(18, 163, 230);
}

.indextablevideo {
  width: 25vw;
  height: 35vh;
  border: 10px solid transparent;
  padding: 10px;
}

.link {
  text-align: center;
  padding: 8px;
}

.indexyoutubelink {
  color: rgb(205, 32, 31);
  font-size: 18px;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

.indexyoutubelink:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.empty-category {
  text-align: center;
  padding: 32px;
  font-size: 22px;
  font-style: italic;
  color: #555;
}

/* Stats cell — views / likes / comments / score */
.stats-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  font-size: 16px;
  line-height: 1.5;
}

.score-badge {
  background: rgb(18, 163, 230);
  color: white;
  font-weight: bold;
  border-radius: 8px;
  padding: 2px 10px;
  font-size: 15px;
  margin-top: 2px;
}

.rank-badge {
  background: red;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  padding: 2px 10px;
  font-size: 15px;
  margin-bottom: 2px;
}

/* Loading / error state */
.loading-state {
  text-align: center;
  padding: 48px 24px;
  font-size: 24px;
  font-style: italic;
  font-family: Arial, sans-serif;
  color: #444;
}

.loading-state.error {
  color: #c0392b;
}

/* === FOOTER === */
.footer {
  background: linear-gradient(180deg, #0e8ccc 0%, #0a70aa 100%);
  margin-top: 24px;
  padding: 16px 0 8px 0;
  position: relative;
  min-height: 80px;
}

.footer-inner {
  position: relative;
  text-align: center;
}

.arrbottom {
  font-size: 16px;
  font-family: Arial, sans-serif;
  font-style: italic;
  color: white;
  margin: 4px 0 0 0;
}

.cpbottom {
  font-size: 16px;
  font-family: Arial, sans-serif;
  font-style: italic;
  color: white;
  margin: 2px 0 8px 0;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1200px) {
  .searchbar,
  .searchbutton {
    display: none;
  }

  .WebPageMainBar {
    font-size: 16px;
    padding: 5px 15px;
  }

  .FeaturedVideo {
    width: 100%;
    height: 50vw;
  }

  .FeaturedBox {
    width: 95vw;
    max-width: 95vw;
  }

  .featured-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 947px) {
  .WebPageMainBar {
    font-size: 12px;
  }

  .indextabletoprow {
    font-size: 22px;
  }

  .indextableth {
    font-size: 16px;
  }

  .indextablevideo {
    width: 35vw;
    height: 25vw;
  }
}

@media (max-width: 600px) {
  .header-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-logo {
    max-width: 100%;
  }

  .Navigation {
    justify-content: center;
  }

  .WebPageMainBar {
    font-size: 10px;
    padding: 5px 10px;
    border-radius: 10px;
  }

  .category {
    font-size: 13px;
    padding: 8px 14px;
  }

  .FeaturedFont {
    font-size: 28pt;
  }

  .featuredescription {
    font-size: 20px;
  }

  .indextablevideo {
    width: 50vw;
    height: 30vw;
  }
}

@media (max-width: 400px) {
  .WebPageMainBar {
    font-size: 8px;
    padding: 4px 12px;
  }

  body {
    margin: 0;
  }
}

/* =============================================
   HOME PAGE — CARD TABLE  (ca-* namespace)
   ============================================= */

.ca-table-wrap {
  margin: 0 0 32px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  background: #fff;
  border: 2px solid #0a70aa;
}

.ca-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

/* Column widths */
.ca-th-rank  { width: 66px; }
.ca-th-thumb { width: 200px; }
.ca-th-info  { width: auto; }
.ca-th-stats { width: 160px; }
.ca-th-history { width: 100px; }
.ca-th-link  { width: 110px; }

/* Header row */
.ca-th {
  background: linear-gradient(180deg, #12a3e6 0%, #0a70aa 100%);
  color: #fff;
  font-family: Arial, sans-serif;
  font-style: italic;
  font-weight: bold;
  font-size: 17px;
  padding: 11px 10px;
  text-align: center;
  letter-spacing: 0.3px;
  border-bottom: 3px solid #0a70aa;
}

.ca-th-info { text-align: left; padding-left: 16px; }

/* Body rows */
.ca-row {
  border-bottom: 1px solid #d6ecf8;
  transition: background 0.15s;
  cursor: pointer;
}

.ca-row:last-child { border-bottom: none; }

.ca-row:nth-child(even) { background: #f0f8ff; }
.ca-row:nth-child(odd)  { background: #fff; }

.ca-row:hover { background: #ddf0fc !important; }

.ca-cell {
  padding: 10px 8px;
  vertical-align: middle;
  text-align: center;
}

/* ── Rank column ──────────────────────────── */
.ca-rank-cell { width: 66px; }

.ca-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 17px;
  background: #e0eef8;
  color: #444;
  border: 2px solid #c0d8ea;
}

.ca-rank.gold   { background: #ffd700; color: #5a4200; border-color: #c8a800; }
.ca-rank.silver { background: #d8d8d8; color: #3a3a3a; border-color: #aaa; }
.ca-rank.bronze { background: #cd7f32; color: #fff;    border-color: #9e5f20; }

.ca-move {
  display: block;
  margin-top: 4px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 11px;
  line-height: 1;
}

.ca-move-up   { color: #1fa055; }
.ca-move-down { color: #d3382c; }
.ca-move-same { color: #999; }
.ca-move-new  {
  color: #fff;
  background: #12a3e6;
  border-radius: 8px;
  padding: 2px 6px;
  font-style: italic;
}

/* ── Thumbnail column ─────────────────────── */
.ca-thumb-cell { padding: 8px; width: 200px; }

.ca-thumb-wrap {
  position: relative;
  width: 160px;
  height: 90px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  transition: transform 0.15s, box-shadow 0.15s;
}

.ca-thumb-wrap:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}

.ca-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.92;
  transition: opacity 0.15s;
}

.ca-thumb-wrap:hover .ca-thumb { opacity: 0.75; }

.ca-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 0 10px rgba(0,0,0,0.7);
  opacity: 0;
  transition: opacity 0.15s;
  pointer-events: none;
}

.ca-thumb-wrap:hover .ca-play-icon { opacity: 1; }

.ca-new-ribbon {
  position: absolute;
  top: 6px;
  left: -6px;
  background: linear-gradient(135deg, #ff5f5f, #d3382c);
  color: #fff;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 3px 10px 3px 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  z-index: 2;
}

/* ── Info column ──────────────────────────── */
.ca-info-cell { text-align: left; padding-left: 16px; }

.ca-title {
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 17px;
  color: #1a1a2e;
  margin-bottom: 4px;
  line-height: 1.3;
}

.ca-artist {
  font-family: Arial, sans-serif;
  font-style: italic;
  font-size: 14px;
  color: #0a70aa;
}

.ca-meta {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #888;
  margin-top: 3px;
}

/* ── Stats column ─────────────────────────── */
.ca-stats-cell { font-family: Arial, sans-serif; }

.ca-history-cell {
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 15px;
  color: #0a70aa;
}

.ca-stat {
  font-size: 13px;
  color: #444;
  line-height: 1.7;
  white-space: nowrap;
}

.ca-stat-icon { margin-right: 2px; }

.ca-score {
  display: inline-block;
  margin-top: 4px;
  background: linear-gradient(135deg, #12a3e6, #0a70aa);
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  border-radius: 8px;
  padding: 2px 9px;
  white-space: nowrap;
}

/* ── Watch button ─────────────────────────── */
.ca-link-cell { padding: 8px 10px; }

.ca-yt-btn {
  display: inline-block;
  background: #e62117;
  color: #fff;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-style: italic;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
  box-shadow: 0 2px 6px rgba(200,0,0,0.25);
}

.ca-yt-btn:hover  { background: #c0170e; transform: scale(1.05); }
.ca-yt-btn:active { background: #9e0f08; }

/* ── View-all footer bar ──────────────────── */
.ca-view-all-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: linear-gradient(90deg, #e8f4fc, #d6ecf8);
  border-top: 2px solid #b0d8f0;
}

.ca-showing-label {
  font-family: Arial, sans-serif;
  font-style: italic;
  font-size: 14px;
  color: #555;
}

.ca-view-all-btn {
  background: linear-gradient(135deg, #12a3e6, #0a70aa);
  color: #fff;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-style: italic;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
  box-shadow: 0 2px 8px rgba(10,112,170,0.3);
}

.ca-view-all-btn:hover  { opacity: 0.85; transform: scale(1.03); }
.ca-view-all-btn:active { opacity: 0.7; }

.ca-view-all-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ca-toggle-btn {
  background: #fff;
  color: #0a70aa;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-style: italic;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 20px;
  border: 2px solid #0a70aa;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}

.ca-toggle-btn:hover  { background: #eaf6fd; transform: scale(1.03); }
.ca-toggle-btn:active { background: #d6ecf8; }

/* ── Empty state ──────────────────────────── */
.ca-empty {
  text-align: center;
  padding: 48px 24px;
  font-size: 20px;
  font-style: italic;
  font-family: Arial, sans-serif;
  color: #666;
  background: #fff;
  border-radius: 12px;
  border: 2px solid #b0d8f0;
  margin-bottom: 24px;
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 900px) {
  .ca-th-stats, .ca-stats-cell { display: none; }
  .ca-th-history, .ca-history-cell { display: none; }
  .ca-th-thumb { width: 140px; }
  .ca-thumb-wrap { width: 120px; height: 68px; }
}

@media (max-width: 600px) {
  .ca-th-rank, .ca-rank-cell { display: none; }
  .ca-th-thumb { width: 110px; }
  .ca-thumb-wrap { width: 90px; height: 52px; }
  .ca-title  { font-size: 14px; }
  .ca-artist { font-size: 12px; }
  .ca-yt-btn { font-size: 12px; padding: 6px 10px; }
  .ca-view-all-bar { flex-direction: column; gap: 8px; text-align: center; }
  .ca-view-all-actions { flex-direction: column; gap: 8px; }
}

/* =============================================
   LIGHTBOX MODAL  (ca-modal-* namespace)
   ============================================= */

/* Prevent body scroll when modal is open */
body.ca-no-scroll { overflow: hidden; }

/* Backdrop */
.ca-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.82);
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: ca-fade-in 0.18s ease;
}

.ca-modal-overlay.ca-modal-open {
  display: flex;
}

@keyframes ca-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Modal box */
.ca-modal-box {
  background: #0d1b2a;
  border-radius: 12px;
  box-shadow: 0 12px 60px rgba(0,0,0,0.7), 0 0 0 2px rgba(18,163,230,0.4);
  width: 100%;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: ca-slide-up 0.2s ease;
}

@keyframes ca-slide-up {
  from { transform: translateY(24px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* Header bar */
.ca-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: linear-gradient(90deg, #0e8ccc, #0a70aa);
  gap: 12px;
}

.ca-modal-title {
  font-family: Arial, sans-serif;
  font-style: italic;
  font-weight: bold;
  font-size: 17px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.ca-modal-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  line-height: 1;
}

.ca-modal-close:hover  { background: rgba(255,255,255,0.3); }
.ca-modal-close:active { background: rgba(255,255,255,0.5); }

/* Video area — 16:9 */
.ca-modal-video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: #000;
}

.ca-modal-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Footer bar */
.ca-modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 16px;
  background: #0d1b2a;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.ca-modal-yt-btn {
  background: #e62117;
  color: #fff;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-style: italic;
  font-size: 14px;
  padding: 7px 18px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  box-shadow: 0 2px 8px rgba(200,0,0,0.3);
}

.ca-modal-yt-btn:hover  { background: #c0170e; transform: scale(1.04); }
.ca-modal-yt-btn:active { background: #9e0f08; }

/* Row cursor hint */
.ca-play-hint {
  font-family: Arial, sans-serif;
  font-size: 11px;
  color: #0a70aa;
  font-style: italic;
  margin-top: 4px;
  opacity: 0.8;
}

/* ── Responsive modal ─────────────────────── */
@media (max-width: 600px) {
  .ca-modal-box { border-radius: 8px; }
  .ca-modal-title { font-size: 14px; }
}

/* =============================================
   FOOTER SOCIAL LINKS
   ============================================= */

.footer-social {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 10px 0 6px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: transform 0.15s, opacity 0.15s, box-shadow 0.15s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    opacity: 0.92;
}

.social-x  { background: #000; }
.social-fb { background: #1877f2; }
.social-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.social-tt { background: #010101; }
