@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  /* https://kilianvalkhof.com/2022/css-html/your-css-reset-needs-text-size-adjust-probably/ */
  html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: none;
  }

  body,
  h1,
  h2,
  h3,
  h4,
  p,
  figure,
  blockquote,
  dl,
  dd {
    margin: 0;
  }

  /* https://www.scottohara.me/blog/2019/01/12/lists-and-safari.html */
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  body {
    min-block-size: 100vh;
    line-height: 1.4;
  }

  h1,
  h2,
  h3,
  button,
  input,
  label {
    line-height: 1.1;
  }

  p:empty {
    display: none;
  }

  img,
  picture {
    max-inline-size: 100%;
    display: block;
  }

  input,
  button,
  textarea,
  select {
    font: inherit;
  }
}

@layer base {
  :root {
    --bg: #f8fafc;
    --white: #ffffff;
    --black: #1a1d29;
    --primary: #2fc4ee;
    --light-primary: oklch(from var(--primary) clamp(0, l + 0.22, 1) calc(c * 0.9) h);
    --dark-primary: oklch(from var(--primary) clamp(0, l - 0.22, 1) calc(c * 0.92) h);
    --light-gray: #e2e8f0;
    --gray: #64748b;
    --radius: 16px;
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --border: 1px solid #e2e8f0;
    --gradient-primary: linear-gradient(80deg, rgba(47, 196, 238, 1) 0, rgba(186, 123, 213, 1) 79%);
    --box-shadow: rgba(0, 121, 80, 0.39);
  }
  html {
    scroll-padding: 2rem;
    overflow-x: hidden;
  }
  html,
  body {
    height: 100%;
    margin: 0;
    font-family: "Roboto", sans-serif;
    background: var(--bg);
    color: var(--black);
    font-size: 1rem;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease-out;
    cursor: pointer;

    &:hover,
    &:focus,
    &:focus-visible {
      color: var(--light-primary);
    }

    &:focus {
      outline: none;
      outline-offset: 0;
    }
  }

  h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 15px 0;
    line-height: 1.25;

    @media (max-width: 639px) {
      font-size: 2rem;
    }
  }

  h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 15px 0;
    line-height: 1.25;

    @media (max-width: 639px) {
      font-size: 1.75rem;
    }
  }

  h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 15px 0;
    line-height: 1.25;
  }

  h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 15px 0;
    line-height: 1.25;
  }

  h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 15px 0;
    line-height: 1.25;
  }

  h6 {
    font-size: 1rem;
    font-weight: 600;
    margin: 15px 0;
    line-height: 1.25;
  }

  .btn {
    min-width: 240px;
    font-weight: 600;
    display: block;
    color: var(--white) !important;
    border: none;
    background: var(--gradient-primary);
    font-size: 1.125rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    padding: 1rem 2rem;
    max-width: max-content;
    text-transform: none;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 14px 0 var(--box-shadow);
    letter-spacing: 0.3px;

    @media (max-width: 767px) {
      min-width: auto;
    }

    &:hover,
    &:focus,
    &:focus-visible {
      text-decoration: none;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px 0 rgba(14, 165, 233, 0.5);
    }

    &.btn-lg {
      font-size: 1.25rem;
      padding: 1.125rem 2.5rem;

      &:hover,
      &:focus,
      &:focus-visible {
        transform: translateY(-2px) !important;
      }
    }

    &.premium {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, #ff6b6b 0%, #dc3545 100%);

      img {
        width: 24px;
        height: 24px;
      }
    }
  }

  img {
    max-width: 100%;
    display: block;
  }
}

.card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);

  &:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
  }

  &.horizontal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1220px;
    width: 100%;
    margin-inline: auto;

    @media (max-width: 1023px) {
      flex-direction: column;
    }

    .card-body {
      width: 60%;
      padding-right: 5%;

      @media (max-width: 1023px) {
        width: 100%;
        padding: 0 0 30px;
      }
    }

    .card-img {
      width: 40%;
      border-radius: var(--radius);
      height: 200px;
      overflow: hidden;

      img {
        min-height: 200px;
        min-width: 100%;
        object-fit: cover;
      }

      @media (max-width: 1023px) {
        width: 100%;
      }
    }
  }

  img {
    border-radius: var(--radius);
  }

  h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--black);

    @media (min-width: 768px) {
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2; /* number of lines to show */
      line-clamp: 2;
      -webkit-box-orient: vertical;
    }
  }

  p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 20px;
    color: var(--gray);
  }

  .btn {
    width: 100%;
    max-width: 360px;
  }
}

.form {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius);
  max-width: 540px;
  width: 100%;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.05);

  input,
  textarea {
    width: 100%;
    padding: 14px 16px;
    margin: 5px 0 25px;
    border: var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    transition: all 0.2s ease;

    &:focus {
      outline: 2px solid var(--primary);
      outline-offset: 0;
      border-color: var(--primary);
    }
  }
}

.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-small {
  font-size: 0.9rem;
}

.text-gray {
  color: var(--gray);
}

button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.h-captcha,
.rc-anchor,
.g-recaptcha {
  max-width: 100% !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
}

/* Layout */

section {
  padding-block: 100px !important;

  @media (max-width: 639px) {
    padding-block: 60px !important;
  }

  + section {
    padding-top: 0 !important;
  }

  &[data-padding="small"] {
    padding-block: 40px !important;

    @media (max-width: 639px) {
      padding-block: 30px !important;
    }
  }
  &[data-padding="large"] {
    padding-block: 12rem !important;

    @media (max-width: 639px) {
      padding-block: 5rem !important;
    }
  }
}

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;

  &[data-width="medium"] {
    max-width: 960px;
  }

  &[data-width="large"] {
    max-width: 1440px;
  }
}

.row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.d-flex {
  display: flex;
}

.mobile-column {
  @media (max-width: 639px) {
    flex-direction: column;
  }
}

.flex-column {
  flex-direction: column;
}

.space-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.grid {
  display: grid;
  gap: 60px 30px;
  width: 100%;

  @media (min-width: 1024px) and (max-width: 1179px) {
    gap: 60px 15px;
  }

  @media (max-width: 1023px) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  @media (max-width: 539px) {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  &.column3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  &.column4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  & > * {
    min-width: 0;
  }
}

.col-60 {
  width: 60% !important;

  @media (max-width: 634px) {
    width: 100% !important;
  }
}

.col-50 {
  width: 50% !important;

  @media (max-width: 634px) {
    width: 100% !important;
  }
}

.col-40 {
  width: 40% !important;

  @media (max-width: 634px) {
    width: 100% !important;
  }
}

.col-30 {
  width: 30% !important;

  @media (max-width: 634px) {
    width: 100% !important;
  }
}

.m-auto {
  margin-inline: auto;
}

.gap-100 {
  gap: 100px;
}

.gap-50 {
  gap: 50px;
}

.gap-30 {
  gap: 30px;
}

.w-100 {
  width: 100% !important;
  max-width: 100% !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

/* Header */

.header {
  background: transparent;
  padding: 16px 40px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(8px);

  @media (max-width: 639px) {
    padding: 10px 20px !important;
  }

  .logo {
    width: 150px;
    height: auto;
    filter: invert(0.3);
  }

  .nav {
    display: flex;
    gap: 32px;
    align-items: center;

    @media (max-width: 1023px) {
      flex-direction: column;
      display: none;
      width: 100%;
      position: absolute;
      top: 80px;
      background: var(--white);
      left: 0;
      z-index: 999;
      box-shadow: var(--shadow-hover);
      padding-bottom: 20px;
    }

    a {
      padding: 8px 12px;
      font-size: 1rem;
      font-weight: 500;
      transition: all 0.2s ease;
      border-radius: 8px;
      color: var(--primary);

      &:hover {
        background: var(--light-primary);

        img {
          transition: all 0.2s ease-out;
          filter: brightness(1.2);
        }
      }
    }
  }

  &.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-hover);
    padding: 10px 40px !important;
    transition: all 0.3s ease;

    a {
      color: var(--primary);
    }

    .logo {
      filter: none;
    }
  }

  .dropdown {
    position: relative;

    .dropdown-toggle {
      @media (max-width: 1023px) {
        max-width: max-content;
        text-align: center;
        display: flex;
        margin: 0 auto;
        gap: 10px;
      }

      .arrow {
        float: right;
        transition: transform 0.3s ease;
      }
    }

    &.open {
      @media (max-width: 1023px) {
        width: 100%;
      }

      .arrow {
        transform: rotate(180deg);
      }

      .submenu {
        display: block;
      }
    }

    .submenu {
      display: none;
      list-style: none;
      padding: 0;
      text-align: center;

      @media (min-width: 1024px) {
        padding: 20px;
        position: absolute;
        background: var(--white);
        padding: 20px;
        border-radius: var(--radius);
        box-shadow: var(--shadow-card);
      }

      li {
        padding-block: 6px;

        a {
          padding-left: 0;
        }
      }
    }
  }

  .hamburger {
    width: 30px;
    height: 24px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;

    @media (max-width: 1023px) {
      display: flex;
    }

    span {
      display: block;
      width: 100%;
      height: 4px;
      background: #000;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    &.active {
      span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
      }

      span:nth-child(2) {
        opacity: 0;
      }

      span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
      }
    }
  }

  /* Language Selector */
  .language-selector {
    position: relative;
    display: flex;
    align-items: center;

    .lang-toggle {
      background: transparent;
      border: 1px solid var(--primary);
      color: var(--primary);
      padding: 8px 12px;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 500;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: all 0.2s ease;

      &:hover {
        background: var(--light-primary);
        transform: translateY(-2px);
      }

      &[aria-expanded="true"] {
        background: var(--primary);
        color: var(--white);

        .lang-icon {
          transform: rotate(180deg);
        }
      }

      .lang-text {
        font-weight: 600;
      }

      .lang-icon {
        transition: transform 0.3s ease;
        font-size: 0.8rem;
      }
    }

    .lang-menu {
      position: absolute;
      top: 100%;
      right: 0;
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow-card);
      min-width: 160px;
      margin-top: 8px;
      display: none;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      transition: all 0.3s ease;
      z-index: 1000;

      &.show {
        display: flex;
        flex-direction: column;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .lang-option {
        padding: 12px 16px;
        color: var(--black);
        text-decoration: none;
        transition: all 0.2s ease;
        border-bottom: 1px solid var(--light-gray);
        font-weight: 500;

        &:last-child {
          border-bottom: none;
        }

        &:hover {
          background: var(--light-primary);
          color: var(--primary);
          padding-left: 20px;
        }

        &.active {
          background: var(--light-primary);
          color: var(--primary);
          font-weight: 600;

          &::before {
            content: "✓ ";
          }
        }
      }
    }

    @media (max-width: 1023px) {
      width: 100%;
      padding: 12px 0;
      border-bottom: 1px solid var(--light-gray);

      .lang-toggle {
        width: 100%;
        justify-content: center;
      }

      .lang-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0;
        box-shadow: none;
        border-radius: 0;
        background: var(--bg);

        &.show {
          display: flex;
        }

        .lang-option {
          border-top: none;
          border-bottom: 1px solid var(--light-gray);
          text-align: center;

          &:last-child {
            border-bottom: none;
          }
        }
      }
    }
  }
}

/********** PAGES STYLES **********/

/* Hero */

.hero {
  background-image: url("../images/hero-home.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  z-index: 1;
  padding: 60px 20px;
  min-height: 85vh;

  .hero_background_video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
  }

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.199) 0%, rgba(0, 0, 0, 0.459) 100%);
    z-index: -1;
  }

  .hero-text {
    max-width: 700px;
    width: 100%;
    text-align: center;
    color: white;

    h1 {
      font-weight: 700;
      font-size: 3.75rem;
      margin-bottom: 16px;
      text-align: center;
      text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      letter-spacing: -0.5px;
    }

    h2 {
      font-size: 1.375rem;
      margin-bottom: 40px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.95);
      text-align: center;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
  }
}

.section-title {
  margin-block: 50px;

  @media (max-width: 767px) {
    margin-block: 50px 30px;
  }

  h1 {
    margin: 0 auto 50px;
    font-weight: 700;

    @media (max-width: 767px) {
      margin-bottom: 30px;
    }
  }

  h2 {
    margin: 0 0 12px;
    font-weight: 700;
    color: var(--black);
  }

  p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0;
    color: var(--gray);
    line-height: 1.7;
  }
}

.single-game {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  border-radius: var(--radius);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);

  &:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
  }

  &:hover .game-image img {
    transform: scale(1.08);
  }

  &:hover .icon {
    transform: scale(1.1);
    box-shadow: 0 12px 24px rgba(14, 165, 233, 0.4);
  }

  &.locked-game:hover .icon {
    box-shadow: 0 12px 24px rgba(220, 53, 69, 0.4);
  }

  .game-image {
    margin-bottom: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    background: var(--light-gray);
    border-radius: var(--radius) var(--radius) 0 0;

    &::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.2) 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    img {
      height: 220px;
      object-fit: cover;
      width: 100%;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      display: block;
    }
  }

  &:hover .game-image::after {
    opacity: 1;
  }

  .game-info {
    background: var(--gradient-primary);
    padding: 1.5rem 1.75rem 2.25rem;
    color: var(--white);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    border-radius: 0 0 var(--radius) var(--radius);

    .speciality {
      font-size: 0.8125rem;
      color: rgba(255, 255, 255, 0.85);
      text-transform: uppercase;
      margin: 0 auto 10px;
      letter-spacing: 1.2px;
      font-weight: 600;
    }

    .full-name {
      margin: 0 auto 16px;
      font-size: 1.375rem;
      font-weight: 700;
      text-transform: capitalize;
      color: var(--white);
      line-height: 1.3;
    }

    p {
      font-weight: 400;
      font-size: 0.95rem;
      text-align: center;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 4; /* number of lines to show */
      line-clamp: 4;
      -webkit-box-orient: vertical;
    }

    .icon {
      background: var(--primary);
      width: 72px;
      height: 72px;
      font-size: 28px;
      color: var(--primary);
      display: flex;
      justify-content: center;
      align-items: center;
      position: absolute;
      left: 0;
      right: 0;
      bottom: -36px;
      z-index: 99;
      border-radius: 50%;
      margin: auto;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 8px 16px rgba(0, 121, 80, 0.3);

      img {
        width: 36px;
        height: 36px;
        filter: drop-shadow(0 2px 4px rgba(0, 121, 80, 0.3));
      }
    }
  }

  &.locked-game .game-info .icon {
    background: rgb(220, 53, 69);

    img {
      filter: drop-shadow(0 2px 4px rgba(220, 53, 69, 0.3));
    }
  }
}

@media (max-width: 767px) {
  .single-game {
    margin-bottom: 45px;

    .game-image img {
      height: 180px;
    }

    .game-info {
      padding: 1rem 1.25rem 2.25rem;

      .full-name {
        font-size: 1.2rem;
      }

      p {
        font-size: 0.9rem;
      }

      .icon {
        width: 60px;
        height: 60px;
        bottom: -30px;

        img {
          width: 30px;
          height: 30px;
        }
      }
    }
  }
}

@media (max-width: 480px) {
  .single-game {
    margin-bottom: 40px;

    .game-image img {
      height: 160px;
    }

    .game-info {
      padding: 0.875rem 1rem 2rem;

      .speciality {
        font-size: 0.75rem;
      }

      .full-name {
        font-size: 1.1rem;
        margin-bottom: 10px;
      }

      p {
        font-size: 0.85rem;
      }

      .icon {
        width: 55px;
        height: 55px;
        bottom: -27px;

        img {
          width: 28px;
          height: 28px;
        }
      }
    }
  }
}

.article {
  .article-content {
    width: 75%;
    padding-right: 10%;

    @media (max-width: 1199px) {
      width: 70%;
      padding-right: 5%;
    }

    @media (max-width: 639px) {
      width: 100%;
      padding: 0;
    }

    h1 {
      margin-block: 50px;

      @media (max-width: 639px) {
        margin-block: 50px 30px;
      }
    }

    .featured-block {
      margin-bottom: 50px;

      img {
        margin-bottom: 20x;
        max-height: 450px;
        width: 100%;
        object-fit: cover;
      }

      i {
        font-size: 1.25rem;
        font-weight: 500;
        display: block;
      }

      sub {
        font-size: 0.9rem;
        color: gray;
      }
    }

    h2,
    h3,
    h4,
    h5,
    h6 {
      margin-top: 30px;
      margin-bottom: 10px;
    }

    img {
      width: 100%;
      height: auto;
      margin: 30px 0;
      display: block;
    }
  }

  .article-sidebar {
    width: 30%;
    margin-top: 50px;

    @media (max-width: 1199px) {
      width: 30%;
    }

    @media (max-width: 639px) {
      width: 100%;
    }

    hr {
      background: var(--light-gray) !important;
      margin: 20px 0 30px;
      border-width: 0;
      padding: 0.5px;
    }

    .articles {
      list-style: none;
      padding: 0;

      p {
        color: var(--black);
        transition: all 0.2s ease-out;
        width: calc(100% - 95px);
        line-height: 1.2;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 4; /* number of lines to show */
        line-clamp: 4;
        -webkit-box-orient: vertical;
        position: absolute;
        left: 95px;
        top: 50%;
        transform: translateY(-50%);

        &:hover {
          text-decoration: underline;
          color: var(--primary);
        }
      }

      li {
        margin-bottom: 30px;

        a {
          display: flex;
          gap: 15px;
          position: relative;

          img {
            width: 80px;
            height: 80px;
            -o-object-fit: cover;
            object-fit: cover;
            border-radius: 5px;
          }
        }
      }
    }
  }
}

.accordion-container {
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 20px;

  .accordion-item {
    border-bottom: 1px solid var(--light-gray);
    padding-block: 24px;

    &:last-child {
      border-bottom: none;
    }

    @media (max-width: 639px) {
      padding-block: 16px;
    }

    .accordion-header {
      width: 100%;
      border: none;
      outline: none;
      padding: 12px 0;
      text-align: left;
      font-size: 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--black);

      @media (max-width: 639px) {
        font-size: 1.125rem;
        padding: 5px 0;
      }

      &:hover {
        color: var(--primary);
      }

      &.active {
        color: var(--primary);

        .arrow {
          transform: rotate(90deg);
        }
      }

      .arrow {
        transition: transform 0.3s ease;
        font-size: 14px;
        color: var(--primary);
      }
    }

    .accordion-content {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.3s ease;
      padding: 0;

      p {
        margin: 16px 0;
        color: var(--gray);
      }
    }
  }
}

/* Footer */

footer {
  background-image: url(../images/footer-background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: var(--white);
  padding-block: 80px;
  margin-top: 60px;

  .footer-column {
    max-width: 420px;
  }

  .logo {
    width: 180px;
  }

  ul {
    padding: 0;
    list-style: none;

    li {
      margin-block: 15px;
    }
  }

  a {
    color: var(--white);
  }

  .copyright {
    margin-top: 40px;
    font-size: 0.9rem;
  }
}

/* PopUp */

/* Overlay */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;

  /* Nested CSS for elements inside the popup */
  .popup-box {
    background: var(--white);
    width: 90%;
    max-width: 500px;
    padding: 32px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-hover);
    animation: pop 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);

    img {
      width: 100%;
      border-radius: 12px;
    }

    h3 {
      margin-top: 15px;
    }

    .close-btn {
      position: absolute;
      top: 16px;
      right: 16px;
      font-size: 20px;
      color: var(--gray);
      width: 40px;
      height: 40px;
      text-align: center;
      vertical-align: middle;
      background: var(--light-gray);
      border: none;
      cursor: pointer;
      border-radius: 50%;
      transition: all 0.2s ease;

      &:hover {
        background: var(--primary);
        color: var(--white);
        transform: rotate(90deg);
      }
    }
  }
}
