/* ============================================================
   Lumion | The Digital Curator — Stylesheet
   ============================================================ */

/* ---------- Base ---------- */
body {
  font-family: 'Inter', sans-serif;
  min-height: max(884px, 100dvh);
}

/* ---------- Material Symbols ---------- */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ---------- Custom Utilities ---------- */
.tonal-shift-low {
  background: linear-gradient(
    to bottom,
    rgba(247, 249, 255, 0.8),
    rgba(232, 238, 247, 0.8)
  );
}

.hero-gradient {
  background: linear-gradient(135deg, #244267 0%, #3d5a80 100%);
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ============================================================
   Games Page — Specific Styles
   ============================================================ */

/* ---------- Games Hero Banner ---------- */
.games-hero {
  background: linear-gradient(135deg, #1a3152 0%, #244267 50%, #006687 100%);
  position: relative;
  overflow: hidden;
}

.games-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(96, 205, 255, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(36, 66, 103, 0.4)  0%, transparent 50%);
  pointer-events: none;
}

.games-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ---------- Filter Tabs ---------- */
.filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 9999px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  border: 1.5px solid #c3c6cf;
  color: #43474e;
  background: #ffffff;
  white-space: nowrap;
}

.filter-tab:hover {
  border-color: #244267;
  color: #244267;
  transform: translateY(-1px);
}

.filter-tab.active {
  background: #244267;
  color: #ffffff;
  border-color: #244267;
  box-shadow: 0 4px 14px rgba(36, 66, 103, 0.25);
}

/* ---------- Game Card ---------- */
.game-card {
  background: #ffffff;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid #e8eef7;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(36, 66, 103, 0.14);
}

.game-card-thumb {
  position: relative;
  overflow: hidden;
  height: 210px;
}

.game-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-card:hover .game-card-thumb img {
  transform: scale(1.06);
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21, 28, 35, 0.6) 0%, transparent 55%);
}

.game-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 9999px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  backdrop-filter: blur(8px);
}

.game-card-badge.new       { background: rgba(0, 102, 135, 0.85); color: #fff; }
.game-card-badge.featured  { background: rgba(255, 193, 7,  0.9);  color: #1a1a1a; }
.game-card-badge.ugc       { background: rgba(63, 63, 85,  0.85); color: #e2e0fc; }
.game-card-badge.popular   { background: rgba(186, 26, 26, 0.85);  color: #fff; }

.game-card-body {
  padding: 1.25rem 1.375rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.game-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #151c23;
  line-height: 1.3;
}

.game-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: #43474e;
  line-height: 1.55;
  flex: 1;
}

.game-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

    /* ---------- Overlay ---------- */
    .trailer-modal {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      visibility: hidden;
      pointer-events: none;
    }

    .trailer-modal.is-open {
      visibility: visible;
      pointer-events: all;
    }

    /* ---------- Backdrop ---------- */
    .trailer-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(15, 28, 48, 0.82);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .trailer-modal.is-open .trailer-backdrop {
      opacity: 1;
    }

    /* ---------- Panel ---------- */
    .trailer-panel {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 860px;
      background: #ffffff;
      border-radius: 1.5rem;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(15, 28, 48, 0.45);
      transform: scale(0.92) translateY(20px);
      opacity: 0;
      transition: transform 0.35s cubic-bezier(0.34,1.3,0.64,1), opacity 0.3s ease;
    }

    .trailer-modal.is-open .trailer-panel {
      transform: scale(1) translateY(0);
      opacity: 1;
    }

    /* ---------- Header ---------- */
    .trailer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 1.375rem;
      background: #f7f9ff;
      border-bottom: 1px solid #e8eef7;
      gap: 1rem;
    }

    .trailer-header-left {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .trailer-label {
      font-family: 'Manrope', sans-serif;
      font-size: 0.625rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #73777f;
      line-height: 1;
    }

    .trailer-game-title {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1rem;
      font-weight: 800;
      color: #151c23;
      line-height: 1.2;
      margin-top: 3px;
    }

    /* ---------- Close Button ---------- */
    .trailer-close-btn {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: #e8eef7;
      border: 1px solid #dce3ec;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #244267;
      cursor: pointer;
      flex-shrink: 0;
      transition: background 0.2s, color 0.2s, transform 0.2s;
    }

    .trailer-close-btn:hover {
      background: #244267;
      color: #ffffff;
      border-color: #244267;
      transform: rotate(90deg);
    }

    /* ---------- Player ---------- */
    .trailer-player-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      background: #0f1e30;
    }

    .trailer-iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    /* ---------- Footer hint ---------- */
    .trailer-footer-hint {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 0.75rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      color: #73777f;
      background: #f7f9ff;
      border-top: 1px solid #e8eef7;
    }

    .trailer-footer-hint kbd {
      background: #e8eef7;
      border: 1px solid #c3c6cf;
      border-radius: 4px;
      padding: 1px 6px;
      font-family: 'Manrope', sans-serif;
      font-size: 0.6875rem;
      font-weight: 700;
      color: #244267;
    }

    /* ---------- Watch button style ---------- */
    .watch-btn {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 4px 10px;
      border-radius: 9999px;
      background: #eef4fd;
      border: 1px solid #dce3ec;
      transition: background 0.2s, color 0.2s, transform 0.15s;
    }

    .watch-btn:hover {
      background: #244267;
      color: #ffffff !important;
      border-color: #244267;
      transform: scale(1.04);
    }


/* ---------- Star Rating ---------- */
.star-rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.star-rating .star {
  font-size: 0.875rem;
  color: #f59e0b;
}

.star-rating .star.empty {
  color: #c3c6cf;
}

.star-rating .score {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #244267;
  margin-left: 4px;
}

/* ---------- Platform Pill ---------- */
.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 9999px;
  background: #eef4fd;
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: #244267;
  border: 1px solid #dce3ec;
}

/* ---------- Featured Game Spotlight ---------- */
.featured-spotlight {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}

.featured-spotlight img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-spotlight:hover img {
  transform: scale(1.04);
}

.featured-spotlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21, 28, 35, 0.88) 0%, rgba(21, 28, 35, 0.3) 55%, transparent 100%);
}

.featured-spotlight-content {
  position: relative;
  z-index: 10;
  padding: 2.5rem;
  width: 100%;
}

/* ---------- Stats Strip ---------- */
.stat-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 2.5rem;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: #c3c6cf;
}

.stat-item .stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: #244267;
  line-height: 1;
}

.stat-item .stat-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #73777f;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   About Page — Specific Styles
   ============================================================ */

/* ---------- About Hero ---------- */
.about-hero {
  background: linear-gradient(135deg, #0f1f35 0%, #244267 55%, #1a5470 100%);
  position: relative;
  overflow: hidden;
}

.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(96, 205, 255, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(61, 90, 128, 0.5)   0%, transparent 50%);
  pointer-events: none;
}

.about-hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* ---------- Mission Ribbon ---------- */
.mission-ribbon {
  background: linear-gradient(90deg, #244267 0%, #006687 100%);
  position: relative;
  overflow: hidden;
}

.mission-ribbon::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(96, 205, 255, 0.1);
  pointer-events: none;
}

/* ---------- Value Card ---------- */
.value-card {
  background: #ffffff;
  border: 1px solid #e8eef7;
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(36, 66, 103, 0.12);
  border-color: #abc8f4;
}

.value-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.value-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #151c23;
}

.value-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: #43474e;
  line-height: 1.6;
}

/* ---------- Team Card ---------- */
.team-card {
  background: #ffffff;
  border: 1px solid #e8eef7;
  border-radius: 1.5rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(36, 66, 103, 0.13);
}

.team-card-photo {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8eef7, #dce3ec);
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-card-photo img {
  transform: scale(1.05);
}

.team-card-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #244267;
  background: linear-gradient(135deg, #eef4fd 0%, #dce3ec 100%);
  letter-spacing: -0.02em;
}

.team-card-body {
  padding: 1.25rem 1.375rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.team-card-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #151c23;
}

.team-card-role {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #006687;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.team-card-bio {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: #43474e;
  line-height: 1.6;
  margin-top: 4px;
  flex: 1;
}

.team-card-socials {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.team-social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eef4fd;
  border: 1px solid #dce3ec;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #244267;
  font-size: 0.875rem;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.team-social-btn:hover {
  background: #244267;
  color: #ffffff;
  border-color: #244267;
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, #244267, #60cdff, #244267);
  border-radius: 9999px;
}

.timeline-item {
  position: relative;
  padding: 0 0 2.5rem 2rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -0.4375rem;         /* centres the dot on the 2px line */
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #244267;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px #244267;
}

.timeline-item.accent::before {
  background: #006687;
  box-shadow: 0 0 0 2px #006687;
}

.timeline-year {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #006687;
  margin-bottom: 4px;
}

.timeline-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #151c23;
  margin-bottom: 4px;
}

.timeline-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: #43474e;
  line-height: 1.6;
}

/* ---------- Press / Award Badge ---------- */
.award-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #e8eef7;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  transition: box-shadow 0.25s, border-color 0.25s;
}

.award-badge:hover {
  box-shadow: 0 8px 28px rgba(36, 66, 103, 0.1);
  border-color: #abc8f4;
}

.award-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.award-badge-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #73777f;
}

.award-badge-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #151c23;
  margin-top: 2px;
}

/* ============================================================
   Contact Page — Specific Styles
   ============================================================ */

/* ---------- Info Card ---------- */
.info-card {
  background: #eef4fd;
  border-radius: 1.5rem;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid #dce3ec;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

.info-card:hover {
  box-shadow: 0 10px 32px rgba(36, 66, 103, 0.1);
  border-color: #abc8f4;
  transform: translateY(-3px);
}

.info-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.875rem;
  background: #244267;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #006687;
  margin-bottom: 4px;
}

.info-card-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #151c23;
  line-height: 1.4;
}

.info-card-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #43474e;
  margin-top: 2px;
}

/* ---------- Social Button ---------- */
.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #dce3ec;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #244267;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.social-btn:hover {
  background: #244267;
  color: #ffffff;
  border-color: #244267;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(36, 66, 103, 0.2);
}

/* ---------- Map Wrapper ---------- */
.map-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  height: 300px;
}

.map-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.map-wrapper:hover img {
  transform: scale(1.06);
}

.map-pin {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: #ffffff;
  border-radius: 0.875rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.map-pin-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #244267;
}

/* ---------- Contact Form ---------- */
.contact-form-wrap {
  background: #ffffff;
  border-radius: 2rem;
  padding: 3rem;
  border: 1px solid #e8eef7;
  box-shadow: 0 4px 32px rgba(36, 66, 103, 0.07);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: 'Manrope', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #43474e;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #c3c6cf;
  padding: 0.75rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: #151c23;
  outline: none;
  transition: border-color 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #73777f;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: #244267;
}

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2373777f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 1.5rem;
}

.form-textarea {
  resize: none;
  line-height: 1.6;
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #244267 0%, #3d5a80 100%);
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(36, 66, 103, 0.25);
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(36, 66, 103, 0.35);
}

.form-submit-btn:active {
  transform: scale(0.97);
}

/* ---------- FAQ Accordion ---------- */
.faq-item {
  border-bottom: 1px solid #e8eef7;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-question {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #151c23;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef4fd;
  border: 1px solid #dce3ec;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #244267;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
}

.faq-item.open .faq-icon {
  background: #244267;
  color: #ffffff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #43474e;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 1.25rem;
}

/* ---------- Office Card ---------- */
.office-card {
  background: #ffffff;
  border: 1px solid #e8eef7;
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

.office-card:hover {
  box-shadow: 0 10px 32px rgba(36, 66, 103, 0.1);
  border-color: #abc8f4;
  transform: translateY(-3px);
}

.office-flag {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.office-city {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #151c23;
}

.office-address {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #73777f;
  margin-top: 2px;
}

/* ============================================================
   Careers Page — Specific Styles
   ============================================================ */

/* ---------- Careers Hero ---------- */
.careers-hero {
  background: linear-gradient(135deg, #0c1a2e 0%, #244267 50%, #1e5c7a 100%);
  position: relative;
  overflow: hidden;
}

.careers-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(96, 205, 255, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 75%, rgba(61, 90, 128, 0.5)   0%, transparent 50%);
  pointer-events: none;
}

.careers-hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* ---------- Why Us Card ---------- */
.why-card {
  background: #ffffff;
  border: 1px solid #e8eef7;
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(36, 66, 103, 0.12);
  border-color: #abc8f4;
}

.why-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #151c23;
}

.why-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: #43474e;
  line-height: 1.65;
}

/* ---------- Job Card ---------- */
.job-card {
  background: #ffffff;
  border: 1px solid #e8eef7;
  border-radius: 1.75rem;
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.job-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #e8eef7;
  border-radius: 4px 0 0 4px;
  transition: background 0.3s;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(36, 66, 103, 0.12);
  border-color: #abc8f4;
}

.job-card:hover::before {
  background: linear-gradient(to bottom, #244267, #006687);
}

.job-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.job-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1875rem;
  font-weight: 800;
  color: #151c23;
  line-height: 1.3;
}

.job-card-dept {
  font-family: 'Manrope', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #006687;
  margin-bottom: 4px;
}

.job-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.job-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 9999px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.job-tag.type-full   { background: #eef4fd; color: #244267; }
.job-tag.type-part   { background: #e6f7ff; color: #006687; }
.job-tag.loc-remote  { background: #f0eeff; color: #3f3f55; }
.job-tag.loc-hybrid  { background: #fff4e6; color: #92400e; }
.job-tag.loc-office  { background: #e6ffe9; color: #15803d; }
.job-tag.dept        { background: #fff0f0; color: #b91c1c; }

.job-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #43474e;
  line-height: 1.7;
}

.job-card-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.skill-chip {
  padding: 4px 12px;
  border-radius: 9999px;
  background: #f7f9ff;
  border: 1px solid #dce3ec;
  font-family: 'Manrope', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #43474e;
}

.job-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 0.75rem;
  border-top: 1px solid #f0f4fb;
}

.apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  background: #244267;
  color: #ffffff;
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.apply-btn:hover {
  background: #3d5a80;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(36, 66, 103, 0.25);
}

.apply-btn.secondary {
  background: transparent;
  color: #244267;
  border: 1.5px solid #dce3ec;
}

.apply-btn.secondary:hover {
  border-color: #244267;
  background: #eef4fd;
  box-shadow: none;
}

/* ---------- Perk Badge ---------- */
.perk-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 1.25rem;
  background: #ffffff;
  border: 1px solid #e8eef7;
  border-radius: 1rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.perk-badge:hover {
  box-shadow: 0 8px 24px rgba(36, 66, 103, 0.08);
  border-color: #abc8f4;
}

.perk-icon {
  width: 38px;
  height: 38px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.perk-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #151c23;
}

.perk-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #73777f;
  margin-top: 1px;
}

/* ---------- Open Application Banner ---------- */
.open-app-banner {
  background: linear-gradient(135deg, #244267 0%, #3d5a80 60%, #006687 100%);
  border-radius: 2rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.open-app-banner::before {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(96, 205, 255, 0.1);
  pointer-events: none;
}

.open-app-banner::after {
  content: '';
  position: absolute;
  left: -40px;
  top: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

/* ============================================================
   Home Page — Game Publishing Services Section
   ============================================================ */

/* ---------- Section Background ---------- */
.publish-section {
  background: linear-gradient(160deg, #87d9f5 0%, #60cdff 40%, #7acfed 100%);
  position: relative;
  overflow: hidden;
}

.publish-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(255,255,255,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(36, 66, 103, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* ---------- Heading ---------- */
.publish-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #0f1e30;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.publish-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #1a3a52;
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
  opacity: 0.85;
}

/* ---------- Service Card ---------- */
.publish-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: transparent;
  transition: transform 0.35s ease;
}

.publish-card:hover {
  transform: translateY(-6px);
}

.publish-card-img-wrap {
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 12px 40px rgba(15, 30, 48, 0.18);
  position: relative;
}

.publish-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}

.publish-card:hover .publish-card-img-wrap img {
  transform: scale(1.06);
}

/* ---------- Card Body ---------- */
.publish-card-body {
  padding: 1.375rem 0.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.publish-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 800;
  color: #0f1e30;
  line-height: 1.3;
}

.publish-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #1a3a52;
  line-height: 1.65;
  opacity: 0.85;
}

/* ---------- Platform Chips ---------- */
.publish-platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.publish-platform-chip {
  padding: 3px 11px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-family: 'Manrope', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #0f1e30;
  letter-spacing: 0.03em;
  backdrop-filter: blur(4px);
}

/* ============================================================
   Header Logo — Site Branding
   ============================================================ */

/* ---------- Logo Link Wrapper ---------- */
.site-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  cursor: pointer;
}

/* ---------- Logo Image ---------- */
.site-logo-img {
  height: 88px;
  width: auto;
  object-fit: contain;
  display: block;

  /* Smooth scale on hover */
  transition: transform 0.25s ease, filter 0.25s ease;

  /* Slight drop shadow so it pops on light/dark headers */
  filter: drop-shadow(0 1px 3px rgba(36, 66, 103, 0.15));
}

.site-logo:hover .site-logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 10px rgba(36, 66, 103, 0.25));
}

/* ---------- Logo Title Text (below image) ---------- */
.site-logo-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.6875rem;       /* 11px — compact under the logo */
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #244267;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.site-logo:hover .site-logo-title {
  color: #006687;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  .site-logo-title {
    color: #abc8f4;
  }
  .site-logo-img {
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4)) brightness(1.05);
  }
}

/* ============================================================
   Privacy Policy Page — Specific Styles
   ============================================================ */

/* ---------- Privacy Hero ---------- */
.privacy-hero {
  background: linear-gradient(135deg, #0c1a2e 0%, #244267 55%, #1e5c7a 100%);
  position: relative;
  overflow: hidden;
}

.privacy-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 25%, rgba(96, 205, 255, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(61, 90, 128, 0.45) 0%, transparent 50%);
  pointer-events: none;
}

.privacy-hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* ---------- TOC Sidebar ---------- */
.privacy-toc {
  background: #ffffff;
  border: 1px solid #e8eef7;
  border-radius: 1.5rem;
  padding: 1.75rem;
  position: sticky;
  top: 96px;
}

.privacy-toc-title {
  font-family: 'Manrope', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #006687;
  margin-bottom: 1rem;
}

.privacy-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.privacy-toc-item a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 0.625rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: #43474e;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  line-height: 1.4;
}

.privacy-toc-item a:hover {
  background: #eef4fd;
  color: #244267;
}

.privacy-toc-item a .toc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c3c6cf;
  flex-shrink: 0;
  transition: background 0.18s;
}

.privacy-toc-item a:hover .toc-dot {
  background: #244267;
}

/* ---------- Last Updated Badge ---------- */
.privacy-updated-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 9999px;
  background: #eef4fd;
  border: 1px solid #dce3ec;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #006687;
}

/* ---------- Policy Section Card ---------- */
.policy-section {
  scroll-margin-top: 96px;
  background: #ffffff;
  border: 1px solid #e8eef7;
  border-radius: 1.5rem;
  padding: 2.25rem 2.5rem;
  transition: box-shadow 0.25s, border-color 0.25s;
}

.policy-section:hover {
  box-shadow: 0 8px 32px rgba(36, 66, 103, 0.08);
  border-color: #c5d8f4;
}

.policy-section-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 1.125rem;
}

.policy-section-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1875rem;
  font-weight: 800;
  color: #151c23;
  margin-bottom: 0.875rem;
  line-height: 1.3;
}

.policy-section-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #43474e;
  line-height: 1.8;
}

.policy-section-body p {
  margin-bottom: 0.875rem;
}

.policy-section-body p:last-child {
  margin-bottom: 0;
}

.policy-section-body a {
  color: #006687;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.18s;
}

.policy-section-body a:hover {
  color: #244267;
}

/* ---------- Policy Bullet List ---------- */
.policy-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #43474e;
  line-height: 1.65;
}

.policy-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #006687;
  flex-shrink: 0;
  margin-top: 7px;
}

/* ---------- Third-party Service Chip ---------- */
.policy-service-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 9999px;
  background: #eef4fd;
  border: 1px solid #dce3ec;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #244267;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.policy-service-chip:hover {
  background: #244267;
  border-color: #244267;
  color: #ffffff;
}

/* ---------- Contact Card ---------- */
.privacy-contact-card {
  background: linear-gradient(135deg, #244267 0%, #3d5a80 60%, #006687 100%);
  border-radius: 2rem;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.privacy-contact-card::before {
  content: '';
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(96, 205, 255, 0.1);
  pointer-events: none;
}

/* ---------- Divider ---------- */
.policy-divider {
  border: none;
  border-top: 1px solid #e8eef7;
  margin: 0;
}
