/* ==============================
   METFLIX - THEME SETTINGS
   ============================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #080808;
  color: white;
  min-height: 100vh;
}

/* PAGE */

.theme-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 20px;

  background:
    radial-gradient(
      circle at top,
      rgba(229, 9, 20, 0.12),
      transparent 40%
    ),
    #080808;
}

/* BACK BUTTON */

.back-btn {
  position: fixed;
  top: 25px;
  left: 25px;

  display: flex;
  align-items: center;
  gap: 10px;

  color: white;
  text-decoration: none;

  font-size: 18px;
  font-weight: 600;

  z-index: 10;
}

.back-btn:hover {
  color: #e50914;
}

/* MAIN CARD */

.theme-box {
  width: 100%;
  max-width: 650px;

  padding: 50px 38px;

  background: linear-gradient(
    145deg,
    #18181d,
    #101014
  );

  border: 1px solid #3f3f46;
  border-top: 3px solid #e50914;

  border-radius: 25px;

  box-shadow:
    0 0 35px rgba(229, 9, 20, 0.12);

  text-align: center;
}

/* ICON */

.theme-icon {
  width: 120px;
  height: 120px;

  margin: 0 auto 30px;

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

  border-radius: 50%;

  background: rgba(229, 9, 20, 0.15);

  color: #ff1e2d;

  font-size: 50px;

  box-shadow:
    0 0 30px rgba(229, 9, 20, 0.12);
}

/* TITLE */

.theme-box h1 {
  font-size: 46px;
  font-weight: 500;

  margin-bottom: 15px;

  color: white;
}

/* SUBTITLE */

.subtitle {
  color: #99999f;

  font-size: 21px;

  margin-bottom: 40px;
}

/* THEME OPTIONS */

.theme-options {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* OPTION */

.theme-option {
  width: 100%;

  display: flex;
  align-items: center;

  gap: 18px;

  padding: 22px;

  background: #202025;

  border: 1px solid #4a4a52;

  border-radius: 20px;

  color: white;

  text-align: left;

  cursor: pointer;

  transition: 0.2s ease;
}

.theme-option:hover {
  border-color: #e50914;

  transform: translateY(-2px);
}

/* OPTION ICON */

.option-icon {
  width: 65px;
  height: 65px;

  flex-shrink: 0;

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

  border-radius: 50%;

  background: #3b3b43;

  font-size: 25px;
}

/* TEXT */

.option-text {
  flex: 1;

  display: flex;
  flex-direction: column;

  gap: 5px;
}

.option-text strong {
  font-size: 21px;
}

.option-text span {
  color: #99999f;

  font-size: 16px;
}

/* CHECK */

.check-icon {
  display: none;

  color: #e50914;

  font-size: 22px;
}

/* ACTIVE THEME */

.theme-option.active {
  border-color: #e50914;

  box-shadow:
    0 0 20px rgba(229, 9, 20, 0.15);
}

.theme-option.active .check-icon {
  display: block;
}

/* STATUS */

#status {
  margin-top: 25px;

  font-size: 17px;

  color: #4cff88;
}

/* ==============================
   LIGHT MODE
   ============================== */

body.light-mode {
  background: #f4f4f4;

  color: #111;
}

body.light-mode .theme-page {
  background:
    radial-gradient(
      circle at top,
      rgba(229, 9, 20, 0.08),
      transparent 40%
    ),
    #f4f4f4;
}

body.light-mode .theme-box {
  background: #ffffff;

  border-color: #d5d5d5;

  color: #111;
}

body.light-mode .theme-box h1 {
  color: #111;
}

body.light-mode .back-btn {
  color: #111;
}

body.light-mode .theme-option {
  background: #f5f5f5;

  border-color: #d0d0d0;

  color: #111;
}

body.light-mode .option-text span {
  color: #666;
}

body.light-mode .option-icon {
  background: #e4e4e4;
}

/* MOBILE */

@media (max-width: 600px) {

  .theme-page {
    padding: 45px 20px;
  }

  .theme-box {
    padding: 45px 28px;

    border-radius: 25px;
  }

  .theme-icon {
    width: 105px;
    height: 105px;

    font-size: 45px;

    margin-bottom: 25px;
  }

  .theme-box h1 {
    font-size: 40px;
  }

  .subtitle {
    font-size: 19px;
  }

  .theme-option {
    padding: 18px;
  }

  .option-icon {
    width: 58px;
    height: 58px;

    font-size: 22px;
  }

  .option-text strong {
    font-size: 19px;
  }

  .option-text span {
    font-size: 15px;
  }
}
