/* =============================================================================
   GMA-USA (Ghana Music Awards USA) — public site theme
   Palette inspired by the Ghana flag: black, gold, red, green.
   Layout patterns (sticky nav, ticker bar, hero, card grids, footer columns)
   follow common awards-show site conventions; branding is GMA-USA's own.
   ============================================================================= */

:root {
  --gma-black: #0b0b0d;
  --gma-black-soft: #16161a;
  --gma-gold: #fcd116;
  --gma-gold-soft: #ffe36b;
  --gma-red: #ce1126;
  --gma-green: #006b3f;
  --gma-white: #f8f8f6;
  --gma-gray: #a7a7ad;
  --gma-border: rgba(255, 255, 255, 0.1);
  --gma-radius: 0.75rem;
}

body {
  background-color: var(--gma-black);
  color: var(--gma-white);
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
}

a {
  color: var(--gma-gold);
  text-decoration: none;
}
a:hover {
  color: var(--gma-gold-soft);
}

.gma-heading {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gma-eyebrow {
  color: var(--gma-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

/* ---------------------------------------------------------------------------
   Video Banner (above navbar)
   ------------------------------------------------------------------------- */
.gma-video-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--gma-black);
  line-height: 0;
}
.gma-video-banner video {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: cover;
  z-index: 1;
}
.gma-video-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,11,13,0.55) 0%, rgba(11,11,13,0.75) 50%, rgba(11,11,13,0.95) 100%);
  z-index: 2;
}
.gma-video-banner__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--gma-white);
  text-align: center;
  padding: 1rem;
}
.gma-video-banner__content h2 {
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: 0.04em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  margin-bottom: 0.4rem;
}
.gma-video-banner__content p {
  color: var(--gma-gold);
  font-weight: 600;
  font-size: 0.9rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
  margin: 0;
}
.gma-video-banner__toggle {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  z-index: 4;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.5);
  color: var(--gma-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: border-color 0.2s, background 0.2s;
}
.gma-video-banner__toggle:hover {
  border-color: var(--gma-gold);
  background: rgba(252,209,22,0.2);
}
.gma-video-banner__toggle i {
  pointer-events: none;
}
.gma-scroll-down {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: var(--gma-white);
  font-size: 1.6rem;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
  animation: gma-bounce 2s ease-in-out infinite;
  text-decoration: none;
}
.gma-scroll-down:hover {
  opacity: 1;
  color: var(--gma-gold);
}
@keyframes gma-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@media (max-width: 767.98px) {
  .gma-video-banner video { max-height: none; }
  .gma-video-banner__content h2 { font-size: 1rem; }
  .gma-scroll-down { font-size: 1.2rem; bottom: 0.5rem; }
}

/* ---------------------------------------------------------------------------
   Ticker / announcement bar
   ------------------------------------------------------------------------- */
.gma-ticker {
  background: var(--gma-black-soft);
  color: var(--gma-white);
  font-size: 0.85rem;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid var(--gma-border);
  position: relative;
}
.gma-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  background: var(--gma-gold);
  z-index: 2;
  pointer-events: none;
}
.gma-ticker__label {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  color: var(--gma-black);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  padding: 0 0.9rem;
  z-index: 3;
  background: var(--gma-gold);
  white-space: nowrap;
}
.gma-ticker__track {
  display: inline-flex;
  align-items: center;
  animation: gma-scroll 28s linear infinite;
  padding-left: calc(100% - 130px);
}
.gma-ticker__track span {
  padding: 0 2.5rem;
}
.gma-ticker {
  transition: background 0.3s ease;
}
.gma-ticker:hover .gma-ticker__track {
  animation-play-state: paused;
}
.gma-ticker:hover {
  background: var(--gma-black-soft);
}
@keyframes gma-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .gma-ticker__track { animation: none; padding-left: 1rem; }
}

/* ---------------------------------------------------------------------------
   Navbar
   ------------------------------------------------------------------------- */
.gma-navbar {
  background-color: rgba(11, 11, 13, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--gma-border);
  position: relative;
  z-index: 1050;
}
.gma-navbar .navbar-collapse {
  overflow: visible !important;
}
.gma-navbar .container {
  overflow: visible;
}
.gma-navbar .nav-item.dropdown {
  position: relative;
}
.gma-navbar .navbar-brand {
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--gma-white) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-right: 1rem;
}
.gma-navbar .navbar-brand .gma-logo-mark {
  color: var(--gma-gold);
  transition: text-shadow 0.3s ease;
}
.gma-navbar .navbar-brand:hover .gma-logo-mark {
  text-shadow: 0 0 8px rgba(252, 209, 22, 0.5);
}
.gma-navbar .nav-link {
  color: var(--gma-white) !important;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  padding: 0.45rem 0.45rem !important;
  position: relative;
  transition: color 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
}
@media (max-width: 1199.98px) {
  .gma-navbar .nav-link {
    font-size: 0.75rem;
    padding: 0.4rem 0.35rem !important;
  }
}
.gma-navbar .nav-link:not(.dropdown-toggle)::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gma-gold);
  transition: width 0.3s ease, left 0.3s ease;
}
.gma-navbar .nav-link:hover,
.gma-navbar .nav-link.active {
  color: var(--gma-gold) !important;
  transform: translateY(-1px);
}
.gma-navbar .nav-link:not(.dropdown-toggle):hover::after,
.gma-navbar .nav-link:not(.dropdown-toggle).active::after {
  width: 60%;
  left: 20%;
}
.gma-navbar .dropdown-toggle::after {
  content: '\25BE';
  display: inline-block;
  margin-left: 0.3rem;
  font-size: 0.65rem;
  vertical-align: middle;
  transition: transform 0.2s ease;
}
.gma-navbar .dropdown-toggle:hover::after {
  transform: rotate(180deg);
}
.gma-navbar .dropdown-menu {
  background-color: var(--gma-black-soft);
  border: 1px solid var(--gma-border);
  border-radius: var(--gma-radius);
  padding: 0.5rem 0;
  z-index: 1060;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.gma-navbar .dropdown-menu .dropdown-item {
  color: var(--gma-white);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}
.gma-navbar .dropdown-menu .dropdown-item {
  transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.25s ease;
}
.gma-navbar .dropdown-menu .dropdown-item:hover {
  background-color: rgba(252, 209, 22, 0.1);
  color: var(--gma-gold);
  padding-left: 1.4rem;
}
.gma-navbar .dropdown-menu .dropdown-item.active,
.gma-navbar .dropdown-menu .dropdown-item:active {
  background-color: var(--gma-gold) !important;
  color: var(--gma-black) !important;
}
.gma-btn-gold {
  background-color: var(--gma-gold);
  border-color: var(--gma-gold);
  color: var(--gma-black);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.gma-btn-gold:hover {
  background-color: var(--gma-gold-soft);
  border-color: var(--gma-gold-soft);
  color: var(--gma-black);
}
.gma-btn-outline {
  border: 2px solid var(--gma-white);
  color: var(--gma-white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.gma-btn-outline:hover {
  border-color: var(--gma-gold);
  color: var(--gma-gold);
}

/* Social Sharing Buttons */
.gma-share-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.gma-share-bar span {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gma-white);
  opacity: 0.8;
}
.gma-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
  color: #fff;
}
.gma-share-btn:hover {
  transform: scale(1.15);
  color: #fff;
}
.gma-share-btn.facebook { background: #1877f2; }
.gma-share-btn.facebook:hover { background: #0d5ecf; }
.gma-share-btn.twitter { background: #000; }
.gma-share-btn.twitter:hover { background: #333; }
.gma-share-btn.whatsapp { background: #25d366; }
.gma-share-btn.whatsapp:hover { background: #1da851; }

/* Nominee share row */
.gma-nominee-share {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  margin-top: 0.5rem;
}
.gma-nominee-share .gma-share-btn {
  width: 30px;
  height: 30px;
  font-size: 0.85rem;
  opacity: 0.85;
}
.gma-nominee-share .gma-share-btn:hover {
  opacity: 1;
}

/* ---------------------------------------------------------------------------
   Hero (Grammy-style animated text)
   ------------------------------------------------------------------------- */
.gma-hero {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  margin: 0;
  max-width: none;
  width: 100%;
  padding: 4.5rem 0;
}
.gma-hero--video {
  aspect-ratio: 2.8 / 1;
  padding: 0;
  display: flex;
  align-items: flex-end;
}
.gma-hero--video {
  aspect-ratio: 2.8 / 1;
  padding: 0;
}
.gma-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}
.gma-hero__fallback {
  display: none;
}
.gma-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,11,13,0.2) 0%, rgba(11,11,13,0.6) 50%, rgba(11,11,13,0.92) 100%);
  z-index: 1;
}
.gma-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem 9.5rem;
}
.gma-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-nowrap: nowrap;
}
.gma-hero .gma-star {
  color: var(--gma-gold);
}

/* Hero text slider — fade transition between slides */
.gma-hero__slider {
  position: relative;
  min-height: 8em;
}
.gma-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.gma-hero__slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}
.gma-hero__text-lines {
  display: flex;
  flex-direction: column;
  gap: 0.15em;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.gma-hero__text-line {
  display: block;
}
.gma-hero__text-line--accent {
  color: var(--gma-gold);
}
.gma-hero__dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.gma-hero__dot {
  width: 2.5rem;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}
.gma-hero__dot.active {
  background: var(--gma-gold);
  width: 3.5rem;
}

/* Subtitle area */
.gma-hero__meta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  align-items: center;
}
.gma-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--gma-gray);
}
.gma-hero__meta-item i {
  color: var(--gma-gold);
}
.gma-hero__cta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch;
}
.gma-hero__cta .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .gma-hero--video { aspect-ratio: 1.8 / 1; }
}
@media (max-width: 767.98px) {
  .gma-hero--video { aspect-ratio: 1.6 / 1; }
  .gma-hero__content { padding: 1.25rem 1.5rem; }
  .gma-hero h1 { font-size: 2rem; text-nowrap: normal; }
  .gma-hero__slider { min-height: 5em; }
  .gma-hero__text-lines {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    white-space: normal;
    word-break: break-word;
  }
  .gma-hero__meta { gap: 0.5rem 1rem; }
  .gma-hero__meta-item { font-size: 0.82rem; }
  .gma-hero__cta { gap: 0.5rem; align-items: stretch; }
  .gma-hero__cta .btn { flex: 1 1 0; min-width: 0; font-size: 0.82rem; padding: 0.6rem 0.75rem; white-space: nowrap; }
}
@media (max-width: 575.98px) {
  .gma-hero--video { aspect-ratio: 1.3 / 1; }
  .gma-hero__content { padding: 1rem; text-align: center; }
  .gma-hero h1 { font-size: clamp(1.3rem, 5.5vw, 1.8rem); }
  .gma-hero__text-lines {
    font-size: clamp(1.3rem, 5.5vw, 1.8rem);
  }
  .gma-hero__cta { justify-content: center; gap: 0.4rem; flex-wrap: wrap; }
  .gma-hero__cta .btn { flex: 1 1 0; min-width: 0; font-size: 0.7rem; padding: 0.5rem 0.4rem; white-space: normal; line-height: 1.2; }
  .gma-hero__meta { justify-content: center; }
  .gma-hero__dots { justify-content: center; gap: 0.35rem; margin-top: 0.75rem; }
  .gma-hero__dot { height: 3px; }
  .gma-hero__dot.active { width: 2.5rem; }
  .gma-hero__slider { min-height: 4em; }
  .gma-hero__meta-item { font-size: 0.78rem; }
}

/* ---------------------------------------------------------------------------
   Section headings
   ------------------------------------------------------------------------- */
.gma-section {
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--gma-border);
}
.gma-section.about-hero {
  border-top: 1px solid var(--gma-border);
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
}
.gma-section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

/* ---------------------------------------------------------------------------
   Cards
   ------------------------------------------------------------------------- */
.gma-card {
  background-color: var(--gma-black-soft);
  border: 1px solid var(--gma-border);
  border-radius: var(--gma-radius);
  overflow: hidden;
  height: 100%;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.gma-card:hover {
  transform: translateY(-4px);
  border-color: var(--gma-gold);
}
.gma-card__img {
  aspect-ratio: 16 / 9;
  background: #1c1c22;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gma-gray);
  font-size: 2rem;
  overflow: hidden;
}
.gma-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gma-card:hover .gma-card__img img {
  transform: scale(1.08);
}
.gma-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}
.gma-card:hover .gma-card__img::after {
  opacity: 1;
}
.gma-card__img {
  position: relative;
}
.gma-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #1c1c22;
  position: relative;
  overflow: hidden;
}
.gma-card__placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(252,209,22,0.06);
}
.gma-card__placeholder-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  opacity: 0.7;
  position: relative;
  z-index: 1;
}
.gma-card__placeholder-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gma-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  position: relative;
  z-index: 1;
}
.gma-card__body {
  padding: 1.25rem;
}
.gma-card__body .badge-status {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.gma-card__title {
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0.5rem 0;
}
.gma-card__meta {
  color: var(--gma-gray);
  font-size: 0.8rem;
}

.gma-category-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--gma-black-soft);
  border: 1px solid var(--gma-border);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.gma-category-pill.us-based { border-color: var(--gma-gold); }
.gma-category-pill.ghana-based { border-color: var(--gma-green); }

.gma-nominee-card {
  background-color: var(--gma-black-soft);
  border: 1px solid var(--gma-border);
  border-radius: var(--gma-radius);
  padding: 1rem;
  height: 100%;
}
.gma-nominee-card.is-winner {
  border-color: var(--gma-gold);
  box-shadow: 0 0 0 1px var(--gma-gold) inset;
}
.gma-avatar-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gma-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--gma-black);
  flex-shrink: 0;
}

/* ---------------------------------------------------------------------------
   CTA band
   ------------------------------------------------------------------------- */
.gma-cta-band {
  background: var(--gma-black);
  padding: 3.5rem 0;
}

/* ---------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.gma-footer {
  background-color: #000;
  padding: 3.5rem 0 1.5rem;
  color: var(--gma-gray);
  font-size: 0.9rem;
}
.gma-footer h6 {
  color: var(--gma-white);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--gma-border);
}
.gma-footer ul li {
  margin-bottom: 0.35rem;
}
.gma-footer a {
  color: var(--gma-gray);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.gma-footer a:hover {
  color: var(--gma-gold);
  padding-left: 4px;
}
.gma-footer .gma-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gma-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gma-white);
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  padding-left: 0;
}
.gma-footer .gma-social-icon:hover {
  border-color: var(--gma-gold);
  color: var(--gma-gold);
  transform: translateY(-2px);
  padding-left: 0;
}
.gma-social-icon:hover {
  border-color: var(--gma-gold);
  color: var(--gma-gold);
}

.gma-disclaimer {
  background-color: var(--gma-black-soft);
  border: 1px dashed var(--gma-border);
  border-radius: var(--gma-radius);
  padding: 0.85rem 1.1rem;
  font-size: 0.82rem;
  color: var(--gma-gray);
}

/* ---------------------------------------------------------------------------
   Forms (public: contact / nominate)
   ------------------------------------------------------------------------- */
.gma-form-panel {
  background-color: var(--gma-black-soft);
  border: 1px solid var(--gma-border);
  border-radius: var(--gma-radius);
  padding: 2rem;
}
.form-control, .form-select {
  background-color: #0f0f12;
  border: 1px solid var(--gma-border);
  color: var(--gma-white);
}
.form-control:focus, .form-select:focus {
  background-color: #0f0f12;
  border-color: var(--gma-gold);
  color: var(--gma-white);
  box-shadow: 0 0 0 0.2rem rgba(252, 209, 22, 0.25);
}
.form-control::placeholder {
  color: var(--gma-gray);
}

.gma-back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--gma-gold);
  color: var(--gma-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: none;
  z-index: 1030;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
}
.gma-back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.gma-back-to-top:hover {
  background-color: var(--gma-gold-soft);
  transform: translateY(-2px);
}

@media (max-width: 767.98px) {
  .gma-section { padding: 3rem 0; }
}

/* ---------------------------------------------------------------------------
   Mobile responsiveness (all breakpoints)
   ------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  /* Navbar mobile */
  .gma-navbar .navbar-collapse { padding: 1rem 0; }
  .gma-navbar .nav-link { padding: 0.6rem 0.5rem !important; font-size: 0.82rem; }
  .gma-navbar .dropdown-menu { border: none; background: rgba(22,22,26,0.98); }
}

@media (max-width: 767.98px) {
  /* Sections */
  .gma-section { padding: 2.5rem 0; }
  .gma-section-title { font-size: 1.4rem; }
  .gma-section .d-flex.justify-content-between {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.75rem;
  }
  .gma-section .d-flex.justify-content-between > div {
    text-align: center;
  }
  .gma-section .d-flex.justify-content-between .btn {
    width: 100%;
  }

  /* Announcements prev/next button group */
  .gma-section .d-flex.justify-content-between > .d-flex.gap-2 {
    justify-content: center !important;
    width: 100%;
  }
  .gma-section .d-flex.justify-content-between > .d-flex.gap-2 .btn {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
  }

  /* Sponsor / partner logos */
  .gma-section .d-flex.flex-wrap.justify-content-center.gap-4 {
    gap: 1.5rem !important;
  }
  .gma-section .d-flex.flex-wrap.justify-content-center.gap-4 a {
    max-width: 110px !important;
  }
  .gma-section .d-flex.flex-wrap.justify-content-center.gap-4 img {
    max-height: 60px !important;
  }

  /* Cards */
  .gma-card__body { padding: 1rem; }
  .gma-card__title { font-size: 0.95rem; }

  /* Category pills */
  .gma-category-pill { font-size: 0.78rem; padding: 0.3rem 0.75rem; }

  /* Footer */
  .gma-footer { padding: 2.5rem 0 1rem; font-size: 0.85rem; }
  .gma-footer .row > div { padding-top: 1rem; border-top: 1px solid var(--gma-border); }
  .gma-footer .row > div:first-child { border-top: none; padding-top: 0; }
  .gma-footer h6 { font-size: 0.8rem; margin-bottom: 0.75rem; }
  .gma-footer ul li { margin-bottom: 0.5rem; }
  .gma-social-icon { width: 34px; height: 34px; }

  /* Newsletter form stacks on tablet */
  .gma-footer form.d-flex { flex-direction: column; gap: 0.5rem !important; }
  .gma-footer form.d-flex .form-control-sm { margin-bottom: 0; }
  .gma-footer form.d-flex .btn { width: 100%; }

  /* CTA band */
  .gma-cta-band { padding: 2.5rem 0; }
  .gma-cta-band h3 { font-size: 1.3rem; }
  .gma-cta-band .btn { width: 100%; }

  /* Announcements header buttons */
  .gma-section .d-flex.justify-content-between > .d-flex {
    justify-content: center !important;
  }

  /* About Learn More button */
  .gma-section.about-hero .btn { width: 100%; }

  /* Empty state buttons */
  .text-center .btn { width: 100%; max-width: 280px; }

  /* Footer bottom */
  .gma-footer .d-flex.flex-column { text-align: center; }

  /* Cookie banner */
  .gma-cookie-banner .container { flex-direction: column !important; text-align: center; }
  .gma-cookie-banner .container > div:first-child { width: 100%; }
  .gma-cookie-banner .d-flex.gap-2 { justify-content: center; }

  /* Forms */
  .gma-form-panel { padding: 1.25rem; }

  /* Video banner on mobile */
  .gma-video-banner__content h2 { font-size: 1rem; }
  .gma-video-banner__content p { font-size: 0.75rem; }
  .gma-video-banner__toggle { width: 1.8rem; height: 1.8rem; font-size: 0.7rem; bottom: 0.5rem; right: 0.5rem; }
  .gma-scroll-down { bottom: 0.5rem; font-size: 1.2rem; }

  /* Back to top */
  .gma-back-to-top { right: 1rem; bottom: 1rem; width: 2.5rem; height: 2.5rem; font-size: 1rem; }

  /* Nomination form accordion */
  .accordion-button { font-size: 0.82rem; padding: 0.75rem 1rem; }
  .accordion-body { padding: 0.75rem 1rem; }
  .accordion-body .form-label { font-size: 0.8rem; }
}

@media (max-width: 575.98px) {
  .gma-hero h1 { font-size: 1.5rem; }
  .gma-section-title { font-size: 1.2rem; }
  .gma-eyebrow { font-size: 0.7rem; }
  .accordion-button { font-size: 0.78rem; padding: 0.6rem 0.75rem; }

  /* Sponsor / partner logos smaller on phone */
  .gma-section .d-flex.flex-wrap.justify-content-center.gap-4 a {
    max-width: 90px !important;
  }
  .gma-section .d-flex.flex-wrap.justify-content-center.gap-4 img {
    max-height: 50px !important;
  }

  /* Footer form stacks vertically */
  .gma-footer .d-flex { flex-direction: column; }
  .gma-footer .form-control-sm { margin-bottom: 0.5rem; }
  .gma-footer .btn-sm { width: 100%; }
  .gma-footer { font-size: 0.82rem; }
  .gma-footer p { margin-bottom: 0.5rem; }
  .gma-footer .row > div { padding-top: 0.75rem; margin-bottom: 0.5rem; }

  /* CTA band tighter on phone */
  .gma-cta-band h3 { font-size: 1.1rem; }
  .gma-cta-band .btn { padding: 0.6rem 1.5rem; }

  /* Cookie banner compact */
  .gma-cookie-banner { padding: 0.75rem 0; }
  .gma-cookie-banner .btn { padding: 0.35rem 1rem; font-size: 0.78rem; }
}

/* Ticker on mobile — hide label and pseudo-element overlays */
@media (max-width: 575.98px) {
  .gma-ticker__track { padding-left: 1rem; }
  .gma-ticker::after { display: none; }
}

/* ---------------------------------------------------------------------------
   Page loader
   ------------------------------------------------------------------------- */
.gma-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--gma-black, #0b0b0d);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}
.gma-loader--hidden {
  opacity: 0;
  pointer-events: none;
}
.gma-loader__spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: var(--gma-gold, #fcd116);
  border-radius: 50%;
  animation: gma-spin 0.7s linear infinite;
}
@keyframes gma-spin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .gma-loader__spinner { animation-duration: 1.5s; }
}

/* ---------------------------------------------------------------------------
   Cookie consent banner
   ------------------------------------------------------------------------- */
.gma-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: rgba(11,11,13,0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--gma-border);
  padding: 1rem 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.gma-cookie-banner--visible {
  transform: translateY(0);
}

/* Smooth scrolling */
html { scroll-behavior: smooth; }

/* Prevent horizontal overflow globally */
body { overflow-x: hidden; }
img, video { max-width: 100%; height: auto; }
