/* CreativeConor reference-matched presentation layer */
:root {
  --cc-primary: #6366f1;
  --cc-primary-rgb: 99, 102, 241;
  --cc-secondary: #a855f7;
  --cc-secondary-rgb: 168, 85, 247;
  --cc-pink: #ec4899;
  --cc-emerald: #10b981;
  --cc-cyan: #0ea5e9;
  --cc-bg: #020617;
  --cc-surface: #0f172a;
  --cc-card: #111827;
  --cc-card-hover: #1e293b;
  --cc-text: #f1f5f9;
  --cc-text-secondary: #94a3b8;
  --cc-muted: #64748b;
  --cc-border: rgba(255, 255, 255, 0.08);
  --cc-border-hover: rgba(255, 255, 255, 0.15);
  --cc-gradient: linear-gradient(135deg, var(--cc-primary), var(--cc-secondary));
  --cc-radius-sm: 6px;
  --cc-radius-md: 10px;
  --cc-radius-lg: 16px;
  --cc-radius-xl: 24px;
  --cc-container: 1600px;

  /* Keep the existing detail page aligned with the reference palette. */
  --bg: var(--cc-bg);
  --bg-2: var(--cc-surface);
  --card: var(--cc-card);
  --card-2: var(--cc-card-hover);
  --border: var(--cc-border);
  --text: var(--cc-text);
  --muted: var(--cc-muted);
  --purple: var(--cc-primary);
  --cyan: var(--cc-cyan);
  --green: var(--cc-emerald);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  zoom: 0.86;
  overflow-x: hidden;
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
}

html[data-theme="light"] {
  --cc-bg: #f1f5f9;
  --cc-surface: #ffffff;
  --cc-card: #ffffff;
  --cc-card-hover: #e2e8f0;
  --cc-text: #0f172a;
  --cc-text-secondary: #334155;
  --cc-muted: #64748b;
  --cc-border: rgba(15, 23, 42, 0.09);
  --cc-border-hover: rgba(15, 23, 42, 0.17);
}

.cc-site {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 9%, rgba(var(--cc-primary-rgb), 0.12), transparent 27%),
    radial-gradient(circle at 90% 78%, rgba(var(--cc-secondary-rgb), 0.08), transparent 28%),
    var(--cc-bg);
  background-attachment: fixed;
  color: var(--cc-text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
}

.cc-site *, .cc-site *::before, .cc-site *::after { box-sizing: border-box; }
.cc-site a { color: inherit; text-decoration: none; }
.cc-site button, .cc-site input, .cc-site select { font: inherit; }

.cc-container {
  position: relative;
  width: 100%;
  max-width: var(--cc-container);
  margin-inline: auto;
  padding-inline: 24px;
}

.cc-scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 5000;
  height: 4px;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.cc-scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(90deg, var(--cc-primary), var(--cc-secondary), var(--cc-primary));
  background-size: 200% 100%;
  box-shadow: 0 0 14px var(--cc-primary), 0 0 3px #fff;
  animation: ccProgressShimmer 3s linear infinite;
}
@keyframes ccProgressShimmer { to { background-position: -200% 0; } }

/* Header */
.cc-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  border: 0;
  backdrop-filter: blur(8px);
  transition: background .35s ease, box-shadow .35s ease;
}
.cc-header.scrolled {
  background: rgba(2, 6, 23, 0.82);
  backdrop-filter: blur(16px) saturate(180%);
}
html[data-theme="light"] .cc-header.scrolled { background: rgba(241, 245, 249, 0.88); }
.cc-header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  transition: min-height .35s ease;
}
.cc-header.scrolled .cc-header-inner { min-height: 64px; }
.cc-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  max-width: 250px;
}
.cc-logo img { display: block; width: auto; max-width: 100%; max-height: 48px; object-fit: contain; }
.cc-logo-light { display: none !important; }
html[data-theme="light"] .cc-logo-dark { display: none !important; }
html[data-theme="light"] .cc-logo-light { display: block !important; }
.cc-main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: auto;
  white-space: nowrap;
}
.cc-main-nav a {
  padding: 8px 13px;
  border-radius: 10px;
  color: var(--cc-text);
  font-size: .9rem;
  font-weight: 600;
  opacity: .86;
  transition: background .2s ease, opacity .2s ease, color .2s ease;
}
.cc-main-nav a:hover, .cc-main-nav a.active {
  opacity: 1;
  background: rgba(var(--cc-primary-rgb), .12);
}
.cc-header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; flex: 0 0 auto; }
.cc-header-icon, .cc-dice-button {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cc-border);
  border-radius: 12px;
  background: var(--cc-card);
  color: var(--cc-text-secondary);
  cursor: pointer;
  transition: transform .2s ease, color .2s ease, border-color .2s ease, background .2s ease;
}
.cc-header-icon svg { width: 20px; height: 20px; }
.cc-header-icon:hover { transform: translateY(-3px); color: var(--cc-primary); border-color: var(--cc-primary); background: rgba(var(--cc-primary-rgb), .1); }
.cc-dice-button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  font-size: 23px;
  background: var(--cc-gradient);
  box-shadow: 0 0 20px rgba(var(--cc-primary-rgb), .45);
}
.cc-dice-button:hover { transform: translateY(-3px) rotate(10deg); }
.cc-community-button {
  height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 19px;
  border-radius: 999px;
  background: var(--cc-gradient);
  color: #fff;
  font-size: .83rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow: 0 6px 20px rgba(var(--cc-primary-rgb), .3);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cc-community-button svg { width: 20px; height: 20px; }
.cc-community-button:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(var(--cc-primary-rgb), .42); }
.cc-language { padding: 6px; }
.cc-language img { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; }
.cc-mobile-menu-button { display: none; flex-direction: column; gap: 4px; padding: 8px; border: 0; background: transparent; }
.cc-mobile-menu-button span { display: block; width: 20px; height: 2px; border-radius: 2px; background: currentColor; }

/* Mobile navigation drawer */
.cc-mobile-nav { position: fixed; inset: 0; z-index: 3000; visibility: hidden; pointer-events: none; }
.cc-mobile-nav.open { visibility: visible; pointer-events: auto; }
.cc-mobile-nav-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(0, 0, 0, .68); opacity: 0; backdrop-filter: blur(5px); transition: opacity .3s ease; }
.cc-mobile-nav.open .cc-mobile-nav-backdrop { opacity: 1; }
.cc-mobile-nav-panel {
  position: relative;
  width: min(85vw, 340px);
  height: 100%;
  padding-bottom: 20px;
  overflow-y: auto;
  background: #081020;
  border-right: 1px solid var(--cc-border);
  box-shadow: 30px 0 80px rgba(0, 0, 0, .5);
  transform: translateX(-105%);
  transition: transform .34s cubic-bezier(.16, 1, .3, 1);
}
.cc-mobile-nav.open .cc-mobile-nav-panel { transform: translateX(0); }
.cc-mobile-nav-head { height: 76px; display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--cc-border); }
.cc-mobile-nav-head .cc-logo { max-width: 180px; }
.cc-mobile-nav-head button { width: 36px; height: 36px; border: 0; border-radius: 10px; background: rgba(255, 255, 255, .05); color: #fff; font-size: 26px; }
.cc-mobile-links { display: grid; padding: 12px; }
.cc-mobile-links a { min-height: 54px; display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 12px; padding: 7px 10px; border-radius: 12px; color: #cbd5e1; font-weight: 650; }
.cc-mobile-links a:hover { background: rgba(255, 255, 255, .04); }
.cc-mobile-links i { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px; background: color-mix(in srgb, var(--icon) 14%, transparent); color: var(--icon); font-style: normal; font-size: 19px; }
.cc-mobile-links b { opacity: .22; font-size: 20px; }
.cc-mobile-nav-panel > p { margin: 18px; color: var(--cc-muted); font-size: .72rem; text-align: center; }

/* Desktop hero */
.cc-hero-section { padding: 20px 0 10px; }
.cc-hero-slider { position: relative; overflow: hidden; aspect-ratio: 2.2; border-radius: 20px; background: var(--cc-bg); }
.cc-hero-slider::after { content: ""; position: absolute; inset: 0; z-index: 4; pointer-events: none; box-shadow: inset -40px -40px 60px rgba(2, 6, 23, .5); }
.cc-hero-slide { position: absolute; inset: 0; display: flex; align-items: flex-end; opacity: 0; pointer-events: none; transition: opacity 1s cubic-bezier(.4, 0, .2, 1); }
.cc-hero-slide.active { position: relative; z-index: 2; height: 100%; opacity: 1; pointer-events: auto; }
.cc-hero-background { position: absolute; inset: 0; overflow: hidden; border-radius: 20px; }
.cc-hero-background img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(.95); transform: scale(1.01); }
.cc-hero-background span { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2, 6, 23, .1), rgba(2, 6, 23, .88)); }
.cc-hero-content { position: relative; z-index: 3; width: 55%; max-width: 820px; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; padding: 0 50px 80px; }
.cc-hero-pin { display: inline-flex; align-items: center; gap: 7px; width: fit-content; padding: 5px 14px; border: 1px solid rgba(14, 165, 233, .4); border-radius: 999px; background: rgba(14, 165, 233, .15); color: #38bdf8; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; backdrop-filter: blur(8px); }
.cc-hero-pin i { width: 6px; height: 6px; border-radius: 50%; background: var(--cc-cyan); animation: ccPinPulse 2s ease-in-out infinite; }
@keyframes ccPinPulse { 50% { opacity: .5; transform: scale(1.45); } }
.cc-hero-logo { width: auto; max-width: 280px; max-height: 118px; margin-bottom: 7px; object-fit: contain; object-position: left center; filter: drop-shadow(0 4px 20px rgba(0, 0, 0, .5)); }
.cc-hero-content h1 { margin: 0 0 7px; color: #fff; font-size: clamp(2.3rem, 4vw, 3.8rem); font-weight: 900; line-height: 1.05; text-shadow: 0 4px 25px rgba(0, 0, 0, .65); }
.cc-hero-tags { display: flex; gap: 8px; }
.cc-hero-tags span { padding: 3px 10px; border-radius: 4px; background: var(--cc-emerald); color: #fff; font-size: .72rem; font-weight: 750; text-transform: uppercase; }
.cc-hero-content > p { max-width: 540px; margin: 0; color: rgba(255, 255, 255, .75); font-size: .9rem; line-height: 1.6; }
.cc-hero-buttons { display: flex; align-items: center; gap: 12px; margin-top: 6px; }
.cc-hero-button { display: inline-flex; align-items: center; gap: 9px; padding: 12px 24px; border-radius: 8px; color: #fff !important; font-size: .88rem; font-weight: 750; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.cc-hero-button.primary { background: var(--cc-cyan); }
.cc-hero-button.primary:hover { transform: translateY(-2px); background: #0284c7; box-shadow: 0 6px 20px rgba(14, 165, 233, .4); }
.cc-hero-button.ghost { border: 1px solid rgba(255, 255, 255, .2); background: transparent; }
.cc-hero-button.ghost:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .4); }
.cc-hero-timeline { width: 220px; height: 3px; margin-top: 8px; overflow: hidden; border-radius: 3px; background: rgba(255, 255, 255, .15); }
.cc-hero-timeline i { display: block; width: 0; height: 100%; border-radius: inherit; background: var(--cc-cyan); }
.cc-hero-slide.active .cc-hero-timeline i { animation: ccTimeline 5s linear forwards; }
@keyframes ccTimeline { to { width: 100%; } }
.cc-hero-slide.active .cc-hero-pin { animation: ccFadeDown .5s .12s both; }
.cc-hero-slide.active .cc-hero-logo, .cc-hero-slide.active h1 { animation: ccSlideLeft .7s .22s both; }
.cc-hero-slide.active .cc-hero-tags { animation: ccSlideLeft .6s .36s both; }
.cc-hero-slide.active .cc-hero-content > p { animation: ccSlideUp .6s .48s both; }
.cc-hero-slide.active .cc-hero-buttons { animation: ccSlideUp .6s .62s both; }
@keyframes ccFadeDown { from { opacity: 0; transform: translateY(-15px); } }
@keyframes ccSlideLeft { from { opacity: 0; transform: translateX(-50px); } }
@keyframes ccSlideUp { from { opacity: 0; transform: translateY(28px); } }
.cc-hero-dots { position: absolute; z-index: 10; left: 50%; bottom: 24px; display: flex; align-items: center; gap: 8px; transform: translateX(-50%); }
.cc-hero-dots button { width: 10px; height: 10px; padding: 0; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .3); cursor: pointer; transition: width .25s ease, background .25s ease; }
.cc-hero-dots button.active { width: 28px; border-radius: 5px; background: var(--cc-cyan); }

/* Neon action strip */
.cc-cta-section { padding: 8px 0 18px; }
.cc-cta-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }
.cc-cta { width: 160px; height: 54px; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 8px 14px; border-radius: 12px; color: #fff !important; transition: transform .22s ease, filter .22s ease, box-shadow .22s ease; }
.cc-cta:hover { transform: translateY(-4px) scale(1.025); filter: brightness(1.08); }
.cc-cta i { width: 28px; height: 28px; display: grid; place-items: center; font-size: 17px; font-style: normal; font-weight: 800; }
.cc-cta span { display: grid; line-height: 1.08; }
.cc-cta small { font-size: .57rem; font-weight: 550; opacity: .82; }
.cc-cta strong { font-size: .88rem; font-weight: 800; }
.cc-cta.discord { background: #5865f2; box-shadow: 0 0 22px rgba(88, 101, 242, .58); }
.cc-cta.donate { background: #00a400; box-shadow: 0 0 22px rgba(0, 164, 0, .52); }
.cc-cta.console { background: #0197db; box-shadow: 0 0 22px rgba(1, 151, 219, .52); }
.cc-cta.instagram { background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7); box-shadow: 0 0 22px rgba(238, 42, 123, .52); }

/* Homepage category feeds */
.cc-home-games { padding: 8px 0 48px; }
.cc-games-head { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.cc-games-head h2 { margin: 0; color: var(--cc-text); font-size: 1.45rem; font-weight: 850; letter-spacing: -.02em; }
.cc-feed-tabs { display: flex; gap: 8px; margin-left: auto; }
.cc-feed-tabs button { padding: 8px 20px; border: 1px solid var(--cc-border); border-radius: 999px; background: var(--cc-card); color: var(--cc-muted); font-size: .85rem; font-weight: 700; cursor: pointer; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.cc-feed-tabs button:hover { color: var(--cc-text); border-color: var(--cc-primary); }
.cc-feed-tabs button.active { border-color: transparent; background: var(--cc-gradient); color: #fff; }
.cc-filter-button { display: none; padding: 9px 16px; border: 1px solid var(--cc-border); border-radius: 10px; background: var(--cc-card); color: var(--cc-text); font-size: .85rem; font-weight: 700; }
.cc-feed-panel { display: none; }
.cc-feed-panel.active { display: block; }
.cc-group-title { position: relative; margin: 18px 0 18px; padding-left: 20px; color: var(--cc-text-secondary); font-size: .95rem; font-weight: 850; text-transform: uppercase; letter-spacing: .035em; }
.cc-group-title::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; border-radius: 4px; background: linear-gradient(180deg, var(--cc-primary), var(--cc-secondary)); }
.cc-group-title.recent { margin-top: 40px; }
.cc-products-grid { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 14px; }
.cc-product-card { position: relative; display: block; min-width: 0; overflow: hidden; border: 1px solid var(--cc-border); border-radius: var(--cc-radius-lg); background: var(--cc-card); transition: transform .3s cubic-bezier(.4, 0, .2, 1), border-color .3s ease, box-shadow .3s ease; }
.cc-product-card:hover { z-index: 2; transform: translateY(-8px); border-color: var(--cc-primary); box-shadow: 0 20px 40px rgba(0, 0, 0, .4), 0 0 20px rgba(var(--cc-primary-rgb), .12); }
.cc-card-image-wrap { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: #0a0a0f; }
.cc-card-image-wrap > img { width: 100%; height: 100%; object-fit: contain; transition: transform .8s cubic-bezier(.2, .8, .2, 1), filter .35s ease; }
.cc-product-card:hover .cc-card-image-wrap > img { transform: scale(1.1) rotate(1deg); filter: blur(2px) brightness(.7); }
.cc-card-badge, .cc-card-version { position: absolute; top: 15px; z-index: 7; max-width: 72px; overflow: hidden; padding: 4px 8px; border-radius: 8px; color: #fff; font-size: .65rem; font-weight: 750; white-space: nowrap; text-overflow: ellipsis; opacity: 0; transform: translateY(-20px); transition: opacity .35s ease, transform .4s cubic-bezier(.175, .885, .32, 1.275); backdrop-filter: blur(10px); }
.cc-card-badge { left: 15px; border: 1px solid rgba(255, 255, 255, .2); background: rgba(255, 255, 255, .15); }
.cc-card-version { right: 15px; background: var(--cc-emerald); box-shadow: 0 4px 15px rgba(16, 185, 129, .3); }
.cc-product-card:hover .cc-card-badge, .cc-product-card:hover .cc-card-version { opacity: 1; transform: translateY(0); }
.cc-card-overlay { position: absolute; inset: 0; z-index: 5; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .2) 40%, rgba(0, 0, 0, .86)); opacity: 0; transition: opacity .35s ease; }
.cc-product-card:hover .cc-card-overlay { opacity: 1; }
.cc-card-center-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 15px; border: 1.5px solid rgba(255, 255, 255, .4); border-radius: 50%; background: rgba(255, 255, 255, .1); color: #fff; opacity: 0; transform: scale(.5); transition: opacity .35s ease .05s, transform .4s cubic-bezier(.34, 1.56, .64, 1) .05s; backdrop-filter: blur(5px); }
.cc-card-center-icon svg { width: 24px; height: 24px; }
.cc-product-card:hover .cc-card-center-icon { opacity: 1; transform: scale(1); }
.cc-card-details { position: absolute; inset: auto 0 0; display: grid; gap: 5px; padding: 12px; opacity: 0; transform: translateY(30px); transition: opacity .35s ease .12s, transform .35s ease .12s; }
.cc-product-card:hover .cc-card-details { opacity: 1; transform: translateY(0); }
.cc-card-title { overflow: hidden; color: #fff; font-size: .9rem; font-weight: 750; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; text-shadow: 0 2px 10px rgba(0, 0, 0, .55); }
.cc-card-meta { display: flex; gap: 10px; color: rgba(255, 255, 255, .8); font-size: .72rem; font-weight: 550; }

/* Daily featured card */
.cc-daily-section { padding: 22px 0 34px; border-top: 1px solid rgba(255, 255, 255, .025); }
.cc-daily-card { position: relative; isolation: isolate; min-height: 330px; display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 30px; overflow: hidden; padding: 30px; border: 1px solid var(--cc-border); border-radius: 24px; background: rgba(15, 23, 42, .68); box-shadow: 0 16px 50px rgba(0, 0, 0, .22); }
.cc-daily-card::before { content: ""; position: absolute; inset: 0; z-index: -2; background-image: linear-gradient(90deg, rgba(2, 6, 23, .94), rgba(2, 6, 23, .78)), var(--daily-image); background-position: center; background-size: cover; filter: blur(1px); opacity: .5; }
.cc-daily-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(135deg, rgba(var(--cc-primary-rgb), .08), transparent 48%, rgba(var(--cc-secondary-rgb), .06)); }
.cc-daily-cover { overflow: hidden; border-radius: 12px; box-shadow: 0 16px 30px rgba(0, 0, 0, .35); }
.cc-daily-cover img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.cc-daily-info { align-self: center; display: flex; flex-direction: column; align-items: flex-start; gap: 13px; min-width: 0; }
.cc-daily-badge { display: inline-flex; width: fit-content; padding: 6px 16px; border-radius: 999px; background: linear-gradient(135deg, #ff9f43, #ff5252); color: #fff; font-size: .72rem; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; box-shadow: 0 0 20px rgba(255, 82, 82, .35); }
.cc-daily-info h2 { margin: 0; color: var(--cc-text); font-size: 2rem; font-weight: 850; letter-spacing: -.03em; line-height: 1.1; }
.cc-daily-rating, .cc-daily-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; color: var(--cc-text-secondary); font-size: .79rem; font-weight: 600; }
.cc-daily-rating strong { color: var(--cc-text); }
.cc-daily-rating .stars { color: #fbbf24; letter-spacing: 2px; }
.cc-daily-meta span { color: var(--cc-text); }
.cc-daily-info > p { max-width: 980px; margin: 0; color: var(--cc-text-secondary); font-size: .88rem; line-height: 1.65; }
.cc-daily-genres { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: var(--cc-muted); font-size: .75rem; }
.cc-daily-genres span { padding: 7px 14px; border: 1px solid rgba(var(--cc-primary-rgb), .28); border-radius: 7px; background: rgba(var(--cc-primary-rgb), .12); color: #a5b4fc; font-weight: 650; }
.cc-daily-genres span:nth-of-type(2n) { border-color: rgba(14, 165, 233, .25); background: rgba(14, 165, 233, .1); color: #7dd3fc; }
.cc-daily-genres span:nth-of-type(3n) { border-color: rgba(16, 185, 129, .25); background: rgba(16, 185, 129, .1); color: #6ee7b7; }
.cc-premium-button { display: inline-flex; align-items: center; gap: 12px; margin-top: 5px; padding: 11px 20px; border-radius: 10px; background: var(--cc-gradient); color: #fff !important; box-shadow: 0 9px 24px rgba(var(--cc-primary-rgb), .32); transition: transform .2s ease, box-shadow .2s ease; }
.cc-premium-button:hover { transform: translateY(-3px); box-shadow: 0 13px 30px rgba(var(--cc-primary-rgb), .42); }
.cc-premium-button > span { display: grid; line-height: 1.1; }
.cc-premium-button strong { font-size: .85rem; }
.cc-premium-button small { font-size: .55rem; opacity: .8; }

/* Curated collections */
.cc-collections { padding: 0 0 52px; }
.cc-section-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.cc-section-heading h2 { margin: 0; color: var(--cc-text); font-size: 1.35rem; font-weight: 820; }
.cc-section-heading a { color: #a5b4fc; font-size: .82rem; font-weight: 700; }
.cc-collections-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.cc-collection-card { overflow: hidden; border: 1px solid var(--cc-border); border-radius: 20px; background: var(--cc-card); transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease; }
.cc-collection-card:hover { transform: translateY(-8px); border-color: rgba(var(--cc-primary-rgb), .45); box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .5), 0 0 35px rgba(var(--cc-primary-rgb), .1); }
.cc-collection-preview { display: flex; width: 100%; aspect-ratio: 16 / 10; gap: 2px; overflow: hidden; background: var(--cc-surface); }
.cc-collection-preview > span { flex: 1; min-width: 0; overflow: hidden; transition: flex .4s ease, opacity .4s ease; }
.cc-collection-preview img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; filter: brightness(.9); transition: transform .4s ease, filter .4s ease; }
.cc-collection-preview > span:hover { flex: 2.2; }
.cc-collection-preview:hover > span:not(:hover) { opacity: .55; }
.cc-collection-preview > span:hover img { transform: scale(1.04); filter: brightness(1.08); }
.cc-collection-info { display: grid; gap: 5px; padding: 16px 20px; }
.cc-collection-info strong { color: var(--cc-text); font-size: 1rem; font-weight: 800; }
.cc-collection-info small { color: var(--cc-muted); font-size: .78rem; font-weight: 600; }

/* Library/listing */
.cc-page-shell { min-height: 60vh; padding: 28px 0 70px; }
.cc-page-breadcrumb { display: flex; align-items: center; gap: 9px; margin: 0 0 24px; color: var(--cc-muted); font-size: .75rem; }
.cc-page-breadcrumb a { color: var(--cc-muted); }
.cc-page-breadcrumb a:hover { color: #818cf8; }
.cc-page-breadcrumb strong { color: var(--cc-text-secondary); }
.cc-library-intro { margin: 20px auto 30px; text-align: center; }
.cc-library-intro h1 { margin: 0 0 10px; color: var(--cc-text); font-size: 2.45rem; font-weight: 850; letter-spacing: -.035em; }
.cc-library-intro p { margin: 0; color: var(--cc-text-secondary); font-size: 1rem; }
.cc-library-about, .cc-library-search { width: min(760px, 100%); margin-inline: auto; border: 1px solid var(--cc-border); border-radius: 14px; background: rgba(15, 23, 42, .34); }
.cc-library-about { margin-bottom: 34px; }
.cc-library-about summary { display: flex; align-items: center; gap: 11px; padding: 18px 22px; color: var(--cc-text-secondary); font-size: .84rem; font-weight: 750; cursor: pointer; list-style: none; }
.cc-library-about summary::-webkit-details-marker { display: none; }
.cc-library-about summary span { color: #818cf8; }
.cc-library-about summary b { margin-left: auto; color: var(--cc-muted); }
.cc-library-about > p { margin: 0; padding: 0 22px 20px; color: var(--cc-muted); font-size: .82rem; line-height: 1.7; }
.cc-library-search { margin-bottom: 28px; padding: 18px 22px; }
.cc-library-search label { height: 42px; display: flex; align-items: center; gap: 11px; padding: 0 15px; border: 1px solid var(--cc-border); border-radius: 8px; background: var(--cc-surface); color: var(--cc-muted); }
.cc-library-search input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--cc-text); font: inherit; font-size: .82rem; }
.cc-library-quick { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 31px; }
.cc-library-quick a { padding: 10px 21px; border: 1px solid var(--cc-border); border-radius: 999px; color: var(--cc-text-secondary); background: var(--cc-card); font-size: .76rem; font-weight: 760; }
.cc-library-quick a.popular { border-color: rgba(16,185,129,.36); }
.cc-library-quick a.latest { border-color: rgba(168,85,247,.42); }
.cc-library-quick a.year { border-color: rgba(245,158,11,.42); }
.cc-library-quick a.active { color: #fff; border-color: transparent; background: linear-gradient(135deg, #6366f1, #c026d3); box-shadow: 0 0 22px rgba(168,85,247,.28); }
.cc-letter-filter { width: min(650px, 100%); margin: 0 auto; text-align: center; }
.cc-letter-filter > strong { display: block; margin-bottom: 17px; color: var(--cc-text-secondary); font-size: .8rem; }
.cc-letter-filter nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.cc-letter-filter a { min-width: 35px; height: 35px; display: grid; place-items: center; padding: 0 9px; border: 1px solid var(--cc-border); border-radius: 8px; background: var(--cc-card); color: var(--cc-muted); font-size: .72rem; font-weight: 750; }
.cc-letter-filter a.active { border-color: transparent; background: #38bdf8; color: #fff; box-shadow: 0 0 18px rgba(56,189,248,.38); }
.cc-random-library { width: fit-content; display: flex; align-items: center; gap: 12px; margin: 34px auto 52px; padding: 16px 30px; border-radius: 14px; color: #fff; background: linear-gradient(110deg, #0ea5e9, #a855f7); box-shadow: 0 10px 30px rgba(99,102,241,.28); font-size: .88rem; font-weight: 800; }
.cc-library-resultbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 36px; padding-bottom: 20px; border-bottom: 1px solid var(--cc-border); }
.cc-library-resultbar > strong { color: var(--cc-text-secondary); font-size: .86rem; }
.cc-library-resultbar select { min-width: 145px; padding: 10px 13px; border: 1px solid var(--cc-border); border-radius: 8px; outline: 0; background: var(--cc-surface); color: var(--cc-text); }
.cc-library-grid { margin-bottom: 30px; }
.cc-related { padding: 30px 0 60px; }

/* Product detail */
.cc-detail-shell { padding-top: 1px; padding-bottom: 42px; }
.cc-detail-shell .cc-page-breadcrumb { margin-bottom: 16px; }
.cc-product-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 48px;
  min-height: 481px;
  overflow: hidden;
  margin: 0 -12px 34px;
  padding: 0 12px 24px;
}
.cc-product-backdrop { position: absolute; z-index: -2; inset: 0 -12px 0 245px; overflow: hidden; pointer-events: none; -webkit-mask-image: radial-gradient(ellipse at 52% 43%, #000 0%, transparent 75%); mask-image: radial-gradient(ellipse at 52% 43%, #000 0%, transparent 75%); }
.cc-product-backdrop::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 52% 42%, transparent 10%, rgba(2,6,23,.7) 62%, var(--cc-bg) 94%), linear-gradient(90deg, var(--cc-bg), transparent 22%, transparent 72%, var(--cc-bg)), linear-gradient(0deg, var(--cc-bg), transparent 34%); }
.cc-product-backdrop img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .37; filter: brightness(.58) contrast(1.15) saturate(.9); }
.cc-product-cover-column { z-index: 1; width: 280px; display: flex; flex-direction: column; gap: 16px; }
.cc-product-cover { width: 280px; height: 405px; overflow: hidden; border: 1px solid var(--cc-border); border-radius: 14px; background: var(--cc-surface); box-shadow: 0 28px 60px rgba(0,0,0,.5); transition: transform .35s ease, box-shadow .35s ease; }
.cc-product-cover:hover { transform: translateY(-3px); box-shadow: 0 32px 70px rgba(0,0,0,.58); }
.cc-product-cover img { display: block; width: 100%; height: 100%; object-fit: cover; }
.cc-product-trailer { min-height: 60px; display: flex; align-items: center; justify-content: center; gap: 13px; padding: 9px 16px; border: 1px solid var(--cc-border-hover); border-radius: 13px; color: var(--cc-text); background: #2b3546; box-shadow: 0 15px 28px rgba(0,0,0,.24); transition: transform .2s ease, background .2s ease; }
.cc-product-trailer:hover { transform: translateY(-2px); background: #364154; }
.cc-product-trailer > span:first-child { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 9px; color: #fff; background: #626d7f; }
.cc-product-trailer svg { width: 22px; height: 22px; }
.cc-product-trailer > span:last-child { display: grid; min-width: 0; line-height: 1.15; }
.cc-product-trailer strong { font-size: .92rem; }
.cc-product-trailer small { margin-top: 3px; color: #cbd5e1; font-size: .68rem; }
.cc-product-summary { position: relative; align-self: stretch; min-width: 0; min-height: 481px; display: flex; flex-direction: column; align-items: flex-start; padding: 22px 0 0; }
.cc-product-summary > small { margin-bottom: 9px; color: var(--cc-muted); font-size: .94rem; }
.cc-product-summary h1 { max-width: calc(100% - 230px); margin: 0 0 22px; color: var(--cc-text); font-size: 2.9rem; font-weight: 850; line-height: 1.08; letter-spacing: -.04em; }
.cc-product-rating { max-width: calc(100% - 230px); display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; margin-bottom: 23px; color: var(--cc-text-secondary); font-size: .94rem; }
.cc-product-rating strong { color: var(--cc-text); font-size: .95rem; }
.cc-product-rating .stars, .cc-reviews-panel article > b { display: inline-flex; color: #fbbf24; font-size: 1.05rem; letter-spacing: 3px; }
.cc-product-rating .stars .empty { color: #4b5563; }
.cc-product-discord { position: absolute; top: 76px; right: 0; min-width: 198px; height: 56px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; padding: 0 20px; border: 1px solid rgba(255,255,255,.14); border-radius: 10px; color: #fff; background: linear-gradient(135deg, #7180db, #6573c8); box-shadow: 0 12px 32px rgba(82,94,180,.28); font-size: .88rem; transition: transform .2s ease, filter .2s ease; }
.cc-product-discord:hover { transform: translateY(-2px); filter: brightness(1.08); }
.cc-product-discord svg { width: 25px; height: 25px; }
.cc-product-facts { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 27px; margin-bottom: 18px; color: var(--cc-text-secondary); font-size: .91rem; font-weight: 650; }
.cc-product-facts .primary { color: var(--cc-text); font-weight: 800; }
.cc-product-status { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 13px; }
.cc-product-status b, .cc-product-status em { min-height: 43px; display: inline-flex; align-items: center; gap: 8px; padding: 0 17px; border-radius: 9px; color: #fff; font-size: .82rem; font-style: normal; font-weight: 800; }
.cc-product-status b { background: linear-gradient(135deg, #63d388, #48bb78); box-shadow: 0 8px 22px rgba(72,187,120,.22); }
.cc-product-status em { border: 1px solid rgba(52,211,153,.28); color: #6ee7b7; background: rgba(16,185,129,.1); }
.cc-product-status i { width: 10px; height: 10px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 10px #4ade80; }
.cc-product-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 17px; }
.cc-product-actions > a, .cc-product-actions > span { min-width: 118px; height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 18px; border: 1px solid var(--cc-border-hover); border-radius: 10px; color: var(--cc-text-secondary); background: rgba(17,24,39,.88); font-size: .84rem; font-weight: 750; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.cc-product-actions > a:hover { color: var(--cc-text); border-color: rgba(var(--cc-primary-rgb),.48); background: var(--cc-card-hover); }
.cc-product-actions > span { min-width: 94px; }
.cc-product-actions svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cc-product-actions b { color: inherit; font-size: inherit; }
.cc-product-summary > p { max-width: 1040px; margin: 0; color: var(--cc-text-secondary); font-size: .97rem; line-height: 1.65; }
.cc-product-download { width: 186px; height: 70px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; margin-top: auto; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; color: #fff; background: linear-gradient(135deg, #ef3d59, #dc2946); box-shadow: 0 12px 32px rgba(225,43,73,.3); font-size: 1rem; transition: transform .2s ease, filter .2s ease, box-shadow .2s ease; }
.cc-product-download:hover { transform: translateY(-3px); filter: brightness(1.08); box-shadow: 0 17px 38px rgba(225,43,73,.42); }
.cc-product-download svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.cc-product-mobile-links { display: none; }
.cc-product-panel { padding: 30px 34px; border: 1px solid var(--cc-border); border-radius: 16px; background: #111827; box-shadow: 0 12px 30px rgba(0,0,0,.12); }
.cc-product-panel h2 { margin: 0 0 20px; padding-bottom: 20px; border-bottom: 1px solid var(--cc-border); color: var(--cc-text); font-size: 1.14rem; font-weight: 800; }
.cc-product-panel p { margin: 0; color: var(--cc-text-secondary); font-size: .94rem; line-height: 1.9; }
.cc-description-panel { margin-bottom: 28px; }
.cc-product-genres { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-top: 23px; }
.cc-product-genres small { margin-right: 4px; color: var(--cc-muted); }
.cc-product-genres span { padding: 8px 17px; border: 1px solid rgba(var(--cc-primary-rgb),.32); border-radius: 8px; color: #93c5fd; background: rgba(var(--cc-primary-rgb),.1); font-size: .75rem; font-weight: 700; }
.cc-product-genres span:nth-of-type(2n) { color: #c4b5fd; background: rgba(168,85,247,.1); }
.cc-product-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.cc-install-panel, .cc-requirements-panel { min-height: 590px; display: flex; flex-direction: column; overflow: hidden; }
.cc-detail-panel-head { display: flex; align-items: center; gap: 16px; margin-bottom: 25px; padding-bottom: 24px; border-bottom: 1px solid var(--cc-border); }
.cc-detail-panel-head > span { width: 44px; height: 44px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 11px; color: #60a5fa; background: rgba(59,130,246,.12); font-size: 1.1rem; }
.cc-requirements-panel .cc-detail-panel-head > span { color: #818cf8; background: rgba(99,102,241,.12); }
.cc-detail-panel-head h2 { margin: 0 0 4px; padding: 0; border: 0; font-size: 1.12rem; }
.cc-detail-panel-head small { display: block; color: #9ca3af; font-size: .78rem; }
.cc-install-steps { display: grid; gap: 20px; margin: 0 0 28px; padding: 0; list-style: none; }
.cc-install-steps li { display: grid; grid-template-columns: 38px minmax(0,1fr); align-items: center; gap: 15px; color: #d1d5db; font-size: .86rem; line-height: 1.55; }
.cc-install-steps b { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #3b82f6; box-shadow: 0 7px 18px rgba(59,130,246,.28); }
.cc-important-notes { margin: auto -16px -16px; padding: 22px 36px 30px; border-radius: 13px; background: rgba(255,255,255,.025); }
.cc-important-notes strong { display: block; margin-bottom: 4px; color: var(--cc-text); font-size: .88rem; }
.cc-important-notes small { color: var(--cc-muted); font-size: .72rem; }
.cc-important-notes ul { display: grid; gap: 8px; margin: 17px 0 0; padding-left: 18px; color: var(--cc-muted); font-size: .76rem; line-height: 1.55; }
.cc-requirements-notice { position: relative; margin: 0 0 16px; overflow: hidden; color: #e5e7eb; font-size: .7rem; font-weight: 800; letter-spacing: .05em; text-align: center; text-transform: uppercase; }
.cc-requirements-list { display: grid; margin: 0; }
.cc-requirements-list > div { min-width: 0; display: grid; grid-template-columns: minmax(100px,.55fr) minmax(0,1fr); align-items: center; gap: 20px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.055); }
.cc-requirements-list > div:last-child { border-bottom: 0; }
.cc-requirements-list dt { color: #9ca3af; font-size: .84rem; }
.cc-requirements-list dd { min-width: 0; margin: 0; color: #f9fafb; font-size: .84rem; font-weight: 650; text-align: right; overflow-wrap: anywhere; }
.cc-download-gate { min-height: 174px; display: flex; align-items: center; justify-content: center; gap: 62px; color: #7c3aed; font-size: 1.35rem; font-weight: 900; letter-spacing: 4px; }
.cc-download-gate > a { width: 223px; height: 64px; display: flex; align-items: center; justify-content: center; gap: 12px; border-radius: 13px; color: #fff; background: linear-gradient(135deg, #62d58a, #4fc77b); box-shadow: 0 12px 30px rgba(79,199,123,.28); letter-spacing: 0; transition: transform .2s ease, filter .2s ease; }
.cc-download-gate > a:hover { transform: translateY(-3px); filter: brightness(1.06); }
.cc-download-gate svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 2.25; stroke-linecap: round; stroke-linejoin: round; }
.cc-download-gate > a > span { display: grid; line-height: 1.05; }
.cc-download-gate > a strong { font-size: 1.05rem; }
.cc-download-gate > a small { margin-top: 5px; font-size: .63rem; opacity: .84; }
.cc-download-panel { margin-bottom: 28px; }
.cc-download-panel > p { margin: -7px 0 20px; }
.cc-download-panel .download-row { min-height: 76px; padding: 16px 18px; border-radius: 11px; background: rgba(15,23,42,.44); }
.cc-download-panel .download-row.unavailable { opacity: .72; }
.cc-download-panel .download-row > div { min-width: 0; }
.cc-download-panel .download-row strong, .cc-download-panel .download-row span { overflow-wrap: anywhere; }
.cc-download-panel .download-row .btn-primary { border: 0; border-radius: 10px; color: #fff; background: #10b981; }
.cc-reviews-panel article { display: grid; grid-template-columns: 44px minmax(0,1fr) auto; gap: 16px; padding: 20px 10px; border-bottom: 1px solid var(--cc-border); }
.cc-reviews-panel article > span { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--cc-gradient); font-size: .8rem; font-weight: 800; }
.cc-reviews-panel article > div { min-width: 0; display: grid; gap: 5px; }
.cc-reviews-panel article strong { color: var(--cc-text); font-size: .86rem; }
.cc-reviews-panel article small { color: var(--cc-muted); font-size: .7rem; }
.cc-reviews-panel article p { font-size: .82rem; }
.cc-reviews-panel article > b { font-size: .72rem; }
.cc-no-reviews { display: grid; gap: 8px; min-height: 140px; place-content: center; padding: 28px; color: var(--cc-muted); text-align: center; }
.cc-no-reviews strong { color: var(--cc-text); }
.cc-review-notice { margin: 0 0 20px; padding: 13px 16px; border: 1px solid rgba(248,113,113,.3); border-radius: 10px; color: #fecaca; background: rgba(127,29,29,.18); font-size: .82rem; }
.cc-review-notice.success { border-color: rgba(74,222,128,.3); color: #bbf7d0; background: rgba(20,83,45,.2); }
.cc-review-compose { margin-top: 20px; padding-top: 28px; border-top: 1px solid var(--cc-border); }
.cc-review-compose > div { margin-bottom: 22px; }
.cc-review-compose h3 { margin: 0 0 6px; color: var(--cc-text); font-size: 1.08rem; }
.cc-review-compose > div p { color: var(--cc-muted); font-size: .78rem; line-height: 1.5; }
.cc-review-compose form { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
.cc-review-compose fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.cc-review-compose legend, .cc-review-compose label > span { display: block; margin-bottom: 9px; color: var(--cc-text-secondary); font-size: .78rem; font-weight: 750; }
.cc-review-compose input[type="text"], .cc-review-compose textarea { width: 100%; border: 1px solid var(--cc-border-hover); border-radius: 10px; outline: 0; color: var(--cc-text); background: rgba(2,6,23,.48); font: inherit; font-size: .84rem; transition: border-color .2s ease, box-shadow .2s ease; }
.cc-review-compose input[type="text"] { height: 48px; padding: 0 15px; }
.cc-review-compose textarea { min-height: 128px; resize: vertical; padding: 13px 15px; line-height: 1.55; }
.cc-review-compose input[type="text"]:focus, .cc-review-compose textarea:focus { border-color: #6366f1; box-shadow: 0 0 0 3px rgba(99,102,241,.15); }
.cc-review-rating, .cc-review-comment { grid-column: 1 / -1; }
.cc-review-stars-input { width: fit-content; display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; }
.cc-review-stars-input input { position: absolute; opacity: 0; pointer-events: none; }
.cc-review-stars-input label { color: #475569; font-size: 1.8rem; line-height: 1; cursor: pointer; transition: color .15s ease, transform .15s ease; }
.cc-review-stars-input label:hover, .cc-review-stars-input label:hover ~ label, .cc-review-stars-input input:checked ~ label { color: #fbbf24; }
.cc-review-stars-input label:hover { transform: translateY(-2px) scale(1.08); }
.cc-review-stars-input input:focus-visible + label { outline: 2px solid #818cf8; outline-offset: 3px; }
.cc-review-compose button { width: fit-content; min-width: 145px; height: 48px; grid-column: 1 / -1; border: 0; border-radius: 10px; color: #fff; background: linear-gradient(135deg,#6366f1,#8b5cf6); box-shadow: 0 9px 24px rgba(99,102,241,.25); font: inherit; font-size: .82rem; font-weight: 800; cursor: pointer; }
.cc-review-compose button:hover { filter: brightness(1.08); transform: translateY(-1px); }
.cc-review-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* Footer */
.cc-footer { padding: 16px 0 36px; border-top: 1px solid var(--cc-border); background: var(--cc-surface); }
.cc-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.cc-footer-brand .cc-logo { max-width: 250px; }
.cc-footer-brand > p { max-width: 520px; margin: 16px 0 20px; color: var(--cc-muted); font-size: .85rem; line-height: 1.7; }
.cc-footer-brand > strong { display: block; margin-bottom: 12px; color: var(--cc-muted); font-size: .7rem; letter-spacing: .08em; }
.cc-social-row { display: flex; flex-wrap: wrap; gap: 9px; }
.cc-social-row a { padding: 8px 12px; border: 1px solid var(--cc-border); border-radius: 8px; background: rgba(255, 255, 255, .02); color: var(--cc-text-secondary); font-size: .72rem; font-weight: 650; transition: color .2s ease, border-color .2s ease, transform .2s ease; }
.cc-social-row a:hover { transform: translateY(-2px); color: #fff; border-color: var(--cc-primary); }
.cc-footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.cc-footer-grid h3 { margin: 0 0 7px; color: var(--cc-text); font-size: .95rem; font-weight: 750; }
.cc-footer-grid > div:not(:first-child) a { color: var(--cc-muted); font-size: .82rem; }
.cc-footer-grid > div:not(:first-child) a:hover { color: #818cf8; }
.cc-footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 28px; border-top: 1px solid var(--cc-border); }
.cc-footer-bottom p { margin: 0; color: var(--cc-muted); font-size: .8rem; }
.cc-footer-bottom > div { display: flex; align-items: center; gap: 8px; color: var(--cc-muted); font-size: .75rem; }
.cc-footer-bottom > div a { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--cc-border); border-radius: 8px; background: var(--cc-card); color: var(--cc-text-secondary); }

/* Search overlay */
.cc-search-overlay { position: fixed; inset: 0; z-index: 4000; display: flex; align-items: flex-start; justify-content: center; padding-top: 120px; visibility: hidden; opacity: 0; transition: opacity .2s ease, visibility .2s ease; }
.cc-search-overlay.open { visibility: visible; opacity: 1; }
.cc-search-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(0, 0, 0, .72); backdrop-filter: blur(8px); }
.cc-search-box { position: relative; width: min(90%, 640px); overflow: hidden; border: 1px solid var(--cc-border); border-radius: 16px; background: var(--cc-surface); box-shadow: 0 20px 60px rgba(0, 0, 0, .48); transform: translateY(-18px); transition: transform .25s ease; }
.cc-search-overlay.open .cc-search-box { transform: translateY(0); }
.cc-search-input-row { display: flex; align-items: center; gap: 13px; padding: 16px 22px; border-bottom: 1px solid var(--cc-border); }
.cc-search-input-row svg { width: 21px; color: #818cf8; }
.cc-search-input-row input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--cc-text); font-size: 1.05rem; }
.cc-search-input-row kbd { padding: 3px 7px; border-radius: 5px; background: var(--cc-card-hover); color: var(--cc-muted); font-size: .68rem; }
.cc-search-popular { padding: 16px 22px; border-bottom: 1px solid var(--cc-border); background: rgba(var(--cc-primary-rgb), .03); }
.cc-search-popular > strong { display: block; margin-bottom: 11px; color: #a78bfa; font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; }
.cc-search-popular > div { display: flex; flex-wrap: wrap; gap: 8px; }
.cc-search-popular button { padding: 6px 14px; border: 1px solid var(--cc-border); border-radius: 999px; background: rgba(255, 255, 255, .04); color: var(--cc-text-secondary); font-size: .73rem; font-weight: 650; cursor: pointer; }
.cc-search-popular button:hover { border-color: var(--cc-primary); background: var(--cc-primary); color: #fff; }
.cc-search-results { max-height: 400px; overflow-y: auto; padding: 8px; }
.cc-search-result { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 13px; padding: 10px 12px; border-radius: 10px; }
.cc-search-result:hover { background: var(--cc-card-hover); }
.cc-search-result img { width: 48px; height: 48px; border-radius: 7px; object-fit: cover; }
.cc-search-result span { display: grid; }
.cc-search-result strong { color: var(--cc-text); font-size: .84rem; }
.cc-search-result small { color: var(--cc-muted); font-size: .7rem; }
.cc-search-result b { color: #818cf8; font-size: 18px; }
.cc-search-empty { padding: 32px; color: var(--cc-muted); text-align: center; font-size: .84rem; }

/* Mobile install prompt */
.cc-install-banner { display: none; }
.cc-install-banner > img {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  box-shadow: 0 8px 24px rgba(var(--cc-primary-rgb), .42);
}
.cc-install-copy { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.cc-install-copy strong { color: #fff; font-size: .96rem; line-height: 1.15; }
.cc-install-copy small { color: #94a3b8; font-size: .69rem; line-height: 1.35; }
.cc-install-action {
  min-width: 118px;
  height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  box-shadow: 0 7px 18px rgba(var(--cc-primary-rgb), .34);
  font: inherit;
  font-size: .78rem;
  font-weight: 800;
  cursor: pointer;
}
.cc-install-action span { font-size: 17px; line-height: 1; }
.cc-install-close {
  position: absolute;
  top: 5px;
  right: 7px;
  width: 24px;
  height: 24px;
  border: 0;
  color: #64748b;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
}

html[data-theme="light"] .cc-daily-card { background: rgba(255, 255, 255, .82); }
html[data-theme="light"] .cc-daily-card::before { background-image: linear-gradient(90deg, rgba(241, 245, 249, .96), rgba(241, 245, 249, .82)), var(--daily-image); }
html[data-theme="light"] .cc-library-toolbar { background: rgba(255, 255, 255, .72); }
html[data-theme="light"] .cc-library-about, html[data-theme="light"] .cc-library-search { background: rgba(255, 255, 255, .72); }
html[data-theme="light"] .cc-product-backdrop::after { background: radial-gradient(ellipse at 52% 42%, transparent 10%, rgba(241,245,249,.64) 62%, var(--cc-bg) 94%), linear-gradient(90deg, var(--cc-bg), transparent 22%, transparent 72%, var(--cc-bg)), linear-gradient(0deg, var(--cc-bg), transparent 34%); }
html[data-theme="light"] .cc-product-backdrop img { opacity: .24; filter: brightness(.9) contrast(1.05) saturate(.8); }
html[data-theme="light"] .cc-product-panel { background: #fff; }
html[data-theme="light"] .cc-product-actions > a, html[data-theme="light"] .cc-product-actions > span { background: rgba(255,255,255,.86); }
html[data-theme="light"] .cc-product-trailer { color: #f8fafc; }
html[data-theme="light"] .cc-important-notes { background: rgba(15,23,42,.035); }
html[data-theme="light"] .cc-requirements-list > div { border-color: rgba(15,23,42,.08); }
html[data-theme="light"] .cc-requirements-list dd, html[data-theme="light"] .cc-requirements-notice { color: #1e293b; }

@media (min-width: 1680px) {
  .cc-products-grid { grid-template-columns: repeat(9, minmax(0, 1fr)); }
}

@media (max-width: 1400px) {
  .cc-container { max-width: 1400px; }
  .cc-main-nav a { padding-inline: 10px; font-size: .84rem; }
}

@media (max-width: 1210px) and (min-width: 992px) {
  .cc-main-nav a:nth-child(4), .cc-main-nav a:nth-child(5), .cc-main-nav a:nth-child(6), .cc-main-nav a:nth-child(8), .cc-main-nav a:nth-child(9) { display: none; }
  .cc-products-grid { grid-template-columns: repeat(7, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  .cc-products-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .cc-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cc-daily-card { grid-template-columns: 230px minmax(0, 1fr); }
  .cc-product-hero { grid-template-columns: 235px minmax(0, 1fr); gap: 30px; min-height: 420px; }
  .cc-product-cover-column, .cc-product-cover { width: 235px; }
  .cc-product-cover { height: 340px; }
  .cc-product-summary { min-height: 420px; padding-top: 8px; }
  .cc-product-summary h1, .cc-product-rating { max-width: 100%; }
  .cc-product-summary h1 { font-size: 2.45rem; }
  .cc-product-discord { position: static; min-width: 170px; height: 48px; margin-bottom: 16px; }
  .cc-product-download { height: 62px; }
}

@media (max-width: 991px) {
  .cc-header-inner { min-height: 70px; gap: 8px; }
  .cc-main-nav { display: none; }
  .cc-mobile-menu-button { display: inline-flex; }
  .cc-desktop-only { display: none !important; }
  .cc-logo { max-width: 180px; margin-right: auto; }
  .cc-logo img { max-height: 34px; }
  .cc-header-actions { gap: 8px; margin-left: 0; }
  .cc-community-button { width: 44px; padding: 0; justify-content: center; border-radius: 14px; }
  .cc-community-button span { display: none; }
  .cc-products-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .cc-collections-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
}

@media (max-width: 768px) {
  html { zoom: .86; }
  .cc-container { padding-inline: 15px; }
  .cc-header-inner > .cc-logo { margin-left: 14px; }
  .cc-header-inner > .cc-logo img { max-height: 32px; }
  .cc-hero-section { display: none; }
  .cc-cta-section { padding: 10px 0 17px; }
  .cc-cta-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .cc-cta { width: 100%; height: 50px; justify-content: flex-start; padding-inline: 17px; }
  .cc-home-games { padding-top: 0; }
  .cc-games-head { min-height: 92px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 12px; }
  .cc-games-head h2 { font-size: 1.35rem; }
  .cc-filter-button { display: inline-flex; align-items: center; gap: 9px; }
  .cc-feed-tabs { display: none; width: 100%; margin: 0; padding: 10px; border: 1px solid var(--cc-border); border-radius: 12px; background: var(--cc-surface); }
  .cc-feed-tabs.open { display: flex; }
  .cc-feed-tabs button { flex: 1; padding-inline: 10px; }
  .cc-group-title { margin-top: 10px; margin-bottom: 17px; }
  .cc-group-title.recent { margin-top: 34px; }
  .cc-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .cc-card-badge, .cc-card-version, .cc-card-overlay { display: none; }
  .cc-product-card:hover { transform: none; border-color: var(--cc-border); box-shadow: none; }
  .cc-product-card:hover .cc-card-image-wrap > img { transform: none; filter: none; }
  .cc-daily-section { padding-top: 10px; }
  .cc-daily-card { grid-template-columns: 1fr; gap: 20px; padding: 20px 16px; text-align: center; }
  .cc-daily-cover { width: min(230px, 70vw); margin: auto; }
  .cc-daily-info { align-items: center; }
  .cc-daily-rating, .cc-daily-meta, .cc-daily-genres { justify-content: center; }
  .cc-daily-info h2 { font-size: 1.65rem; }
  .cc-collections { padding-bottom: 36px; }
  .cc-footer { padding-top: 24px; }
  .cc-footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cc-footer-bottom { align-items: flex-start; flex-direction: column; }
  .cc-footer-bottom > div { flex-wrap: wrap; }
  .cc-page-shell { padding-top: 34px; }
  .cc-library-intro h1 { font-size: 2rem; }
  .cc-library-resultbar { align-items: stretch; flex-direction: column; }
  .cc-library-resultbar form, .cc-library-resultbar select { width: 100%; }
  .cc-search-overlay { padding-top: 82px; }
  .cc-detail-shell .cc-page-breadcrumb { margin-bottom: 20px; overflow: hidden; white-space: nowrap; }
  .cc-detail-shell .cc-page-breadcrumb strong { overflow: hidden; text-overflow: ellipsis; }
  .cc-product-hero { grid-template-columns: minmax(0,1fr); gap: 22px; min-height: 0; margin-inline: 0; padding: 0 0 28px; overflow: visible; }
  .cc-product-backdrop { inset: 160px 0 0; -webkit-mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 72%, transparent); mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 72%, transparent); }
  .cc-product-cover-column { width: 159px; margin-inline: auto; }
  .cc-product-cover { width: 159px; height: 242px; margin: 0 auto; border-radius: 13px; }
  .cc-product-trailer-desktop { display: none; }
  .cc-product-summary { width: 100%; min-height: 0; align-items: center; padding: 0; text-align: center; }
  .cc-product-summary > small { display: none; }
  .cc-product-summary h1 { max-width: 360px; margin-bottom: 17px; font-size: 2.1rem; line-height: 1.07; text-transform: uppercase; overflow-wrap: anywhere; }
  .cc-product-rating { width: 100%; max-width: none; display: flex; flex-direction: column; justify-content: center; gap: 7px; margin-bottom: 13px; padding: 15px 12px; border: 1px solid var(--cc-border); border-radius: 13px; background: rgba(15,23,42,.72); font-size: .83rem; }
  .cc-product-rating .stars { justify-content: center; font-size: 1.05rem; }
  .cc-product-facts { width: 100%; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0; margin-bottom: 14px; overflow: hidden; border: 1px solid var(--cc-border); border-radius: 13px; background: rgba(15,23,42,.72); font-size: .78rem; }
  .cc-product-facts span { min-width: 0; padding: 12px 8px; border-right: 1px solid var(--cc-border); border-bottom: 1px solid var(--cc-border); overflow-wrap: anywhere; }
  .cc-product-facts span:nth-child(2n) { border-right: 0; }
  .cc-product-facts span:nth-last-child(-n+2) { border-bottom: 0; }
  .cc-product-status { justify-content: center; margin-bottom: 13px; }
  .cc-product-status b, .cc-product-status em { min-height: 39px; padding-inline: 13px; font-size: .75rem; }
  .cc-product-actions { width: 100%; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; margin-bottom: 13px; }
  .cc-product-actions > a, .cc-product-actions > span { width: 100%; min-width: 0; height: 48px; padding: 0 10px; font-size: .78rem; }
  .cc-product-discord { position: static; width: 100%; min-width: 0; height: 54px; margin: 0 0 15px; border-radius: 12px; }
  .cc-product-summary > p { width: 100%; font-size: .86rem; line-height: 1.65; }
  .cc-product-download { width: min(320px,100%); height: 62px; margin-top: 18px; }
  .cc-product-mobile-links { width: 100%; display: grid; gap: 10px; margin-top: 16px; }
  .cc-product-mobile-links a { width: 100%; min-height: 54px; display: flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid var(--cc-border-hover); border-radius: 12px; color: #fff; background: #2b3546; }
  .cc-product-mobile-links a:first-child { border-color: transparent; background: linear-gradient(135deg,#62d58a,#4fc77b); box-shadow: 0 10px 24px rgba(79,199,123,.22); }
  .cc-product-mobile-links svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
  .cc-product-mobile-links a:last-child svg { fill: currentColor; stroke: none; }
  .cc-product-columns { grid-template-columns: 1fr; }
  .cc-product-panel { padding: 20px 18px; }
  .cc-install-panel, .cc-requirements-panel { min-height: 0; }
  .cc-important-notes { margin-inline: 0; padding-inline: 20px; }
  .cc-download-gate { display: none; }
  .cc-review-compose form { grid-template-columns: 1fr; }
  .cc-review-rating, .cc-review-comment { grid-column: auto; }
  .cc-review-compose button { width: 100%; grid-column: auto; }
  html[data-theme="light"] .cc-product-rating, html[data-theme="light"] .cc-product-facts { background: rgba(255,255,255,.82); }
  .cc-install-banner.is-visible {
    position: fixed;
    z-index: 2500;
    left: 20px;
    right: 20px;
    bottom: 18px;
    display: grid;
    grid-template-columns: 58px minmax(150px, 1fr) auto;
    align-items: center;
    gap: 13px;
    min-height: 84px;
    padding: 12px 34px 12px 13px;
    border: 1px solid rgba(148, 163, 184, .18);
    border-radius: 16px;
    background: rgba(15, 23, 42, .97);
    box-shadow: 0 18px 54px rgba(0, 0, 0, .55), 0 0 26px rgba(var(--cc-primary-rgb), .14);
    backdrop-filter: blur(18px);
    animation: ccInstallIn .38s cubic-bezier(.2,.85,.3,1) both;
  }
}

@keyframes ccInstallIn {
  from { opacity: 0; transform: translateY(24px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 576px) {
  .cc-collections-grid { grid-template-columns: 1fr; gap: 12px; }
  .cc-section-heading h2 { font-size: 1.1rem; }
  .cc-library-quick { flex-wrap: wrap; }
  .cc-letter-filter a { min-width: 32px; height: 32px; }
  .cc-random-library { width: 100%; justify-content: center; padding-inline: 16px; }
  .cc-download-panel .download-row { align-items: stretch; flex-direction: column; }
  .cc-download-panel .download-row .btn { width: 100%; justify-content: center; }
  .cc-reviews-panel article { grid-template-columns: 40px minmax(0,1fr); }
  .cc-reviews-panel article > b { grid-column: 2; }
  .cc-requirements-list > div { grid-template-columns: minmax(80px,.42fr) minmax(0,1fr); gap: 12px; }
}

@media (max-width: 420px) {
  .cc-header-actions { gap: 6px; }
  .cc-header-icon { width: 32px; height: 32px; border-radius: 10px; }
  .cc-header-icon svg { width: 16px; height: 16px; }
  .cc-community-button { width: 36px; height: 36px; }
  .cc-community-button svg { width: 18px; height: 18px; }
  .cc-logo { max-width: 145px; }
  .cc-logo img { max-height: 29px; }
  .cc-cta { height: 48px; padding-inline: 12px; }
  .cc-cta strong { font-size: .82rem; }
  .cc-install-banner.is-visible { left: 14px; right: 14px; gap: 10px; grid-template-columns: 52px minmax(145px, 1fr) auto; }
  .cc-install-banner > img { width: 52px; height: 52px; border-radius: 15px; }
  .cc-install-action { min-width: 108px; padding-inline: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
