/* PAGE LAYOUT */
.container {
  max-width: 1100px;
  margin: 2em auto;
  padding: 0 1em;
}

/* TITLE */
h1 {
  font-size: 2em;
  margin-bottom: 0.3em;
}

/* DESCRIPTION */
.desc {
  color: #666;
  margin-bottom: 1.5em;
}

/* TV GRID */
.tv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.2em;
}

/* TV CARD */
.tv-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: 0.25s ease;
  text-align: center;
}

.tv-card:hover {
  transform: translateY(-4px);
}

/* IMAGE */
.tv-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

/* TITLE */
.tv-card h3 {
  font-size: 0.95em;
  margin: 0;
  padding: 0.8em;
  line-height: 1.3;
}

.tv-card a {
  text-decoration: none;
  color: #1a1a1a;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  height: calc(60px + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);

  background: #ffffff;

  display: flex;
  justify-content: space-around;
  align-items: center;

  border-top: 1px solid #e5e5e5;

  z-index: 9999;

  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);

  /* daha modern görünüm */
  backdrop-filter: blur(10px);
}

/* NAV ITEM */
.bottom-nav .nav-item {
  color: #888;
  text-decoration: none;

  display: flex;
  flex-direction: column;
  align-items: center;

  transition: 0.2s ease;
}

/* ICON */
.bottom-nav .nav-item .material-icons {
  font-size: 28px;
}

/* TEXT */
.bottom-nav .nav-item small {
  font-size: 12px;
  margin-top: 2px;
  line-height: 1;
  color: inherit;
}

/* HOVER */
.bottom-nav .nav-item:hover {
  color: #0d6efd;
}

/* ACTIVE STATE */
.bottom-nav .nav-item.active {
  color: #0d6efd;
}

/* ACTIVE INDICATOR DOT */
.bottom-nav .nav-item.active::after {
  content: '';
  width: 5px;
  height: 5px;
  background: #0d6efd;
  border-radius: 50%;
  margin-top: 4px;
}

/* MOBILE */
@media (max-width: 768px) {
  h1 {
    font-size: 1.6em;
  }

  .tv-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8em;
  }

  .tv-card img {
    height: 100px;
  }
}
