@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Outfit:wght@500;600;700;800&display=swap");

body {
  margin: 0;
  background-color: #1a0001;
  color: #FFFFFFDD;
  position: relative;
  overflow-x: hidden;
  font-family: "Plus Jakarta Sans", sans-serif;
  width: 100%;
  min-height: 100vh;
}

/* Premium Cinematic Hero Section Container */
#home {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
}



.card {
  position: absolute;
  left: 0;
  top: 0;
  background-position: center;
  background-size: cover;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid rgba(239, 230, 221, 0.15);
  box-sizing: border-box;
}

.card:hover {
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.9),
    0 0 20px rgba(255, 26, 26, 0.25);
  border-color: rgba(255, 26, 26, 0.5);
}

#btn {
  position: absolute;
  top: 690px;
  left: 16px;
  z-index: 99;
}

/* Glassmorphic floating card content overlay */
.card-content {
  position: absolute;
  pointer-events: none;
  width: 200px;
  height: 100px;
  box-sizing: border-box;
  padding: 16px;
  background: linear-gradient(to top, rgba(4, 4, 6, 0.95) 0%, rgba(4, 4, 6, 0.6) 80%, transparent 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-top: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #FFFFFFDD;
  z-index: 40;
}

.content-place {
  font-size: 8.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #3b82f6;
  margin-bottom: 4px;
}

.content-title-1,
.content-title-2 {
  font-weight: 700;
  font-size: 12px;
  font-family: "Outfit", sans-serif;
  color: #FFFFFF;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.content-start {
  display: none;
}

/* Static Hero Intro Header styling */
.hero-brand-header {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  width: 540px;
  max-width: calc(100vw - 120px);
  z-index: 25;
  pointer-events: all;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 32px 36px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 26, 26, 0.35);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #efe6dd;
  margin-bottom: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: #ff1a1a;
  border-radius: 50%;
  box-shadow: 0 0 10px #ff1a1a;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.4;
  }
}

.hero-title {
  font-size: clamp(32px, 4.2vw, 50px);
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px 0;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #FFF0D4 0%, #ff1a1a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(239, 230, 221, 0.85);
  margin: 0 0 28px 0;
  font-weight: 500;
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #9a0002 0%, #ff1a1a 100%);
  color: #FFFFFF;
  padding: 13px 28px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 26, 26, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 0 30px rgba(255, 26, 26, 0.7);
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ff1a1a 0%, #9a0002 100%);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: #ff1a1a;
  color: #FFFFFF;
  background: rgba(255, 26, 26, 0.15);
  box-shadow: 0 0 20px rgba(255, 26, 26, 0.3);
}

.btn-recruit {
  border-color: rgba(255, 26, 26, 0.5);
  background: rgba(154, 0, 2, 0.22);
}

.btn-recruit:hover {
  background: rgba(255, 26, 26, 0.3);
  box-shadow: 0 0 25px rgba(255, 26, 26, 0.5);
}

.recruit-hero-badge {
  text-decoration: none;
  background: rgba(255, 26, 26, 0.18) !important;
  border: 1px solid rgba(255, 26, 26, 0.5) !important;
  color: #FFFFFF !important;
  font-weight: 800 !important;
  box-shadow: 0 0 15px rgba(255, 26, 26, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

.recruit-hero-badge:hover {
  background: rgba(255, 26, 26, 0.35) !important;
  box-shadow: 0 0 25px rgba(255, 26, 26, 0.7);
  transform: translateY(-1px);
}

.btn-recruit-highlight {
  background: linear-gradient(135deg, #ff1a1a 0%, #9a0002 100%) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  box-shadow: 0 0 25px rgba(255, 26, 26, 0.6) !important;
  animation: recruitPulse 2.5s infinite;
}

.btn-recruit-highlight:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 35px rgba(255, 26, 26, 0.85) !important;
}

@keyframes recruitPulse {
  0% {
    box-shadow: 0 0 15px rgba(255, 26, 26, 0.4);
  }

  50% {
    box-shadow: 0 0 30px rgba(255, 26, 26, 0.85);
  }

  100% {
    box-shadow: 0 0 15px rgba(255, 26, 26, 0.4);
  }
}

/* Dynamic details block (Unified Sidebar Card) */
.details {
  z-index: 22;
  position: absolute;
  top: 340px;
  left: 60px;
  width: 440px;
  background: rgba(26, 0, 1, 0.55);
  border: 1px solid rgba(239, 230, 221, 0.15);
  padding: 20px 24px;
  border-radius: 12px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(239, 230, 221, 0.1);
  box-sizing: border-box;
}

/* Red/cream glow behind the active card panel */
.details::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(239, 230, 221, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.details .place-box {
  height: 20px;
  overflow: hidden;
}

.details .place-box .text {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ff1a1a;
  /* Accent red */
}

.details .place-box .text:before {
  display: none;
}

.details .title-1,
.details .title-2 {
  font-weight: 700;
  font-size: 22px;
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  text-transform: uppercase;
}

.details .title-box-1,
.details .title-box-2 {
  margin-top: 2px;
  height: 28px;
  overflow: hidden;
}

.details>.desc {
  margin-top: 10px;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(239, 230, 221, 0.75);
  width: 100%;
}

.details>.cta {
  width: 100%;
  margin-top: 16px;
  display: flex;
  align-items: center;
}

.details>.cta>.bookmark {
  border: 1px solid rgba(239, 230, 221, 0.2);
  background: rgba(239, 230, 221, 0.05);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #efe6dd;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.details>.cta>.bookmark:hover {
  background: rgba(255, 26, 26, 0.15);
  border-color: rgba(255, 26, 26, 0.3);
  color: #FFF;
}

.details>.cta>.bookmark svg {
  width: 16px;
  height: 16px;
}

.details>.cta>.discover {
  border: 1px solid rgba(239, 230, 221, 0.4);
  background: linear-gradient(135deg, rgba(239, 230, 221, 0.15) 0%, rgba(239, 230, 221, 0.02) 100%);
  height: 36px;
  border-radius: 99px;
  color: #efe6dd;
  padding: 0 24px;
  font-size: 10px;
  font-weight: 600;
  margin-left: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.details>.cta>.discover:hover {
  background: linear-gradient(135deg, rgba(255, 26, 26, 0.35) 0%, rgba(255, 26, 26, 0.1) 100%);
  border-color: rgba(255, 26, 26, 0.7);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(255, 26, 26, 0.25);
}

/* Premium Navbar Styling */
#main-nav {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 50px;
  background: rgba(26, 0, 1, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(239, 230, 221, 0.12);
  transition: all 0.3s ease;
}

#main-nav.scrolled {
  background: rgba(18, 0, 1, 0.95) !important;
  padding: 12px 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  border-bottom-color: rgba(255, 26, 26, 0.2);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  height: 40px;
  width: 40px;
  object-fit: cover;
  border-radius: 10px;
  border: 1.5px solid rgba(239, 230, 221, 0.3);
  box-shadow: 0 0 15px rgba(154, 0, 2, 0.4);
  transition: transform 0.3s ease;
}

.nav-brand:hover .nav-logo-img {
  transform: scale(1.05);
}

#main-nav .logo-text {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.14em;
  color: #FFFFFF;
  background: linear-gradient(135deg, #FFFFFF 0%, #efe6dd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.nav-links {
  gap: 20px;
  display: flex;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: rgba(239, 230, 221, 0.75);
  text-transform: uppercase;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 99px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a.active {
  color: #FFFFFF;
  background: linear-gradient(135deg, rgba(154, 0, 2, 0.8), rgba(255, 26, 26, 0.8));
  box-shadow: 0 0 12px rgba(255, 26, 26, 0.3);
}

.nav-cta-btn {
  background: linear-gradient(135deg, #9a0002 0%, #ff1a1a 100%);
  color: #efe6dd !important;
  padding: 9px 20px !important;
  border-radius: 99px;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 26, 26, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(255, 26, 26, 0.6);
  background: linear-gradient(135deg, #ff1a1a 0%, #9a0002 100%) !important;
}

/* Mobile Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1002;
}

.hamburger-menu span {
  width: 100%;
  height: 2.5px;
  background-color: #FFFFFF;
  border-radius: 4px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
  #main-nav {
    padding: 12px 20px;
    background: rgba(18, 0, 1, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(239, 230, 221, 0.12);
  }

  #main-nav.scrolled {
    padding: 10px 20px;
    background: rgba(14, 0, 1, 0.98) !important;
  }

  .nav-logo-img {
    height: 34px;
    width: 34px;
  }

  #main-nav .logo-text {
    font-size: 13.5px;
    letter-spacing: 0.1em;
  }

  .hamburger-menu {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(180deg, rgba(14, 0, 1, 0.98) 0%, rgba(24, 0, 2, 0.97) 100%);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
    z-index: 1001;
  }

  .nav-links::before {
    content: "";
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(255, 26, 26, 0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    width: 85%;
    max-width: 300px;
    text-align: center;
    padding: 14px 20px;
    color: #efe6dd;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(239, 230, 221, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links a:hover {
    color: #FFFFFF;
    background: rgba(255, 26, 26, 0.15);
    border-color: rgba(255, 26, 26, 0.4);
  }

  .nav-links a.active {
    color: #FFFFFF !important;
    background: linear-gradient(135deg, #9a0002 0%, #ff1a1a 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 0 25px rgba(255, 26, 26, 0.6) !important;
    transform: scale(1.02);
  }

  .nav-cta-btn {
    width: 85%;
    max-width: 300px;
    text-align: center;
    font-size: 13px !important;
    font-weight: 800 !important;
    padding: 15px 20px !important;
    margin-top: 10px;
    background: linear-gradient(135deg, #9a0002 0%, #ff1a1a 100%) !important;
    color: #FFFFFF !important;
    border-radius: 16px;
    box-shadow: 0 0 25px rgba(255, 26, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  /* Hamburger active state transformation */
  .hamburger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #ff1a1a;
  }

  .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }

  .hamburger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #ff1a1a;
  }
}

/* Scroll / Loading progress indicator top */
.indicator {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  z-index: 60;
  background: linear-gradient(90deg, #9a0002 0%, #ff1a1a 100%);
}

/* Pagination container */
.pagination {
  position: absolute;
  left: 0px;
  top: 0px;
  display: inline-flex;
  align-items: center;
}

.pagination>.arrow {
  z-index: 60;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(239, 230, 221, 0.15);
  background: rgba(26, 0, 1, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination>.arrow:nth-child(2) {
  margin-left: 10px;
}

.pagination>.arrow:hover {
  border-color: rgba(255, 26, 26, 0.5);
  background: rgba(255, 26, 26, 0.1);
}

.pagination>.arrow svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
  color: #efe6dd;
  transition: color 0.3s ease;
}

.pagination>.arrow:hover svg {
  color: #FFFFFF;
}

.pagination .progress-sub-container {
  margin-left: 20px;
  z-index: 60;
  width: 300px;
  height: 40px;
  display: flex;
  align-items: center;
}

.pagination .progress-sub-container .progress-sub-background {
  width: 300px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
}

.pagination .progress-sub-container .progress-sub-background .progress-sub-foreground {
  height: 2px;
  background: linear-gradient(90deg, #9a0002, #ff1a1a);
  border-radius: 99px;
}

.pagination .slide-numbers {
  width: 40px;
  height: 40px;
  overflow: hidden;
  z-index: 60;
  position: relative;
  margin-left: 10px;
}

.pagination .slide-numbers .item {
  width: 40px;
  height: 40px;
  position: absolute;
  color: #efe6dd;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

.cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: #9a0002;
  z-index: 100;
}

@media (max-width: 768px) {
  .cover {
    display: none !important;
  }
}

/* Ghost elements — in DOM for script.js, invisible to user */
.card-content {
  display: none !important;
}

#details-odd,
#details-even {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ════════════════════════════════
   HERO RESPONSIVE RULES
   ════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-brand-header {
    left: 40px;
    width: 400px;
  }

  .details {
    left: 40px;
    width: 380px;
  }
}

@media (max-width: 768px) {
  #home {
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
  }

  .hero-brand-header {
    top: 72px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 28px);
    max-width: 380px;
    padding: 16px 14px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(14, 0, 1, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
  }

  .hero-badge {
    font-size: 9.5px;
    padding: 4px 12px;
    margin-bottom: 12px;
  }

  .hero-title {
    font-size: clamp(24px, 6.5vw, 34px);
    line-height: 1.15;
    margin-bottom: 10px;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 13.5px;
    line-height: 1.45;
    margin-bottom: 14px;
    text-align: center;
    color: rgba(239, 230, 221, 0.88);
    font-weight: 500;
  }

  .hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    flex-wrap: wrap;
  }

  .btn-primary,
  .btn-outline {
    padding: 10px 18px;
    font-size: 11.5px;
    font-weight: 700;
  }

  .pagination {
    left: 16px !important;
    bottom: 20px !important;
  }

  .pagination .progress-sub-container {
    width: 120px;
    margin-left: 8px;
  }

  .pagination .progress-sub-container .progress-sub-background {
    width: 100%;
  }
}

#details-even {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ════════════════════════════════════════════════════════
   VIEWPORT FULL-WIDTH RESET — Eliminate Black Gap on ALL Phones
   ════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

#home {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;       /* Dynamic viewport height — adapts to mobile address bar */
  min-height: 560px;
  overflow: hidden;
}

#demo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Active fullscreen card — GSAP sets borderRadius: 0 on it */
.card[style*="border-radius: 0"] {
  width: 100% !important;
  height: 100% !important;
  left: 0 !important;
  top: 0 !important;
  border: none !important;
  border-radius: 0 !important;
}

#main-nav {
  width: 100%;
  max-width: 100%;
  left: 0;
  right: 0;
  box-sizing: border-box;
}

.page-content, main, section {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}