@font-face {
  font-family: "BruumFY";
  src: url("fonts/BruumFY-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "BruumFY";
  src: url("fonts/BruumFY-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "BruumFY";
  src: url("fonts/BruumFY-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "NewJune";
  src: url("fonts/NewJune-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "NewJune";
  src: url("fonts/NewJune-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "QatarArabic";
  src: url("fonts/Qatar2022Arabic-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

:root {
  --page-gutter: 48px;
  --gold: #a67820;
  --gold-dark: #8c661d;
  --gold-soft: #c08b29;
  --black: #000000;
  --light: #f4f4f4;
  --text: #080808;
  --muted: #666666;
  --border-color: #dcdcdc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: "NewJune", Arial, sans-serif;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.shell {
  width: min(1520px, calc(100vw - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

.shell--hero {
  width: min(1500px, calc(100vw - 34px));
}

.shell--narrow {
  width: min(1360px, calc(100vw - 90px));
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.top-strip {
  background: #f0f0f0;
  color: #111111;
  border-bottom: 1px solid var(--border-color);
}

.top-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding-left: var(--page-gutter);
}

.top-strip__contact {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.top-strip__contact a {
  text-decoration: none;
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.top-strip__contact i {
  font-size: 1.25rem;
}

.top-strip__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.5rem;
  background: var(--gold-dark);
  color: #ffffff;
  text-decoration: none;
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 500;
  white-space: nowrap;
}

.lang-bar {
  background: #ffffff;
}

.lang-bar__inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: var(--page-gutter);
  color: #000000;
  font-family: "BruumFY", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
}

.lang-eng {
  color: var(--gold);
}

.lang-ar {
  color: #000000;
}

/* Navigation Styles */
.main-nav {
  display: block;
  width: 100%;
  margin: 2rem 0;
  padding: 2px 0;
  background: #000000;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  border-bottom: none;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.nav-list li {
  display: flex;
  align-items: center;
}

.nav-list li:not(:last-child)::after {
  content: "|";
  display: block;
  margin: 0 10px;
  color: #ffffff;
  font-weight: 300;
}

.nav-list a {
  text-decoration: none;
  font-family: "BruumFY", Arial, sans-serif;
  display: inline-block;
  padding: 6px 4px;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  transition: color 0.2s;
}

.nav-list a:hover {
  color: #B0822A;
}

.hero-section {
  background: #ffffff;
  padding: 0;
}

.hero-panel {
  display: flex;
  flex-direction: column;
}

.hero-panel__top-line {
  display: none;
  /* Removed as nav has bottom border */
}

.hero-panel__intro {
  margin: 15px auto 40px;
  text-align: center;
  font-family: "QatarArabic", "Arial", sans-serif;
  font-size: 1.7rem;
  line-height: 1.4;
  font-weight: 400;
  color: #080808;
  max-width: 1100px;
  margin-inline: auto;
  direction: rtl;
}

.hero-panel__content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 1500px;
  margin: 10px auto;
}

.hero-copy--english {
  text-align: right;
}

.hero-copy--english h1 {
  margin: 0;
  font-family: "BruumFY", Arial, sans-serif;
  font-weight: 700;
  font-size: 3.8rem;
  line-height: 1;
  color: #1a1a1a;
  text-transform: none;
}

.hero-copy--arabic {
  text-align: left;
  direction: rtl;
}

.hero-copy--arabic h2 {
  margin: 0;
  font-family: "QatarArabic", "Arial", sans-serif;
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 1.1;
  color: #1a1a1a;
}

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

.hero-panel__logo img {
  width: 180px;
  height: auto;
}

.hero-panel__meta {
  text-align: center;
  font-family: "BruumFY", Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: #080808;
  margin: 10px 0;
}

.hero-panel__bottom-line {
  border-bottom: 1px solid #c0c0c0;
  width: 100%;
  max-width: 1300px;
  margin: 20px auto;
}

.hero-panel__mission {
  text-align: center;
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
  color: #080808;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 0;
}

.section--black {
  background: #ffffff;
  color: var(--text);
}

.stage-section {
  padding-top: 0;
}

.gold-frame {
  border: 1px solid #bf8d24;
  margin: 0 auto;
}

.gold-frame--thin {
  border-width: 1px;
}

.counter-top{
    background-color: #fff;
    padding: 20px 30px;
}
.counter-top .btns {
    width: 90%;
}
.counter-top .btn{
    min-height: 35px;
    color: #fff;
    background-color: #b80504;
    border: none;
    padding: 6px 30px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}
.counter-top .btn a{
    text-decoration: none;
    color: #e2eef7;
}
.counter-top .btns .btn-success{
    background-color: #3f3f3f;
}
.counter-top p{
    font-size: 20px;
    margin-bottom: 0;
    text-align: center;
    color: #000;
}
.counter-top button.btn{
    font-size: 15px;
}
.counter{
    margin: 30px 0;
}
.counter h2{
    font-family: "BruumFY", Arial, sans-serif;
    color: var(--gold);
    font-size: 35px;
    margin: 5px;
}
.counter i{
    font-size: 35px;
    color: #888686;
}
.counter img{
    margin: 10px auto;
    height: 35px;
}
.counter p{
    color: #888686;
}
@media screen and (min-width: 2115px) {
    .counter-top p { font-size: 30px; }
    .counter-top button.btn { font-size: 30px; }
    .counter h2 { font-size: 40px; }
    .counter p { font-size: 20px; }
}
@media screen and (min-width: 1920px) and (max-width : 2110px) {
    .counter-top p{ font-size: 24px; }
    .counter-top button.btn { font-size: 20px; }
    .counter-top .btn { min-height: 64px; }
    .counter h2 { font-size: 40px; }
    .counter p{ font-size: 20px; }
}
@media only screen and (max-width: 1281px) {
    .counter-top p{ font-size: 14px; }
    .counter-top .btns { position: relative; top: 50%; transform: translateY(-50%); }
}
@media only screen and (max-width: 1109px) {
    .counter-top .btns { width: 100%; }
}
@media only screen and (max-width: 991px) {
    .counter h2 { font-size: 24px; }
}
@media only screen and (max-width: 842px) and (min-width: 768px)  {
    .counter-top button.btn{ font-size: 11px; }
    .counter h2 { font-size: 26px; }
    .counter-top p{ font-size: 14px; }
}
@media only screen and (max-width: 985px) {
    .counter-top .btn { width: 100%; }
}
@media only screen and (max-width: 767px) {
    .counter-top button.btn{ width: 100%; margin: 20px auto; }
}

.stats-section {
  padding: 30px 0 40px;
}

.ticker-bar {
  text-align: center;
  margin-bottom: 30px;
}

.ticker-bar p {
  margin: 0;
  font-family: inherit;
  font-size: 1.3rem;
  font-weight: 500;
  color: #080808;
}

.ticker-bar span {
  font-weight: 400;
  margin-left: 5px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.85rem;
}

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

.stat-card__icon {
  display: block;
  margin: 0 auto 0.65rem;
  max-width: 100%;
  height: auto;
}

.stat-card i {
  display: block;
  color: #111111;
  font-size: clamp(1.25rem, 1.7vw, 1.8rem);
  margin-bottom: 0.65rem;
}

.stat-card strong {
  display: block;
  color: var(--gold);
  font-family: "BruumFY", Arial, sans-serif;
  font-size: clamp(1.55rem, 2.45vw, 2.7rem);
  font-weight: 600;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 0.18rem;
  color: #666666;
  font-family: "BruumFY", Arial, sans-serif;
  font-size: clamp(0.82rem, 1.1vw, 1.22rem);
  font-weight: 400;
  line-height: 1.12;
}

.nomination-section {
  padding: 20px 0 60px;
}

.nomination-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.nomination-title {
  margin: 0 0 35px;
  font-family: "BruumFY", Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  width: 100%;
}

.nomination-text {
  margin: 0;
  font-family: inherit;
  font-size: 1.35rem;
  line-height: 1.45;
  color: #1a1a1a;
  text-align: justify;
}

.nomination-media {
  display: flex;
  justify-content: flex-end;
}

.video-container {
  width: 100%;
  max-width: 600px;
  position: relative;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.2);
}

.video-overlay i {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  padding-left: 5px;
  cursor: pointer;
}

.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 44px;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  padding: 0 15px;
  gap: 15px;
  color: #fff;
  font-size: 0.9rem;
}

.progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
}

.progress-bar span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: #fff;
}

.video-controls i {
  cursor: pointer;
}

.feature {
  padding: 28px 0 18px;
}

.feature--light {
  background: var(--light);
  color: #111111;
}

.feature--dark {
  background: #ffffff;
  color: var(--text);
}

.feature__inner {
  width: min(1400px, calc(100vw - 80px));
  margin: 0 auto;
  text-align: center;
}

.feature__media {
  width: min(940px, 100%);
}

.feature__title {
  margin: 28px auto 0;
  max-width: 980px;
  font-family: "BruumFY", Arial, sans-serif;
  font-size: clamp(1.55rem, 2.55vw, 2.95rem);
  font-weight: 500;
  line-height: 1.08;
  text-transform: uppercase;
}

.feature__link-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: 18px;
}

.feature__link-row span {
  height: 1px;
  background: rgba(166, 166, 166, 0.55);
}

.feature__link-row a {
  color: var(--gold);
  text-decoration: none;
  font-family: "BruumFY", Arial, sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.55rem);
  font-weight: 500;
}

.feature--compact {
  padding-top: 42px;
  padding-bottom: 34px;
}

.feature--compact .feature__link-row {
  margin-top: 2rem;
}

.legacy-section {
  padding: 38px 0 44px;
}

.legacy-card {
  background: #ffffff;
  color: #111111;
}

.legacy-card__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1.5rem;
  padding: 22px 22px 18px;
}

.legacy-card__content h2 {
  margin: 0;
  font-family: "BruumFY", Arial, sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 2.5rem);
  font-weight: 500;
  line-height: 1.12;
  text-transform: uppercase;
  max-width: 720px;
  position: relative;
  padding-top: 25px;
}

.legacy-card__content h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background: var(--gold);
}

.legacy-card__content img {
  width: clamp(150px, 20vw, 236px);
}

.section--centered {
  padding: 60px 0 40px;
  text-align: center;
}

.centered-title {
  display: inline-block;
  margin: 0;
  font-family: "BruumFY", Arial, sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  position: relative;
}

.strip-section {
  padding: 30px 0 40px;
  text-align: center;
}

.strip-title {
  margin: 25px 0 0;
  font-family: "BruumFY", Arial, sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  font-weight: 500;
  color: #080808;
  line-height: 1.35;
}

.strip-image img {
  width: 100%;
}

.strip-image {
  margin: 0;
}

.strip-image img {
  width: 100%;
}

.slider-section {
  padding: 6px 0 56px;
  text-align: center;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid #d4b06c;
  background: #ffffff;
}

.slider-container {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-y pinch-zoom;
}

.slider-container::-webkit-scrollbar {
  display: none;
}

.slider-slide {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
}

.slider-slide img {
  width: 100%;
  display: block;
}

.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease;
}

.slider-control:hover,
.slider-control:focus-visible {
  background: rgba(166, 120, 32, 0.92);
}

.slider-control:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.slider-control--prev {
  left: 18px;
}

.slider-control--next {
  right: 18px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.is-active {
  background: var(--gold);
}

.site-footer {
  background: #ffffff;
  color: #111111;
  border-top: 8px solid var(--gold);
}

.site-footer .shell {
  padding-top: 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 0;
}

.footer-col {
  padding: 0 14px;
}

.footer-col:not(:nth-child(4n + 1)) {
  border-left: 1px solid #d4d4d4;
}

.footer-col h3,
.newsletter-block h3,
.social-block h3 {
  margin: 0 0 10px;
  color: #8a5f1c;
  font-family: "BruumFY", Arial, sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  font-weight: 700;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.15rem;
}

.footer-col a {
  color: #111111;
  text-decoration: none;
  font-family: "BruumFY", Arial, sans-serif;
  font-size: clamp(0.98rem, 1.18vw, 1.32rem);
  font-weight: 400;
}

.footer-bottom-band {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding: 28px 14px 0;
}

.newsletter-block {
  flex: 1;
  max-width: 760px;
}

.newsletter-form {
  display: flex;
  gap: 0.8rem;
}

.newsletter-form input {
  flex: 1;
  height: 38px;
  border: none;
  border-radius: 4px;
  background: #cccccc;
  padding: 0 0.9rem;
  font-size: 1rem;
}

.newsletter-form button {
  height: 38px;
  padding: 0 1rem;
  border: none;
  border-radius: 4px;
  background: #000000;
  color: #ffffff;
  font-family: "BruumFY", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

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

.social-block h3 {
  color: #111111;
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.social-icons a {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
}

.social-fb {
  background: #1877f2;
}

.social-ig {
  background: linear-gradient(45deg, #ffcb52, #ff3576, #9440ff);
}

.social-x {
  background: #000000;
}

.social-li {
  background: #0a66c2;
}

.social-yt {
  background: #ff0000;
}

.footer-disclaimer {
  max-width: 1250px;
  margin: 18px auto 0;
  padding: 0 18px 18px;
  text-align: center;
  font-family: "BruumFY", Arial, sans-serif;
  font-size: clamp(0.92rem, 1.12vw, 1.18rem);
  font-weight: 400;
  line-height: 1.35;
}

.footer-copyright {
  background: #000000;
  color: #ffffff;
  padding: 14px 0;
}

.footer-copyright p {
  margin: 0;
  text-align: center;
  font-family: inherit;
  font-size: clamp(0.92rem, 1vw, 1.06rem);
  font-weight: 400;
}

@media (max-width: 1100px) {
  :root {
    --page-gutter: 24px;
  }

  .hero-panel__content {
    display: block;
    text-align: center;
    padding-top: 20px;
  }

  .hero-copy--english,
  .hero-copy--arabic {
    display: block;
    text-align: center;
    max-width: none;
    width: auto;
  }

  .hero-panel__logo {
    display: block;
    order: -1;
    margin-bottom: 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem 1rem;
  }

  .feature__inner,
  .shell--narrow {
    width: min(100vw - 34px, 100%);
  }

  .legacy-card__content {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-col:not(:nth-child(4n + 1)) {
    border-left: none;
  }

  .footer-col:not(:nth-child(2n + 1)) {
    border-left: 1px solid #d4d4d4;
  }

  .footer-bottom-band {
    flex-direction: column;
    align-items: stretch;
  }

  .social-block {
    text-align: left;
  }

  .social-icons {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {

  .top-strip__inner,
  .top-strip__contact {
    align-items: flex-start;
  }

  .top-strip__inner {
    flex-direction: column;
    padding: 0.6rem 0 0.85rem;
  }

  .top-strip__button {
    min-height: 40px;
  }

  .lang-bar__inner {
    min-height: 42px;
  }

  .hero-panel {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-panel__intro {
    font-size: 0.95rem;
  }

  .hero-panel__meta {
    font-size: 1rem;
    line-height: 1.35;
  }

  .stage-section {
    padding-top: 32px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-section {
    padding-top: 24px;
    padding-bottom: 64px;
  }

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

  .video-panel {
    width: min(300px, 100%);
  }

  .feature {
    padding-top: 22px;
    padding-bottom: 20px;
  }

  .feature--compact .feature__link-row {
    margin-top: 2.2rem;
  }

  .feature__link-row {
    grid-template-columns: 1fr;
  }

  .feature__link-row span {
    display: none;
  }

  .legacy-section {
    padding-top: 24px;
  }

  .strip-section {
    padding-bottom: 26px;
  }

  .slider-section {
    padding-bottom: 36px;
  }

  .slider-control {
    width: 40px;
    height: 40px;
  }

  .slider-control--prev {
    left: 10px;
  }

  .slider-control--next {
    right: 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-col,
  .footer-col:not(:nth-child(2n + 1)) {
    border-left: none;
    padding: 0;
  }

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

  .newsletter-form button {
    width: 120px;
  }
}
