@import url('https://fonts.googleapis.com/css2?family=Kufam:wght@400;500;600;700;800;900&family=DM+Sans:wght@400;500;700&display=swap');

:root {
  --maroon-dark: #5B1A2A;
  --maroon: #7D1921;
  --maroon-light: #9B2335;
  --gold: #C9A84C;
  --gold-light: #E8CC6E;
  --gold-gradient: linear-gradient(135deg, #C9A84C, #E8CC6E, #C9A84C);
  --bg-primary: #FAFAF8;
  --bg-section: #F3EDE5;
  --bg-card: #FFFFFF;
  --text-dark: #2D2D2D;
  --text-body: #4A4A4A;
  --text-muted: #7A7A7A;
  --glass-bg: rgba(255,255,255,0.85);
  --glass-border: rgba(125,25,33,0.12);
  --shadow-soft: 0 4px 24px rgba(91,26,42,0.08);
  --shadow-gold: 0 4px 30px rgba(201,168,76,0.18);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.06);
  --transition: 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  --font-heading: 'Kufam', sans-serif;
  --font-body: 'Kufam', sans-serif;
  --font-english: 'DM Sans', sans-serif;
  --radius: 16px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior:smooth; font-size:16px; overflow-x:hidden; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-body);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.8;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight:800; color: var(--text-dark); }

a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }
ul { list-style:none; }

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

/* ===== SECTION TITLE ===== */
.section-title {
  text-align:center;
  margin-bottom:60px;
  position:relative;
}
.section-title h2 {
  font-size:2.8rem;
  color: var(--maroon);
  display:inline-block;
  position:relative;
}
.section-title h2::after {
  content:'';
  position:absolute;
  bottom:-12px;
  right:50%;
  transform:translateX(50%);
  width:80px;
  height:3px;
  background: var(--gold-gradient);
  border-radius:2px;
}
.section-title p {
  color: var(--text-muted);
  font-size:1.1rem;
  margin-top:20px;
  max-width:700px;
  margin-inline:auto;
}

/* ===== NAVBAR ===== */
.navbar {
  position:fixed;
  top:0; right:0; left:0;
  z-index:1000;
  padding:18px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(250,250,248,0.95);
  backdrop-filter: blur(20px);
  padding:10px 0;
  border-bottom:1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
}
.navbar .container {
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.navbar .logo { display:flex; align-items:center; gap:12px; }
.navbar .logo img { height:50px; }
.navbar-logo {
  height:55px !important;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}
.navbar.scrolled .navbar-logo { height:45px !important; filter:none; }
.navbar-logo:hover {
  transform: scale(1.05);
}

/* Hero Logo */
.hero-logo-wrap {
  margin: 0 auto 24px;
  width: 240px;
  animation: fadeInDown 1s ease 0.1s both;
}
.hero-logo {
  width: 100%;
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(5deg) brightness(1.2) drop-shadow(0 0 25px rgba(212,168,83,0.6));
  animation: logoGlow 3s ease-in-out infinite alternate;
}
@keyframes logoGlow {
  0% { filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(5deg) brightness(1.1) drop-shadow(0 0 15px rgba(212,168,83,0.4)); }
  100% { filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(5deg) brightness(1.4) drop-shadow(0 0 40px rgba(212,168,83,0.8)); }
}

.navbar .logo span {
  font-family: var(--font-heading);
  font-size:1.3rem;
  font-weight:800;
  color: var(--maroon);
}
.nav-links { display:flex; align-items:center; gap:15px; }
.nav-links a {
  color: rgba(255,255,255,0.9);
  font-size:0.8rem;
  font-weight:600;
  position:relative;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a::after {
  content:'';
  position:absolute;
  bottom:-4px;
  right:0;
  width:0;
  height:2px;
  background: #fff;
  transition: var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width:100%; }
.navbar.scrolled .nav-links a { color: var(--text-body); }
.navbar.scrolled .nav-links a::after { background: var(--maroon); }
.navbar.scrolled .nav-links a:hover { color: var(--maroon); }

.nav-dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--bg-card);
  min-width: 160px;
  box-shadow: var(--shadow-card);
  border-radius: 8px;
  padding: 10px 0;
  z-index: 1000;
  border: 1px solid var(--glass-border);
  margin-top: 10px;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
}
.nav-dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu a {
  color: var(--text-body) !important;
  padding: 8px 20px;
  display: block;
  transition: var(--transition);
}
.dropdown-menu a::after { display: none !important; }
.dropdown-menu a:hover {
  background: var(--bg-primary);
  color: var(--maroon) !important;
}

.nav-cta {
  padding:8px 20px;
  background: rgba(255,255,255,0.2);
  border:1px solid rgba(255,255,255,0.5);
  color: #fff !important;
  border-radius:50px;
  font-weight:700;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-cta::after { display:none !important; }
.nav-cta:hover { transform:translateY(-2px); box-shadow: var(--shadow-gold); background: rgba(255,255,255,0.3); }
.navbar.scrolled .nav-cta { background: var(--maroon); border-color: var(--maroon); color: #fff !important; }
.navbar.scrolled .nav-cta:hover { background: var(--maroon-dark); }

.menu-toggle {
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  background:none;
  border:none;
  padding:5px;
  z-index: 1005;
}
.menu-toggle span {
  width:28px; height:2px;
  background: #fff;
  transition: var(--transition);
  border-radius:2px;
}
.navbar.scrolled .menu-toggle span { background: var(--maroon); }

/* Hamburger to X Animation */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--maroon) !important;
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--maroon) !important;
}

/* ===== HERO ===== */
.hero {
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
  background: var(--maroon-dark);
}
.hero-bg {
  position:absolute;
  inset:0;
  z-index:0;
  background: var(--maroon-dark);
}
.hero-bg img, .hero-bg video {
  width:100%; height:100%;
  object-fit:cover;
  opacity:0.8;
}

/* Video Loader */
.video-loader {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--maroon-dark);
  transition: opacity 0.8s ease;
}
.video-loader.hidden {
  opacity: 0;
  pointer-events: none;
}
.video-loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(201,168,76,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: loaderSpin 0.8s linear infinite;
}
@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

.hero-overlay {
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(91,26,42,0.6) 0%, rgba(61,15,28,0.85) 100%);
  z-index:1;
}
#particles-canvas {
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
}
.hero-content {
  position:relative;
  z-index:3;
  text-align:center;
  padding:120px 20px 80px;
  /* Smooth parallax transition */
  transition: transform 0.1s linear;
}
.hero-badge {
  display:inline-block;
  padding:8px 24px;
  border:1px solid var(--gold);
  border-radius:50px;
  color: var(--gold);
  font-size:0.9rem;
  font-weight:600;
  margin-bottom:30px;
  letter-spacing:1px;
  position: relative;
  overflow: hidden;
  background: rgba(201, 168, 76, 0.1);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.2);
  animation: fadeInDown 1s ease, pulseBadge 2s infinite alternate;
}
.hero-badge::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3s infinite;
}
@keyframes pulseBadge {
  0% { box-shadow: 0 0 10px rgba(201, 168, 76, 0.2); }
  100% { box-shadow: 0 0 25px rgba(201, 168, 76, 0.6); border-color: #FFE9A0; }
}
@keyframes shimmer {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}
.hero-medal {
  width:160px;
  height:160px;
  margin:0 auto 30px;
  position:relative;
  animation: float 4s ease-in-out infinite;
}
.hero-medal::before {
  content:'🏅';
  font-size:120px;
  display:block;
  filter: drop-shadow(0 0 30px rgba(212,168,83,0.5));
}
.hero h1 {
  font-size:3.5rem;
  line-height:1.3;
  margin-bottom:20px;
  animation: fadeInUp 0.8s ease 0s both;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, #F5D76E, #FFE9A0, #F5D76E);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.hero h1 .highlight-white {
  color: #fff;
  text-shadow: 0 2px 20px rgba(255,255,255,0.3);
}
.hero .tagline {
  font-size:1.25rem;
  color: rgba(255,255,255,0.85);
  max-width:700px;
  margin:0 auto 40px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-buttons {
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.btn-primary {
  padding:14px 36px;
  background: var(--gold-gradient);
  color: var(--maroon-dark);
  border-radius:50px;
  font-weight:700;
  font-size:1rem;
  border:none;
  cursor:pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.6), transparent);
  transform: skewX(-20deg);
  transition: var(--transition);
}
.btn-primary:hover::before {
  animation: shineSweep 1.5s ease;
}
@keyframes shineSweep {
  0% { left: -100%; }
  100% { left: 200%; }
}
.btn-primary:hover { transform:translateY(-3px); box-shadow: var(--shadow-gold); }
.btn-outline {
  padding:14px 36px;
  background:transparent;
  color: var(--gold);
  border:2px solid var(--gold);
  border-radius:50px;
  font-weight:700;
  font-size:1rem;
  cursor:pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.btn-outline:hover { background: var(--gold); color: var(--maroon-dark); }

.btn-facebook {
  padding:14px 36px;
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius:50px;
  font-weight:700;
  font-size:1rem;
  cursor:pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-gold);
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}
.btn-facebook svg {
  fill: var(--gold);
  transition: var(--transition);
}
.btn-facebook:hover {
  background: #1877F2;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.5);
  color: #fff;
}
.btn-facebook:hover svg {
  fill: #fff;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0.8;
}
.hero-scroll-indicator:hover {
  opacity: 1;
}
.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 20px;
  position: relative;
}
.mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollMouse 2s infinite cubic-bezier(0.15, 0.41, 0.69, 0.94);
}
@keyframes scrollMouse {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 15px); opacity: 0; }
}
.arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: -5px;
}
.arrows span {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: scrollArrows 2s infinite;
  margin-top: -4px;
}
.arrows span:nth-child(2) { animation-delay: 0.2s; }
.arrows span:nth-child(3) { animation-delay: 0.4s; }
@keyframes scrollArrows {
  0% { opacity: 0; transform: rotate(45deg) translate(-5px, -5px); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: rotate(45deg) translate(5px, 5px); }
}

/* ===== EDITION INFO (ABOUT) ===== */
.edition-info { 
  padding:120px 0; 
  background:var(--bg-primary); 
  text-align:center; 
  position: relative;
  overflow: hidden;
}
.edition-info::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: url("images/logo/logo2.png") no-repeat center;
  background-size: contain;
  opacity: 0.03;
  filter: grayscale(1);
  pointer-events: none;
}
.edition-content { max-width:850px; margin:0 auto; position: relative; z-index: 1; }
/* Removed title-ornament as requested */
.edition-quote {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  letter-spacing: 1px;
  color: var(--maroon-dark);
  margin-bottom: 40px;
  padding: 22px 70px;
  background: var(--gold-gradient);
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border-radius: 60px;
  box-shadow: 0 15px 40px rgba(201, 168, 76, 0.35);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.5);
}
.star-icon::before {
  content: '✦';
  font-size: 1.8rem;
  color: var(--maroon);
  opacity: 0.8;
}
.edition-quote::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 3rem;
  color: rgba(91, 26, 42, 0.15);
  font-family: serif;
}
.edition-quote::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: rotate(45deg);
  animation: shine 4s infinite;
}
@keyframes shine {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}
.edition-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 20px;
}
.about-features {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:16px;
  margin-top:40px;
}
.about-feature {
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
  background: var(--bg-card);
  border:1px solid var(--glass-border);
  border-radius:12px;
  transition: var(--transition);
  font-weight: 600;
  color: var(--maroon);
  box-shadow: var(--shadow-card);
}
.about-feature:hover {
  background: #fff;
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}
/* Removed old span styles to use parent button styles */

/* ===== WINNERS ===== */
.winners { padding:120px 0; background: var(--bg-section); }
.year-tabs {
  display:flex;
  justify-content:center;
  gap:12px;
  margin-bottom:50px;
}
.year-tab {
  padding:10px 30px;
  border:2px solid var(--glass-border);
  border-radius:50px;
  background:transparent;
  color: var(--text-body);
  font-family: var(--font-body);
  font-size:1rem;
  font-weight:600;
  cursor:pointer;
  transition: var(--transition);
}
.year-tab.active, .year-tab:hover {
  background: var(--maroon);
  color: #fff;
  border-color: var(--maroon);
}
.winners-grid {
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:30px;
}
.winner-card {
  text-align:center;
  transition: var(--transition);
  cursor:pointer;
}
.winner-card:hover { transform:translateY(-10px); }
.winner-avatar {
  width:140px;
  height:140px;
  margin:0 auto 16px;
  border-radius:50%;
  padding:4px;
  background: var(--gold-gradient);
  position:relative;
  overflow:hidden;
}
.winner-avatar img {
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
  border:3px solid var(--bg-card);
}
.winner-card h4 {
  font-size:1rem;
  font-weight:700;
  color: var(--text-dark);
  margin-bottom:4px;
}
.winner-card p {
  font-size:0.85rem;
  color: var(--text-muted);
}
.winners-panel { display:none; }
.winners-panel.active { display:block; }

/* ===== STATS ===== */
.stats {
  padding:80px 0;
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  position:relative;
  overflow:hidden;
}
.stats::before {
  content:'';
  position:absolute;
  inset:0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A853' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity:0.5;
}
.stats-grid {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:40px;
  position:relative;
  z-index:1;
}
.stat-item { text-align:center; }
.stat-number {
  font-family: var(--font-heading);
  font-size:3.5rem;
  font-weight:900;
  background: var(--gold-gradient);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  display:block;
}
.stat-label {
  font-size:1.1rem;
  color: rgba(255,255,255,0.85);
  margin-top:8px;
}

/* ===== GALLERY ===== */
.gallery { padding:120px 0; background: var(--bg-primary); }
.gallery-grid {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:20px;
}
.gallery-item {
  position:relative;
  border-radius:16px;
  overflow:hidden;
  aspect-ratio:4/3;
  cursor:pointer;
}
.gallery-item img {
  width:100%; height:100%;
  object-fit:cover;
  transition: var(--transition);
}
.gallery-item:hover img { transform:scale(1.1); }
.gallery-item::after {
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(58,10,31,0.8), transparent);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition: var(--transition);
}
.gallery-item:hover::after { opacity:1; }
.gallery-item::before {
  content:'';
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%, -50%) scale(0.5);
  width:40px; height:40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23F5D76E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E") no-repeat center;
  z-index:2;
  opacity:0;
  transition: all 0.4s ease;
}
.gallery-item:hover::before { opacity:1; transform:translate(-50%, -50%) scale(1); }

/* ===== VIDEO JOURNEY ===== */
.video-journey { padding:100px 0; background: var(--bg-primary); }
.video-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}
.video-text {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.8;
}
.video-wrapper {
  width: 100%;
  max-width: 560px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--glass-border);
  display: flex;
  justify-content: center;
  background: var(--bg-card);
}

/* ===== JURY ===== */
.jury { padding:120px 0; background: var(--bg-section); }
.jury-grid {
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:30px;
}
.jury-card {
  background: var(--bg-card);
  border:1px solid var(--glass-border);
  border-radius:20px;
  padding:30px 20px;
  text-align:center;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.jury-card:hover {
  transform:translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}
.jury-avatar {
  width:110px;
  height:110px;
  margin:0 auto 16px;
  border-radius:50%;
  padding:3px;
  background: var(--gold-gradient);
}
.jury-avatar img {
  width:100%; height:100%;
  object-fit:cover;
  border-radius:50%;
  border:3px solid var(--bg-card);
}
.jury-card h4 { font-size:0.95rem; color: var(--text-dark); margin-bottom:6px; }
.jury-card p { font-size:0.8rem; color: var(--text-muted); }

/* ===== SPONSORS ===== */
.sponsors { padding:100px 0; background: var(--bg-primary); }
.sponsors-grid {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:30px;
  max-width:900px;
  margin:0 auto;
}
.sponsor-item {
  padding:20px;
  background: var(--bg-card);
  border:1px solid var(--glass-border);
  border-radius:16px;
  transition: var(--transition);
  text-align:center;
  box-shadow: var(--shadow-card);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
.sponsor-item img {
  max-width:160px;
  max-height:140px;
  object-fit:contain;
  margin:0 auto;
  filter: grayscale(0);
  opacity: 1;
  transition: var(--transition);
}
.sponsor-item:hover img {
  transform: scale(1.08);
}
.sponsor-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform:translateY(-8px);
}
.sponsor-item span {
  font-size:0.85rem;
  font-weight:600;
  color: var(--text-muted);
  margin-top:8px;
}

/* ===== FOOTER ===== */
.footer {
  padding:60px 0 30px;
  background: var(--maroon-dark);
  border-top:3px solid var(--gold);
}
.footer-grid {
  display:grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap:50px;
  margin-bottom:40px;
}
.footer-about h3 {
  color: var(--gold);
  font-size:1.5rem;
  margin-bottom:16px;
}
.footer-about p { color: rgba(255,255,255,0.7); font-size:0.95rem; }
.footer-links h4, .footer-contact h4 {
  color: var(--gold);
  font-size:1.1rem;
  margin-bottom:16px;
}
.footer-links a {
  display:block;
  color: rgba(255,255,255,0.7);
  padding:6px 0;
  transition: var(--transition);
  font-size:0.95rem;
}
.footer-links a:hover { color: var(--gold); padding-right:8px; }
.footer-contact p { color: rgba(255,255,255,0.7); font-size:0.95rem; margin-bottom:8px; }
.footer-bottom {
  text-align:center;
  padding-top:30px;
  border-top:1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  font-size:0.85rem;
}

/* ===== EDITION INFO ===== */
.edition-info { padding:100px 0; background: var(--bg-section); }
.edition-content { max-width:900px; margin:0 auto; }
.edition-content p { color:var(--text-body); font-size:1.05rem; margin-bottom:18px; line-height:1.9; }
.edition-quote {
  border-right:4px solid var(--gold);
  padding:20px 30px;
  margin:30px 0;
  background:var(--bg-card);
  border-radius:0 12px 12px 0;
  font-size:1.15rem;
  color:var(--maroon);
  font-style:italic;
  box-shadow: var(--shadow-card);
}

/* ===== TIMELINE ===== */
.timeline-section { padding:120px 0; background:var(--bg-primary); }
.timeline { position:relative; max-width:1100px; margin:0 auto; padding: 0 20px; }
.timeline::before {
  content:''; position:absolute; right:50%; top:0; bottom:0;
  width:4px; background:var(--gold-gradient); transform:translateX(50%);
}
.timeline-item {
  position:relative; width:47%; margin-bottom:70px;
  padding:40px; background:var(--bg-card); border:1px solid var(--glass-border);
  border-radius:24px; transition:var(--transition); box-shadow:var(--shadow-card);
}
.timeline-item:hover { border-color:var(--gold); box-shadow:var(--shadow-gold); transform: translateY(-8px); }
.timeline-item:nth-child(odd) { margin-right:auto; margin-left:3%; }
.timeline-item:nth-child(even) { margin-left:auto; margin-right:3%; }
.timeline-item::before {
  content:''; position:absolute; top:40px; width:20px; height:20px;
  background:var(--gold); border-radius:50%; border:4px solid var(--bg-primary);
  z-index:2;
}
.timeline-item:nth-child(odd)::before { left:-13px; }
.timeline-item:nth-child(even)::before { right:-13px; }
.timeline-date {
  display:inline-block; padding:6px 18px; background:var(--maroon);
  color:#fff; border-radius:24px; font-size:0.9rem;
  font-weight:700; margin-bottom:15px;
}
.timeline-item h4 { color:var(--maroon); font-size:1.3rem; margin-bottom:12px; }
.timeline-item p { color:var(--text-body); font-size:1rem; line-height:1.8; }

/* ===== MEDIA FACE ===== */
.media-face { padding:100px 0; background:var(--bg-section); }
.media-face-grid { display:grid; grid-template-columns:440px 1fr; gap:60px; align-items:center; }
.media-face-img {
  width:100%;
  position: relative;
  z-index: 2;
}
.media-face-img img { 
  width:100%; height:auto; display:block; 
  filter: drop-shadow(0 10px 20px rgba(201, 168, 76, 0.25));
  transition: transform 0.4s ease, filter 0.4s ease;
  will-change: transform, filter;
}
.media-face-img:hover img {
  transform: translateY(-8px);
  filter: drop-shadow(0 20px 40px rgba(201, 168, 76, 0.4));
}
.media-face-text h3 {
  font-size:1.8rem; margin-bottom:8px;
  color:var(--maroon);
}
.media-face-text .subtitle { color:var(--gold); font-size:1rem; margin-bottom:16px; font-weight:600; }
.media-face-text p { color:var(--text-body); font-size:1rem; margin-bottom:12px; line-height:1.8; }

/* ===== WINNER DETAILS ===== */
.winner-card { position:relative; }
.winner-card .winner-city { font-size:0.75rem; color:var(--gold); margin-top:2px; }
.winner-card .winner-bio-btn {
  display:inline-block; margin-top:8px; padding:4px 14px;
  border:1px solid var(--maroon); border-radius:20px; color:var(--maroon);
  font-size:0.75rem; cursor:pointer; transition:var(--transition);
  background:transparent; font-family:var(--font-body);
}
.winner-card .winner-bio-btn:hover { background:var(--maroon); color:#fff; }

/* ===== WINNER MODAL ===== */
.winner-modal {
  position:fixed; inset:0; background:rgba(0,0,0,0.6);
  z-index:10000; display:none; align-items:center; justify-content:center;
  padding:20px; backdrop-filter:blur(10px);
}
.winner-modal.active { display:flex; }
.winner-modal-content {
  background:var(--bg-card); border:1px solid var(--glass-border);
  border-radius:24px; max-width:650px; width:100%; max-height:85vh;
  overflow-y:auto; padding:40px; position:relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.winner-modal-close {
  position:absolute; top:16px; left:16px; width:36px; height:36px;
  border-radius:50%; border:1px solid var(--glass-border); background:var(--bg-section);
  color:var(--text-dark); font-size:1.2rem; cursor:pointer; transition:var(--transition);
  display:flex; align-items:center; justify-content:center;
}
.winner-modal-close:hover { border-color:var(--maroon); color:var(--maroon); }
.winner-modal-header { display:flex; align-items:center; gap:20px; margin-bottom:24px; }
.winner-modal-avatar {
  width:200px; height:200px; border-radius:50%; padding:6px;
  background:var(--gold-gradient); flex-shrink:0;
  box-shadow: 0 12px 35px rgba(201, 168, 76, 0.3);
}
.winner-modal-avatar img { width:100%; height:100%; object-fit:cover; border-radius:50%; border: 4px solid var(--bg-card); }
.winner-modal-header h3 {
  font-size:1.4rem; color:var(--maroon);
}
.winner-modal-header .modal-subtitle { color:var(--text-muted); font-size:0.9rem; margin-top:4px; }
.winner-modal-body p { color:var(--text-body); font-size:0.95rem; line-height:1.9; }

/* ===== CEREMONY ===== */
.ceremony { padding: 120px 0; background: var(--bg-primary); }
.ceremony-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.ceremony-text p {
  font-size: 1.05rem;
  line-height: 2;
  color: var(--text-body);
  margin-bottom: 20px;
  text-align: justify;
}
.ceremony-text p:first-child {
  font-size: 1.15rem;
  color: var(--maroon);
  font-weight: 600;
  border-right: 4px solid var(--gold);
  padding-right: 20px;
  background: linear-gradient(to left, rgba(201, 168, 76, 0.05), transparent);
  padding-top: 10px;
  padding-bottom: 10px;
}
.ceremony-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.ceremony-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(91, 26, 42, 0.12);
  border: 3px solid transparent;
  transition: var(--transition);
}
.ceremony-img:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}
.ceremony-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.ceremony-img:hover img {
  transform: scale(1.08);
}
.ceremony-img-main {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}
.ceremony-img-sub1,
.ceremony-img-sub2 {
  aspect-ratio: 4/3;
}

/* ===== NOMINEES ===== */
.nominees { padding:100px 0; background:var(--bg-section); }
.nominees-list {
  display:grid; grid-template-columns:repeat(5,1fr); gap:16px;
  max-width:900px; margin:0 auto;
}
.nominee-item {
  text-align:center; padding:16px 8px; background:var(--bg-card);
  border:1px solid var(--glass-border); border-radius:12px;
  transition:var(--transition); font-size:0.95rem; color:var(--text-dark);
  box-shadow:var(--shadow-card);
  font-weight: 600;
}
.nominee-item:hover { 
  border-color:var(--gold); 
  color:var(--maroon); 
  transform:translateY(-6px); 
  box-shadow: 0 10px 25px rgba(201, 168, 76, 0.2); 
  background: #fff;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position:fixed; inset:0; background:rgba(0,0,0,0.95);
  z-index:9999; display:none; align-items:center; justify-content:center; cursor:pointer;
}
.lightbox.active { display:flex; }
.lightbox img { max-width:90vw; max-height:90vh; object-fit:contain; border-radius:12px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(40px); }
  to { opacity:1; transform:translateY(0); }
}
@keyframes fadeInDown {
  from { opacity:0; transform:translateY(-30px); }
  to { opacity:1; transform:translateY(0); }
}
@keyframes float {
  0%,100% { transform:translateY(0); }
  50% { transform:translateY(-15px); }
}
.reveal {
  opacity:0;
  transform:translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
.reveal.visible {
  opacity:1;
  transform:translateY(0);
}

/* ===== BACK TO TOP BUTTON ===== */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--maroon);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}
#back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#back-to-top:hover {
  background: var(--gold);
  color: var(--maroon-dark);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

/* ===== ACCESSIBILITY WIDGET ===== */
.accessibility-widget {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 1100;
}
.acc-toggle {
  width: 50px;
  height: 50px;
  background: #0056b3;
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.acc-toggle:hover {
  background: #004494;
  transform: scale(1.1);
}
.acc-menu {
  position: absolute;
  bottom: 60px;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-card);
  border-radius: 12px;
  padding: 15px;
  width: 180px;
  display: none;
  flex-direction: column;
  gap: 10px;
}
.acc-menu.show { display: flex; }
.acc-menu h4 {
  font-size: 0.95rem;
  color: var(--maroon);
  margin-bottom: 5px;
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 8px;
}
.acc-menu button {
  background: var(--bg-section);
  border: 1px solid var(--glass-border);
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  font-weight: 600;
  color: var(--text-dark);
  text-align: right;
  font-size: 0.85rem;
}
.acc-menu button:hover, .acc-menu button.active {
  background: var(--gold);
  color: var(--maroon-dark);
}

/* Accessibility States */
html.acc-large-text {
  font-size: 115% !important; /* Scales all rem units site-wide proportionally! */
}

body.acc-high-contrast {
  --bg-primary: #000000 !important;
  --bg-section: #111111 !important;
  --bg-card: #000000 !important;
  --text-dark: #ffffff !important;
  --text-body: #ffffff !important;
  --text-muted: #dddddd !important;
  --maroon: #FFEB3B !important;
  --gold: #FFEB3B !important;
  --maroon-dark: #000000 !important;
}
body.acc-high-contrast * {
  background-image: none !important; /* Remove all gradients and pattern backgrounds */
  box-shadow: none !important;
  text-shadow: none !important;
  border-color: #FFEB3B !important;
}
body.acc-high-contrast p, 
body.acc-high-contrast h1, 
body.acc-high-contrast h2, 
body.acc-high-contrast h3,
body.acc-high-contrast span,
body.acc-high-contrast a,
body.acc-high-contrast .navbar-logo { 
  filter: contrast(200%) !important; 
}

/* ===== JUDGING PHASE ===== */
.judging-phase {
  padding: 120px 0;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}
.judging-phase::before {
  content: '';
  position: absolute;
  bottom: -5%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: url("images/logo/logo2.png") no-repeat center;
  background-size: contain;
  opacity: 0.03;
  filter: grayscale(1);
  pointer-events: none;
}
.judging-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.judging-text p {
  font-size: 1.05rem;
  line-height: 2;
  color: var(--text-body);
  margin-bottom: 18px;
  position: relative;
}
.judging-text p:first-child::before {
  content: '';
  position: absolute;
  top: 0;
  right: -20px;
  width: 4px;
  height: 100%;
  background: var(--gold-gradient);
  border-radius: 4px;
}
.judging-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.judging-img-main,
.judging-img-secondary {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(91, 26, 42, 0.12);
  border: 3px solid transparent;
  transition: var(--transition);
}
.judging-img-main {
  grid-row: 1;
  grid-column: 1;
  aspect-ratio: 4/3;
}
.judging-img-secondary {
  grid-row: 1;
  grid-column: 2;
  aspect-ratio: 4/3;
}
.judging-img-main img,
.judging-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.judging-img-main:hover,
.judging-img-secondary:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.judging-img-main:hover img,
.judging-img-secondary:hover img {
  transform: scale(1.05);
}

/* Criteria Cards */
.judging-criteria {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.criteria-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.criteria-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.criteria-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.criteria-card:hover::after {
  transform: scaleX(1);
}
.criteria-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 2px solid rgba(201, 168, 76, 0.25);
  transition: var(--transition);
}
.criteria-card:hover .criteria-icon {
  background: var(--gold-gradient);
  color: var(--maroon-dark);
  border-color: var(--gold);
  transform: scale(1.1);
}
.criteria-card h4 {
  font-size: 1rem;
  color: var(--maroon);
  margin-bottom: 8px;
  font-weight: 700;
}
.criteria-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Judging Stats Bar */
.judging-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 35px 50px;
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(91, 26, 42, 0.25);
}
.judging-stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A853' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.judging-stat {
  text-align: center;
  position: relative;
  z-index: 1;
}
.judging-stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1.2;
}
.judging-stat-label {
  font-size: 0.95rem;
  color: #ffffff;
  margin-top: 4px;
  display: block;
}
.judging-stat-divider {
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.5), transparent);
  position: relative;
  z-index: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .winners-grid { grid-template-columns: repeat(3, 1fr); }
  .jury-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap:30px; }
  .about-grid { grid-template-columns:1fr; gap:40px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .media-face-grid { grid-template-columns:1fr; text-align:center; }
  .about-features { grid-template-columns: repeat(2, 1fr); }
  .nominees-list { grid-template-columns:repeat(3,1fr); }
  .ceremony-layout { grid-template-columns: 1fr; gap: 40px; }
  .judging-layout { grid-template-columns: 1fr; gap: 40px; }
  .judging-criteria { grid-template-columns: repeat(2, 1fr); }
  .judging-stats-bar { gap: 30px; padding: 30px 30px; }
  
  .nav-links { 
    display:none; position:fixed; top:0; right:0;
    width:280px; height:100vh; background:rgba(250,250,248,0.98);
    backdrop-filter:blur(20px); flex-direction:column;
    padding:80px 30px 30px; gap:10px;
    border-left:1px solid var(--glass-border);
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    overflow-y: auto;
  }
  .nav-links.open { display:flex !important; }
  .menu-toggle { display:flex !important; }
  
  /* Mobile Menu Link Colors and Style */
  .nav-links a {
    color: var(--maroon-dark) !important;
    font-size: 1.05rem;
    font-weight: 700;
    width: 100%;
    text-align: right;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .nav-links a:hover {
    color: var(--gold) !important;
  }
  .nav-links a::after {
    display: none !important; /* Remove horizontal line animation */
  }
  
  .nav-dropdown {
    width: 100%;
    text-align: right;
  }
  .dropdown-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0 15px;
    border: none;
    border-right: 2px solid var(--gold);
    border-radius: 0;
    margin-top: 5px;
  }
  .dropdown-menu a {
    color: var(--maroon) !important;
    font-size: 0.95rem;
    padding: 8px 15px;
    border-bottom: none;
  }
  .nav-links .nav-cta {
    background: var(--maroon) !important;
    color: #fff !important;
    border: none !important;
    text-align: center;
    border-radius: 50px;
    padding: 12px 24px;
    margin-top: 15px;
  }
  .nav-links .nav-cta:hover {
    background: var(--maroon-dark) !important;
    color: #fff !important;
  }
}

@media (max-width: 768px) {
  .hero h1 { font-size:2.2rem; }
  .hero .tagline { font-size:1rem; }
  .section-title h2 { font-size:2rem; }
  .winners-grid { grid-template-columns:repeat(2,1fr); gap:20px; }
  .gallery-grid { grid-template-columns:repeat(2,1fr); }
  .jury-grid { grid-template-columns:repeat(2,1fr); }
  .sponsors-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr; }
  .hero-medal { width:120px; height:120px; }
  .hero-medal::before { font-size:80px; }
  .timeline::before { right:20px; }
  .timeline-item { width:calc(100% - 50px); margin-right:0 !important; margin-left:auto !important; }
  .timeline-item::before { right:-13px !important; left:auto !important; }
  .nominees-list { grid-template-columns:repeat(2,1fr); }
  .ceremony-layout { text-align: center; }
  .ceremony-text p:first-child { text-align: right; }
  .media-face-img { width:100%; max-width:320px; margin:0 auto; }
  .judging-images { grid-template-columns: 1fr; }
  .judging-criteria { grid-template-columns: 1fr 1fr; }
  .judging-stats-bar { flex-direction: column; gap: 20px; padding: 30px 20px; }
  .judging-stat-divider { width: 50px; height: 2px; background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.5), transparent); }
  .judging-text p:first-child::before { right: -12px; }
}

@media (max-width: 480px) {
  .winners-grid { grid-template-columns:1fr 1fr; }
  .gallery-grid { grid-template-columns:1fr; }
  .stats-grid { grid-template-columns:1fr 1fr; }
  .sponsors-grid { grid-template-columns:1fr 1fr; }
  .hero h1 { font-size:1.8rem; }
  .winner-avatar { width:100px; height:100px; }
  .nominees-list { grid-template-columns:1fr 1fr; }
  .winner-modal-content { padding:24px; }
  .winner-modal-header { flex-direction:column; text-align:center; }
  .judging-criteria { grid-template-columns: 1fr; }
  .judging-stat-number { font-size: 2.2rem; }
}

/* ===== SPONSOR LOGO PLACEHOLDER ===== */
.sponsor-logo-placeholder {
  width:80px; height:80px; margin:0 auto 12px;
  border-radius:12px; background:var(--bg-section);
  border:2px dashed var(--glass-border);
  display:flex; align-items:center; justify-content:center;
  position:relative;
}
.sponsor-logo-placeholder::after {
  content:'';
  font-size:1.8rem;
  opacity:0.4;
}
.sponsor-item {
  display:flex; flex-direction:column; align-items:center;
}

/* ===== MAJARAT PATTERN ===== */
.majarat-divider {
  height:60px;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23C9A84C' stroke-width='1' opacity='0.15'%3E%3Ccircle cx='40' cy='40' r='20'/%3E%3Ccircle cx='40' cy='40' r='12'/%3E%3Ccircle cx='40' cy='40' r='4'/%3E%3Cline x1='20' y1='40' x2='60' y2='40'/%3E%3Cline x1='40' y1='20' x2='40' y2='60'/%3E%3Cline x1='25.86' y1='25.86' x2='54.14' y2='54.14'/%3E%3Cline x1='54.14' y1='25.86' x2='25.86' y2='54.14'/%3E%3C/g%3E%3C/svg%3E") repeat;
  opacity:0.6;
}

/* ===== MODERN SECTION DIVIDER ===== */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  background: transparent;
}
.divider-svg {
  width: 240px;
  height: auto;
  opacity: 0.55;
  transition: var(--transition);
}
.section-divider:hover .divider-svg {
  opacity: 0.9;
  transform: scale(1.03);
}
