html {
	font-size: 14px;
	background: #000;
}

*, *::before, *::after {
	box-sizing: border-box;
}

body {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	margin: 0;
	line-height: 1.5;
}

#ttv-home {
  --cardW: 16rem;
  --gap: 1rem;
  --radius: 0.5rem;
  --line: rgba(0, 0, 0, 0.15);
  --bg: #ffffff;
  --fg: #000000;
}

.ttv-header {
	/*padding: var(--gap);*/
	background: #000;
}

.ttv-shell {
  max-width: 70rem;
  margin: 0 auto;
  /*padding: 1rem;*/
}

.ttv-top{
  display: grid;
  grid-template-columns: 12rem minmax(0, 1fr);
  align-items: center;
}

.ttv-logo {
  display: block;
  width: 10rem;
}

.ttv-logo img {
	max-height: 14rem;
	max-width: 100%;
	height: auto;
}

.ttv-cover{
  width: 100%;
  aspect-ratio: 16 / 5;
  height: auto;
  background-image: url("img/cover.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem;
}

.ttv-main {
	padding: 1rem 1rem 2rem;
}

.ttv-layout {
	max-width: 90rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 14rem 1fr;
  gap: 2rem;
  align-items: start;
}

.ttv-nav {
	position: relative;
}

.ttv-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ttv-nav-list li + li {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.ttv-nav-list a {
	display: block;
	padding: 0.9rem 1rem;
	color: #fff;
	text-decoration: none;
}

.ttv-nav-list a:hover {
	background: rgba(255, 255, 255, 0.08);
}

.ttv-nav-decor {
	background-image: url("img/sat-world.jpg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left bottom;
	aspect-ratio: 1 / 1;
	width: 100%;
	max-width: 14rem;
	margin: 1rem auto 0;
	opacity: 0.9;
}

.ttv-row {
  margin-right: 1rem;
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.ttv-row-grid {
  display: grid;
  gap: 0.8rem;
  align-items: start;
}

.ttv-row-label {
  width: 58.4rem;
  max-width: 100%;
  margin-top: -0.1rem;
  margin-bottom: .5rem;
  z-index: 10;
  position: relative;
  background: linear-gradient(90deg, #d10240, #e00043);
  color: #fff;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 0.45rem 0.8rem;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.6);
}

.ttv-row-label-single {
  width: 15.25rem;
  max-width: 100%;
  margin-top: -0.1rem;
  margin-bottom: .5rem;
  z-index: 10;
  position: relative;
  background: linear-gradient(90deg, #b80000, #ff0033);
  color: #fff;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 0.45rem 0.8rem;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.6);
}

.svg-img-1 {
  background-size: 95% !important;
}

.label-1 {
  text-align: center;
  background: linear-gradient(90deg, #6b0101, #800101);
}

.label-2 {
  text-align: center;
  background: linear-gradient(90deg, #6b0101, #800101);
}

.label-3 {
  text-align: center;
  background: linear-gradient(90deg, #6b0101, #800101);
}

.label-4 {
  text-align: center;
  background: linear-gradient(90deg, #6b0101, #800101);
}

.label-5 {
  text-align: center;
  background: linear-gradient(90deg, #e00000, #f70202);
}

.label-6 {
  text-align: center;
  background: linear-gradient(90deg, #0069e0, #0575f5);
}

.label-7 {
  text-align: center;
  background: linear-gradient(90deg, #e83c02, #fc4d08);
}

.label-8 {
  text-align: center;
  background: linear-gradient(90deg, #021eab, #052df7);
}

.ttv-card{
  display:block;
  text-decoration:none;
}

/* Kartın üstünde parlama İSTEMİYORUZ */
.ttv-card::after{
  content: none;
}

.ttv-card-thumb{
  width:14rem;
  aspect-ratio:16/11;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  border-radius:0.2rem;
  overflow:hidden;                 /* taşmayı burada kes */
  position:relative;

  box-shadow:0 6px 18px rgba(0,0,0,.45);
  transition:transform .35s ease, filter .35s ease;
  will-change:transform, filter;
}

/* Parlama katmanı */
.ttv-card-thumb::after{
  content:"";
  position:absolute;
  inset:-40%;
  pointer-events:none;

  opacity:0;                       /* burada !important YOK */
  transition:opacity .25s ease;

  border-radius:0.2rem;            /* aynı radius -> taşma biter */
  background: linear-gradient(120deg,
    rgba(255,255,255,.0) 35%,
    rgba(255,255,255,.35) 50%,
    rgba(255,255,255,0) 65%
  );
}

/* Hover: zoom + parlama */
.ttv-card:hover .ttv-card-thumb{
  transform:scale(1.02);
  filter:brightness(1.2) contrast(1.05) saturate(1.05);
}

.ttv-card:hover .ttv-card-thumb::after{
  opacity:1;
}




/*----------------------------------------------------- [MEDIA QUERY] ------------------------------------------------------*/

@media (max-width: 1479px) {

  .ttv-row-label {
    font-size: 1rem;
    padding: 0.7rem;
    margin-bottom: 1rem;
  }

  .ttv-row-label-single {
    padding: 0.7rem;
  }

  .ttv-row-label-single {
    width: 100%;
    border-radius: 0 0 1rem 1rem;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .ttv-nav-list {
    margin-bottom: 3rem;
  }

  .ttv-row-label {
    border-radius: 0 0 1rem 1rem;
  }
}

@media (max-width: 1279px) {
  
  .ttv-row-label {
    padding: 0.7rem;
  }

  .ttv-row-label-single {
    padding: 0.7rem;
  }
}

@media (max-width: 1023px) {
  
  .ttv-row-label {
    font-size: 0.8rem;
  }

  .ttv-row-label-single {
    font-size: 0.8rem;
  }
}

@media (max-width: 800px) {
  
  .ttv-row-label {
    padding: 0.6rem;
    font-size: 0.7rem;
  }

  .ttv-row-label-single {
    padding: 0.6rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 767px) {

  .ttv-layout{
    display: grid;
    grid-template-columns: 1fr;
    gap: .5rem;
  }

  .ttv-top {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }

  .ttv-nav{
    width: 100%;
    border-radius: 1rem;
  }

  .ttv-nav-list {
    text-align: center;
    font-size: 1.5rem;
  }

  .ttv-content{
    width: 100%;
  }

  /* mobilde sağ-sol boşlukları toparla */
  .ttv-row{
    position: relative;
    margin-left: 0;
    margin-right: 0;
  }

  .ttv-row-grid {
    padding-top: 4.4rem;
    grid-template-columns: 1fr;
    padding-top: 5rem;
  }

  /* menü dekoru mobilde çok yer kaplıyorsa küçült */
  .ttv-nav-decor{
    display: none;
    max-width: 10rem;
    margin: .75rem 0 0;
    margin-bottom: 3rem;
  }

  .ttv-card {
    position: relative;
  }

  .ttv-card-thumb {
    width: 100%;
    border-radius: 1rem;
    margin-bottom: 1rem;
  }

  .ttv-row-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    border-radius: 1rem 0.3rem 1rem 0.3rem;
    padding: 0.8rem;
    text-align: center;
    font-size: 1.25rem;
    /*transform: scaleY(1.2);*/
  }

  .ttv-row-label-single {
    width: 100%;
    border-radius: 0 0 1rem 1rem;
    padding: 0.8rem;
    text-align: center;
    font-size: 1.25rem;
    margin-top: -1.8rem;
    margin-bottom: 2.5rem;
  }

}

@media (max-width: 440px) {
  
  html {
    font-size: 14.5px;
  }

  .ttv-row-label {
    font-size: 1rem;
    padding: 1.4rem 0;
  }
}

@media (max-width: 413px) {
  /* büyük telefon / küçük tablet başlangıcı */

  html {
    font-size: 14.5px;
  }

  .ttv-logo {
    width: 6rem;
  }

  .ttv-row-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .ttv-card-thumb {
    width: 100%;
  }

  .ttv-row-label {
    width: 100%;
    font-size: 1rem;
  }

}

@media (max-width: 360px) {
  
  html {
    font-size: 14.5px;
  }

  .ttv-row-label {
    font-size: .95rem;
    padding: 1.5rem 0;
  }
    
}

@media (max-width: 320px) {
  
  html {
    font-size: 14.5px;
  }

  .ttv-row-label {
    font-size: .85rem;
  }
    
}

@media (min-width: 480px) {
  /* büyük telefon / küçük tablet başlangıcı */

  html {
  	font-size: 14.5px;
  }

  .ttv-logo {
    width: 8rem;
  }

  .ttv-row-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .ttv-card-thumb {
    width: 100%;
  }

  .ttv-row-label {
    width: 100%;
  }

}

@media (min-width: 640px) {
  
  html {
    font-size: 14.5px;
  }

  .ttv-logo {
    width: 10rem;
  }
}



@media (min-width: 768px) {
  /* tablet ve üzeri – temel ölçek artışı */

  html {
  	font-size: 20px;
  }

  .ttv-layout {
    grid-template-columns: 10rem 1fr;
  }

  .ttv-nav-list a {
    padding: 0.5rem 1rem;
  }

  .ttv-row {
    margin-left: 0;
  }

  .ttv-logo {
    width: 10rem;
  }

  .ttv-row-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ttv-card-thumb {
    width: 100%;
  }

  .ttv-row-label {
    width: 100%;
  }

}

@media (min-width: 1024px) {
  /* laptop ve desktop başlangıcı */

  html {
   font-size: 16px;
  }

  .ttv-layout {
    grid-template-columns: 14rem 1fr;
  }

  .ttv-nav-list a {
    padding: 0.9rem 1rem;
  }

  .ttv-row-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ttv-card-thumb {
    width: 100%;
  }

  .ttv-row-label {
    width: 100%;
  }

}

@media (min-width: 1280px) {
  /* geniş desktop – ferah boşluklar */

  html {
  	font-size: 16.5px;
  }

  .ttv-row {
    max-width: 64rem;
  }

  .ttv-row-grid {
    column-gap: 1rem;
  }

}

@media (min-width: 1480px) {
  /* QHD (1440p) – büyük ekran ölçek artışı */

  html {
  	font-size: 18px;
  }

  .ttv-row-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1920px) {
  .ttv-row {
    margin-left: 2rem;
  }
}

@media (min-width: 2160px) {
  /* 4K (2160p) – maksimum ölçek */

  html {
  	font-size: 20px;
  }
}

@media (hover: none) and (pointer: coarse) {

  .ttv-card:hover .ttv-card-thumb {
    transform: none !important;
    filter: none !important;
  }

  .ttv-card:hover .ttv-card-thumb::after {
    opacity: 0 !important;
  }

}
