
  a { text-decoration: none; color: inherit; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  input { font-family: inherit; }

 
  

  .hero {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: #e2000f;
    padding: 4.5rem 2.5rem;
    color: #fff;
    margin-bottom: 3rem;
    animation: entrance 0.6s cubic-bezier(0.19,1,0.22,1) both;
	margin-top:1.5rem;
  }
  .hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.20);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.625rem !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
  }
  .hero h1 {
    font-size: clamp(2rem, 2.2vw, 4.5rem) !important;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    max-width: 50rem;
    text-wrap: balance;
	 color: #fff !important;
	 margin: 0px 0px 0px 0px !important;
  }
  .hero p {
    color: rgba(255,255,255,0.80);
    font-size: 1.30rem !important;
    max-width: 36rem;
    text-wrap: pretty;
	margin: 0;
  }
  .hero::after {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 50%; height: 100%;
    background: linear-gradient(to left, #e2000f, transparent);
    opacity: 0.20;
    pointer-events: none;
  }

  .controls {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 2rem;
  }
  @media (min-width: 768px) { .controls { flex-direction: row; align-items: flex-end; } }
  .filter-group {
    display: flex;
    gap: 0.25rem;
    background: rgba(0,0,0,0.05);
    padding: 0.25rem;
    border-radius: 0.5rem;
  }
  .filter-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    transition: all 0.15s;    
    color: #666666;
  }
  .filter-btn:hover { color: #111111; }
  .filter-btn.active {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    color: #111111;
  }
  .count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666666;
  }
  .count-dot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; background: #e2000f; }

  .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem 3rem;
  }
  @media (min-width: 1024px) { .grid { grid-template-columns: 1fr 1fr; } }

  .card {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem 1rem;
    background: #ffffff;
    border-radius: 0.75rem;
    border: 1px solid rgba(0,0,0,0.05);
    transition: background 0.2s;
    animation: entrance 0.6s cubic-bezier(0.19,1,0.22,1) both;
  }
  .card:hover { background: rgba(0,0,0,0.015); }
  .card-title {
    font-size: 1.0rem;
    font-weight: 700;
    color: #111111;
    transition: color 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	border-bottom: 0rem !important;
  }
  .card-title:hover { color: #e2000f; }
  .card-desc {
    font-size: 1.20rem;
    color: #666666;
    margin-top: 0.125rem;
	font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .badge {
    font-family: "JetBrains Mono", ui-monospace, monospace;
    font-size: 0.6625rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.325rem 0.5rem;
    border-radius: 0.45rem;
    white-space: nowrap;
  }
  .badge-boxset { background: #e2000f; color: #fff; }
  .badge-show { border: 1px solid rgba(0,0,0,0.10); color: #666666; background: #fff;}
  .watch-link {
    font-size: 0.765rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #e2000f;
    white-space: nowrap;
	border-bottom: 0rem !important;
  }
  .card:hover .watch-link { text-decoration: underline; }

  .empty {
    text-align: center;
    color: #666666;
   
    padding: 3rem 0;
  }


  @media (min-width: 768px) { footer { flex-direction: row; justify-content: space-between; } }
 

  @keyframes entrance {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }