body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

/* ===================== */
/* TEXT */
/* ===================== */

h1 {
  color: #212529;
  font-size: 2rem;
  font-weight: 800;
}

h2 {
  font-size: 1.4rem;
  text-transform: uppercase;
}

h2, h3 {
  color: #212529;
  font-weight: 700;
  letter-spacing: 1px;
}

h3, p {
  font-size: 1.6rem;
}

p {
  line-height: 1.5;
}

a {
  font-size: 1.6rem;
}

a:link, a:visited {
  color: #4263eb;
}

a:active, a:hover {
  color: #364fc7;
}

/* ===================== */
/* HEADER */
/* ===================== */

.header {
  padding-bottom: 2.5rem;
}

.header__background {
  background: radial-gradient(#472183, #4B56D2);
  height: 10rem;
  position: absolute;
  width: 100%;
  z-index: -1;
}

.header .box {
  max-width: 120rem;
  margin: auto;
  padding: 2rem;
  transform: translateY(10%);
}

.header__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f1f3f5;
  border-radius: .9rem;
  box-shadow: 0 0 1.6rem rgba(33, 37, 41, .094);
  padding: 2rem;
}

/* HEADER LEFT */
.header__main .project-header {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.header__main .profile__photo {
  border-radius: .9rem;
  height: 7.5rem;
  width: 7.5rem;
  transition: transform 0.3s ease-in-out;
}

.header__main .profile__photo:hover {
  transform: scale(1.1);
}

/* BACK BUTTON */
.header__main .btn-back-home {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.header__main .btn-back-home:hover {
  color: #4B56D2;
}

/* ===================== */
/* GRID SYSTEM */
/* ===================== */

.watched-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 20px;
}

/* ===================== */
/* CARD */
/* ===================== */

.watched-card {
    position: relative;
	min-width: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background: #fff;
    transition: transform 0.3s ease;
}

.watched-card:hover {
    transform: scale(1.05);
}

.watched-card {
    
    overflow: hidden;
}

.watched-card img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    display: block;
}

/* ===================== */
/* BADGE */
/* ===================== */

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff4757;
    color: white;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 14px;
    text-transform: uppercase;
}

/* ===================== */
/* TITLE */
/* ===================== */

.title {
    padding: 10px;
    font-size: 18px;
    text-align: center;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

.watched-container {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 14px;
    padding: 12px;
    margin-top: 20px;
    box-sizing: border-box;
}

/* LAPTOP */
@media (max-width: 1400px) {
    .watched-container {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* TABLET / KÜÇÜK LAPTOP */
@media (max-width: 1100px) {
    .watched-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* BÜYÜK TELEFON */
@media (max-width: 700px) {
    .watched-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

/* KÜÇÜK TELEFON */
@media (max-width: 420px) {
    .watched-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
}