:root {
  --primary-dark: #002b28;
  --primary-medium: #003d38;
  --primary-light: #66686a;
  --accent-teal: #e57e3a;
  --accent-gold: #cfb53b;
  --text-white: #ffffff;
  --text-dim: #aebdbb;
  --glass-bg: rgba(255, 255, 255, .05);
  --border-color: rgba(255, 255, 255, .1)
}

.sidebar {
  width: 90px;
  background: #001f1d;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-inline-end: 1px solid var(--border-color);
  z-index: 100;
  padding: 20px 0
}

.logo-area {
  align-items: center;
  gap: 12px;
  cursor: pointer
}

.logo-area img {
  height: 30px
}

.nav-icons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  width: 100%;
  align-items: center;
  overflow-y: auto;
  scrollbar-width: none;
  padding: 10px 0
}

.nav-icons::-webkit-scrollbar {
  display: none
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: transparent;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.nav-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor
}

.nav-btn:hover {
  background: #ffffff0d;
  color: var(--accent-teal)
}

.nav-btn.active {
  background: var(--accent-teal);
  color: var(--primary-dark);
  box-shadow: 0 0 15px #9cebc84d
}

.nav-btn:after {
  content: attr(title);
  position: absolute;
  inset-inline-start: 70px;
  background: var(--accent-teal);
  color: var(--primary-dark);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  z-index: 1000
}

.nav-btn:hover:after {
  opacity: 1
}

.back-home-btn {
  margin-top: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff1a;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s
}

.back-home-btn:hover {
  background: var(--accent-gold);
  color: var(--primary-dark)
}

.back-home-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor
}

.content-area {
  flex: 1;
  position: relative;
  padding: 0;
  background: linear-gradient(135deg, #001a18 0%, var(--primary-dark) 50%, #002b28 100%);
  overflow: hidden
}

.content-section {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .5s cubic-bezier(.25, .8, .25, 1);
  overflow-y: auto;
  padding: 40px
}

.content-section::-webkit-scrollbar {
  width: 6px
}

.content-section::-webkit-scrollbar-track {
  background: #0000001a
}

.content-section::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 3px
}

.section-header {
  margin-bottom: 30px;
  text-align: center
}

.hero-header {
  background: linear-gradient(135deg, #66686acc, #2f3133e6), url(https://images.unsplash.com/photo-1492684223066-81342ee5ff30?w=1600) center/cover;
  border-radius: 20px;
  padding: 60px;
  margin-bottom: 30px;
  text-align: center
}

.badge {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--primary-dark);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 15px
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
  color: var(--text-white)
}

.hero-content p {
  font-size: 18px;
  color: var(--text-dim)
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px
}

.stats-grid>* {
  flex: 0 0 calc(25% - 15px);
  max-width: calc(25% - 15px);
  min-width: calc(25% - 15px)
}

.stat-card {
  background: #4a4c4fcc;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: .3s;
  border: 1px solid transparent
}

.stat-card:hover {
  border-color: var(--accent-teal);
  transform: translateY(-5px)
}

.stat-icon {
  font-size: 40px;
  margin-bottom: 15px
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-teal);
  display: block;
  margin-bottom: 5px
}

.stat-label {
  color: var(--text-dim);
  font-size: 14px
}

.categories-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 20px
}

.categories-preview>* {
  flex: 0 0 calc(33.3333% - (20px * 2 / 3));
  max-width: calc(33.3333% - (20px * 2 / 3));
  min-width: calc(33.3333% - (20px * 2 / 3))
}

.cat-item {
  position: relative;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: .3s
}

.cat-item:hover {
  transform: translateY(-5px)
}

.cat-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s
}

.cat-item:hover .cat-bg {
  transform: scale(1.1)
}

.cat-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .9) 0%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px
}

.cat-overlay h3 {
  color: var(--accent-teal);
  margin-bottom: 8px
}

.cat-overlay p {
  font-size: 13px;
  color: var(--text-dim)
}

.events-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 20px
}

.events-showcase>* {
  flex: 0 0 calc(50% - 10px);
  max-width: calc(50% - 10px)
}

.event-card {
  background: #0006;
  border-radius: 15px;
  overflow: hidden;
  transition: .3s
}

.event-card:hover {
  transform: translateY(-5px)
}

.event-card.featured {
  grid-column: span 2;
  display: flex;
  flex-wrap: wrap
}

.event-card.featured>* {
  flex: 0 0 50%;
  max-width: 50%
}

.event-image {
  height: 250px;
  background-size: cover;
  background-position: center
}

.event-card.featured .event-image {
  height: 100%
}

.event-content {
  padding: 25px;
  position: relative
}

.event-tag {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--primary-dark);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px
}

.event-content h2,
.event-content h3 {
  color: var(--accent-teal);
  margin-bottom: 10px
}

.event-meta {
  margin-top: 15px;
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: var(--text-dim)
}

.activities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px
}

.activities-grid>* {
  flex: 0 0 calc(33.3333% - (25px * 2 / 3));
  max-width: calc(33.3333% - (25px * 2 / 3));
  min-width: calc(33.3333% - (25px * 2 / 3))
}

.activity-box {
  background: #0006;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid transparent;
  transition: .3s
}

.activity-box:hover {
  border-color: var(--accent-teal);
  transform: translateY(-5px)
}

.activity-icon {
  font-size: 50px;
  margin-bottom: 15px
}

.activity-box h3 {
  color: var(--accent-teal);
  margin-bottom: 10px
}

.activity-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: start
}

.activity-features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-size: 13px
}

.register-btn {
  background: var(--accent-teal);
  color: var(--primary-dark);
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 700;
  transition: .3s;
  margin-top: 15px
}

.register-btn:hover {
  background: var(--accent-gold)
}

.family-activities {
  display: flex;
  flex-wrap: wrap;
  gap: 20px
}

.family-activities>* {
  flex: 0 0 calc(50% - 10px);
  max-width: calc(50% - 10px)
}

.family-card {
  background: #4a4c4fcc;
  border-radius: 15px;
  overflow: hidden;
  transition: .3s
}

.family-card:hover {
  transform: translateY(-5px)
}

.family-card.large {
  grid-column: span 3;
  display: flex;
  flex-wrap: wrap
}

.family-card.large>* {
  flex: 1
}

.family-img {
  height: 200px;
  background-size: cover;
  background-position: center
}

.family-card.large .family-img {
  height: 100%
}

.family-info {
  padding: 25px
}

.freq-badge {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--primary-dark);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px
}

.family-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0
}

.family-includes>* {
  flex: 0 0 calc(50% - 5px);
  max-width: calc(50% - 5px)
}

.family-includes span {
  background: #0003;
  padding: 8px;
  border-radius: 8px;
  font-size: 12px
}

.date-info {
  background: var(--accent-teal);
  color: var(--primary-dark);
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  margin-top: 15px
}

.culture-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px
}

.culture-grid>* {
  flex: 0 0 calc(33.3333% - (20px * 2 / 3));
  max-width: calc(33.3333% - (20px * 2 / 3));
  min-width: calc(33.3333% - (20px * 2 / 3))
}

.culture-item {
  background: #0006;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: .3s;
  border: 1px solid transparent
}

.culture-item:hover {
  border-color: var(--accent-teal);
  background: #9cebc80d
}

.culture-icon {
  font-size: 40px;
  margin-bottom: 15px
}

.culture-date {
  display: block;
  margin-top: 15px;
  color: var(--accent-gold);
  font-size: 12px
}

.workshops-list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px
}

.workshops-list>* {
  flex: 0 0 calc(50% - 12.5px);
  max-width: calc(50% - 12.5px);
  min-width: calc(50% - 12.5px)
}

.workshop-card {
  background: #0006;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: .3s
}

.workshop-card:hover {
  border-color: var(--accent-teal);
  transform: translateY(-3px)
}

.workshop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px
}

.workshop-cat {
  background: var(--accent-teal);
  color: var(--primary-dark);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 700
}

.workshop-level {
  background: #ffffff1a;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 11px
}

.workshop-details {
  display: flex;
  gap: 15px;
  margin: 15px 0;
  font-size: 13px;
  color: var(--text-dim)
}

.workshop-btn {
  width: 100%;
  background: transparent;
  border: 1px solid var(--accent-teal);
  color: var(--accent-teal);
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  transition: .3s;
  margin-top: 10px
}

.workshop-btn:hover {
  background: var(--accent-teal);
  color: var(--primary-dark)
}

.food-festivals {
  display: flex;
  flex-direction: column;
  gap: 30px
}

.festival-banner {
  display: flex;
  flex-wrap: wrap;
  background: #4a4c4fcc;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color)
}

.festival-banner>* {
  flex: 1
}

.festival-image {
  background-size: cover;
  background-position: center;
  min-height: 300px
}

.festival-content {
  padding: 40px
}

.festival-badge {
  background: var(--accent-gold);
  color: var(--primary-dark);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 15px
}

.festival-info {
  margin-top: 20px
}

.info-item {
  margin: 10px 0
}

.info-item strong {
  color: var(--accent-teal);
  margin-inline-end: 10px
}

.food-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px
}

.food-highlights>* {
  flex: 0 0 calc(33.3333% - (20px * 2 / 3));
  max-width: calc(33.3333% - (20px * 2 / 3));
  min-width: calc(33.3333% - (20px * 2 / 3))
}

.highlight-item {
  background: #4a4c4fcc;
  padding: 25px;
  border-radius: 15px;
  text-align: center
}

.highlight-icon {
  font-size: 40px;
  margin-bottom: 10px;
  display: block
}

.charity-initiatives {
  display: flex;
  flex-wrap: wrap;
  gap: 25px
}

.charity-initiatives>* {
  flex: 0 0 calc(50% - 12.5px);
  max-width: calc(50% - 12.5px);
  min-width: calc(50% - 12.5px)
}

.initiative-card {
  padding: 30px;
  border-radius: 15px;
  border-inline-start: 4px solid
}

.initiative-card.green {
  background: #0006;
  border-color: #2ecc71
}

.initiative-card.blue {
  background: #0006;
  border-color: #3498db
}

.initiative-card.orange {
  background: #0006;
  border-color: #e67e22
}

.initiative-card.red {
  background: #0006;
  border-color: #e74c3c
}

.init-icon {
  font-size: 40px;
  margin-bottom: 15px
}

.init-stats {
  display: flex;
  gap: 30px;
  margin-top: 20px
}

.init-stat {
  text-align: center
}

.init-stat strong {
  display: block;
  font-size: 28px;
  color: var(--accent-teal)
}

.init-stat span {
  font-size: 12px;
  color: var(--text-dim)
}

.entertainment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px
}

.entertainment-grid>* {
  flex: 0 0 calc(25% - 15px);
  max-width: calc(25% - 15px);
  min-width: calc(25% - 15px)
}

.entertainment-card {
  border-radius: 15px;
  overflow: hidden;
  transition: .3s;
  cursor: pointer
}

.entertainment-card:hover {
  transform: translateY(-5px)
}

.ent-img {
  height: 180px;
  background-size: cover;
  background-position: center
}

.ent-info {
  background: #4a4c4fcc;
  padding: 20px
}

.ent-freq {
  display: block;
  margin-top: 10px;
  color: var(--accent-gold);
  font-size: 12px
}

.competitions-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 30px
}

.competitions-layout>* {
  flex: 1
}

.current-comp {
  background: #4a4c4fcc;
  padding: 40px;
  border-radius: 20px;
  border: 2px solid var(--accent-teal);
  position: relative
}

.comp-badge {
  position: absolute;
  top: 20px;
  inset-inline-end: 20px;
  background: var(--accent-gold);
  color: var(--primary-dark);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700
}

.prizes {
  display: flex;
  gap: 20px;
  margin: 30px 0
}

.prize {
  flex: 1;
  text-align: center;
  padding: 25px;
  border-radius: 15px
}

.prize.gold {
  background: linear-gradient(135deg, gold, #ffed4e);
  color: #000
}

.prize.silver {
  background: linear-gradient(135deg, silver, #e8e8e8);
  color: #000
}

.prize.bronze {
  background: linear-gradient(135deg, #cd7f32, #e59866);
  color: #000
}

.prize-medal {
  font-size: 40px;
  margin-bottom: 10px
}

.prize-value {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px
}

.prize-label {
  font-size: 12px
}

.comp-deadline {
  background: #e74c3c1a;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  margin: 20px 0;
  border: 1px solid #e74c3c
}

.participate-btn {
  width: 100%;
  background: var(--accent-teal);
  color: var(--primary-dark);
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: .3s
}

.participate-btn:hover {
  background: var(--accent-gold)
}

.upcoming-comps {
  background: #4a4c4fcc;
  padding: 25px;
  border-radius: 15px
}

.upcoming-comps h3 {
  color: var(--accent-teal);
  margin-bottom: 20px
}

.upcoming-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: #0003;
  border-radius: 10px;
  margin-bottom: 10px
}

.up-icon {
  font-size: 30px
}

.up-info h4 {
  font-size: 14px;
  margin-bottom: 5px
}

.up-date {
  font-size: 11px;
  color: var(--accent-gold)
}

.partners-content {
  display: flex;
  flex-direction: column;
  gap: 30px
}

.partners-intro {
  background: #4a4c4fcc;
  padding: 30px;
  border-radius: 15px;
  text-align: center
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px
}

.partners-grid>* {
  flex: 0 0 calc(25% - 15px);
  max-width: calc(25% - 15px);
  min-width: calc(25% - 15px)
}

.partner-card {
  background: #4a4c4fcc;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: .3s
}

.partner-card:hover {
  background: #9cebc80d;
  transform: translateY(-3px)
}

.partner-logo {
  font-size: 50px;
  margin-bottom: 15px
}

.sponsorship-cta {
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-gold));
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  color: var(--primary-dark)
}

.contact-btn {
  background: var(--primary-dark);
  color: var(--accent-teal);
  border: none;
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 20px;
  transition: .3s
}

.contact-btn:hover {
  background: #000
}

.calendar-view {
  display: flex;
  flex-wrap: wrap;
  gap: 25px
}

.calendar-view>* {
  flex: 0 0 calc(50% - 12.5px);
  max-width: calc(50% - 12.5px);
  min-width: calc(50% - 12.5px)
}

.month-section {
  background: #0006;
  padding: 25px;
  border-radius: 15px
}

.month-header {
  background: #2f3133cc;
  color: #b5b7ba;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px
}

.events-timeline {
  display: flex;
  flex-direction: column;
  gap: 15px
}

.timeline-event {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  background: #0009;
  border-radius: 10px;
  border-inline-start: 3px solid var(--accent-gold)
}

.event-date {
  color: var(--accent-teal);
  font-weight: 700;
  font-size: 13px
}

.event-name {
  color: var(--text-white);
  font-size: 13px
}

@media (max-width: 1024px) {
  .stats-grid>* {
    flex: 0 0 calc(50% - 12.5px);
    max-width: calc(50% - 12.5px);
    min-width: calc(50% - 12.5px)
  }

  .categories-preview>* {
    flex: 1 1 auto
  }

  .events-showcase>* {
    flex: 1 1 auto
  }

  .event-card.featured {
    grid-column: span 1
  }

  .event-card.featured>* {
    flex: 1 1 auto
  }

  .activities-grid>* {
    flex: 1 1 auto
  }

  .family-activities>* {
    flex: 1 1 auto
  }

  .family-card.large {
    grid-column: span 1
  }

  .family-card.large>* {
    flex: 1 1 auto
  }

  .culture-grid>* {
    flex: 0 0 calc(50% - 12.5px);
    max-width: calc(50% - 12.5px);
    min-width: calc(50% - 12.5px)
  }

  .workshops-list>* {
    flex: 1 1 auto
  }

  .entertainment-grid>* {
    flex: 0 0 calc(50% - 12.5px);
    max-width: calc(50% - 12.5px);
    min-width: calc(50% - 12.5px)
  }

  .competitions-layout>* {
    flex: 1 1 auto
  }

  .calendar-view>* {
    flex: 1 1 auto
  }
}

.bottom-nav-extended {
  position: fixed;
  bottom: 0;
  inset-inline-end: 0;
  inset-inline-start: 0;
  background: #002b28fa;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  padding: 8px 5px;
  border-top: 1px solid rgba(229, 126, 58, .2);
  z-index: 1000;
  box-shadow: 0 -5px 20px #0000004d
}

.bottom-nav-extended>* {
  flex: 0 0 calc(10% - 1.8px);
  max-width: calc(10% - 1.8px);
  min-width: calc(10% - 1.8px)
}

.nav-item-ext {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 4px;
  cursor: pointer;
  border-radius: 10px;
  transition: all .3s ease;
  color: var(--text-dim);
  position: relative
}

.nav-item-ext:hover {
  background: #9cebc81a;
  color: var(--accent-teal);
  transform: translateY(-2px)
}

.nav-item-ext.active {
  background: #9cebc826;
  color: var(--accent-teal)
}

.nav-item-ext svg {
  flex-shrink: 0
}

.nav-item-ext span {
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap
}

.nav-item-ext.nav-more:after {
  content: "";
  position: absolute;
  top: 6px;
  inset-inline-start: 6px;
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
  animation: pulse 2s infinite
}

.extended-menu-popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease
}

.extended-menu-popup.active {
  pointer-events: auto;
  opacity: 1
}

.extended-menu-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000c;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px)
}

.extended-menu-content {
  position: absolute;
  bottom: 60px;
  inset-inline-end: 0;
  inset-inline-start: 0;
  max-height: 75vh;
  background: var(--primary-dark);
  border-radius: 25px 25px 0 0;
  padding: 25px 20px;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.25, .8, .25, 1);
  overflow-y: auto;
  box-shadow: 0 -10px 40px #00000080
}

.extended-menu-popup.active .extended-menu-content {
  transform: translateY(0)
}

.extended-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(229, 126, 58, .2)
}

.extended-menu-header h3 {
  color: var(--accent-teal);
  font-size: 20px;
  font-weight: 700
}

.close-extended-menu {
  background: #ffffff1a;
  border: none;
  color: var(--text-white);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all .3s
}

.close-extended-menu:hover {
  background: var(--accent-teal);
  color: var(--primary-dark);
  transform: rotate(90deg)
}

.extended-menu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px
}

.extended-menu-grid>* {
  flex: 0 0 calc(50% - 10px);
  max-width: calc(50% - 10px);
  min-width: calc(50% - 10px)
}

.extended-menu-section h4 {
  color: var(--accent-teal);
  font-size: 13px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 600
}

.extended-menu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #ffffff0d;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-white);
  transition: all .3s;
  border: 1px solid transparent;
  margin-bottom: 8px
}

.extended-menu-link:hover {
  background: #9cebc81a;
  border-color: var(--accent-teal);
  transform: translate(-3px)
}

.extended-menu-link .link-icon {
  font-size: 22px;
  flex-shrink: 0
}

.extended-menu-link span:last-child {
  font-size: 14px;
  font-weight: 500
}

.extended-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1)
}

.extended-quick-actions>* {
  flex: 0 0 calc(50% - 5px);
  max-width: calc(50% - 5px);
  min-width: calc(50% - 5px)
}

.quick-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: var(--accent-teal);
  color: var(--primary-dark);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all .3s
}

.quick-action-btn:hover {
  background: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px #9cebc84d
}

.extended-menu-content::-webkit-scrollbar {
  width: 6px
}

.extended-menu-content::-webkit-scrollbar-track {
  background: #0000001a
}

.extended-menu-content::-webkit-scrollbar-thumb {
  background: var(--accent-teal);
  border-radius: 3px
}

@media (max-width: 1024px) {
  .bottom-nav-extended>* {
    flex: 0 0 calc(20% - 20px);
    max-width: calc(20% - 20px);
    min-width: calc(20% - 20px)
  }

  .nav-item-ext:nth-child(n+6) {
    display: none
  }

  .nav-item-ext.nav-more {
    display: flex
  }
}

@media (max-width: 768px) {
  .bottom-nav-extended {
    padding: 6px 3px
  }

  .bottom-nav-extended>* {
    flex: 0 0 calc(20% - 20px);
    max-width: calc(20% - 20px);
    min-width: calc(20% - 20px)
  }

  .nav-item-ext {
    padding: 6px 2px
  }

  .nav-item-ext span {
    font-size: 9px
  }

  .nav-item-ext svg {
    width: 18px;
    height: 18px
  }

  .extended-menu-grid>* {
    flex: 1 1 auto
  }

  .extended-menu-content {
    padding: 20px 15px;
    max-height: 80vh
  }

  .extended-quick-actions>* {
    flex: 1 1 auto
  }

  .festival-banner {
    margin-bottom: 20px
  }

  .festival-banner>* {
    flex: 1 1 auto
  }

  .food-highlights>*,
  .charity-initiatives>*,
  .entertainment-grid>*,
  .partners-grid>*,
  .culture-grid>* {
    flex: 0 0 calc(100% + -0px);
    max-width: calc(100% + -0px);
    min-width: calc(100% + -0px)
  }

  .prizes {
    flex-direction: column
  }
}

@media (max-width: 480px) {
  .bottom-nav-extended>* {
    flex: 0 0 calc(20% - 20px);
    max-width: calc(20% - 20px);
    min-width: calc(20% - 20px)
  }

  .nav-item-ext span {
    font-size: 8px
  }

  .extended-menu-header h3 {
    font-size: 18px
  }

  .extended-menu-link {
    padding: 10px
  }

  .quick-action-btn {
    font-size: 12px;
    padding: 10px
  }
}

.bottom-nav {
  display: none
}

.extended-menu-note {
  background: #9cebc81a;
  border: 1px solid rgba(156, 235, 200, .3);
  border-radius: 10px;
  padding: 15px;
  margin-top: 20px;
  text-align: center
}

.extended-menu-note p {
  color: var(--accent-teal);
  font-size: 12px;
  margin: 0;
  line-height: 1.5
}

.extended-menu-link.main-page {
  background: #9cebc814;
  border: 1px solid rgba(229, 126, 58, .2)
}

@media (max-width: 768px) {
  .nav-item-ext span {
    font-size: 8.5px;
    max-width: 55px;
    overflow: hidden;
    text-overflow: ellipsis
  }
}

@media (max-width: 380px) {
  .bottom-nav-extended {
    padding: 5px 2px
  }

  .bottom-nav-extended>* {
    flex: 0 0 calc(20% - 20px);
    max-width: calc(20% - 20px);
    min-width: calc(20% - 20px)
  }

  .nav-item-ext {
    padding: 5px 1px
  }

  .nav-item-ext svg {
    width: 16px;
    height: 16px
  }

  .nav-item-ext span {
    font-size: 7.5px
  }

  .nav-item-ext:nth-child(n+6):not(.nav-more) {
    display: none
  }
}

.nav-item-ext:nth-child(-n+9) {
  position: relative
}

.nav-item-ext:nth-child(-n+9):hover:before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-end: 50%;
  transform: translate(-50%);
  width: 30px;
  height: 2px;
  background: var(--accent-teal);
  border-radius: 2px
}

@media (max-width: 1024px) and (min-width: 769px) {
  .bottom-nav-extended>* {
    flex: 0 0 calc(20% - 20px);
    max-width: calc(20% - 20px);
    min-width: calc(20% - 20px)
  }

  .nav-item-ext:nth-child(n+6):not(.nav-more) {
    display: none
  }

  .nav-item-ext.nav-more {
    display: flex
  }
}

@media (min-width: 1400px) {
  .bottom-nav-extended {
    padding: 10px 20px;
    max-width: 1400px;
    margin: 0 auto;
    inset-inline-end: 50%;
    transform: translate(-50%);
    border-radius: 20px 20px 0 0
  }

  .nav-item-ext {
    padding: 10px 8px
  }

  .nav-item-ext span {
    font-size: 11px
  }
}

.content-area {
  flex: 1;
  position: relative;
  padding: 0;
  background: linear-gradient(135deg, #001a18 0%, var(--primary-dark) 50%, #002b28 100%);
  overflow: hidden;
  margin-top: var(--header-height);
  height: calc(100vh - var(--header-height));
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain
}

.content-section {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .5s cubic-bezier(.25, .8, .25, 1);
  height: 100%;
  overflow: hidden;
  padding: 0;
  -webkit-overflow-scrolling: touch
}

.content-section.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.content-section::-webkit-scrollbar {
  display: none
}

.section-header {
  margin-bottom: 30px;
  text-align: center;
  overflow: hidden;
  padding: 0 40px;
  position: relative;
  flex-shrink: 0
}

.section-header h1 {
  font-size: 36px;
  color: var(--accent-teal);
  margin-bottom: 10px
}

.section-header p {
  color: var(--text-dim);
  font-size: 16px
}

@media (max-width: 768px) {

  .food-festivals::-webkit-scrollbar-thumb,
  .events-showcase::-webkit-scrollbar-thumb,
  .workshops-list::-webkit-scrollbar-thumb,
  .activities-grid::-webkit-scrollbar-thumb,
  .family-activities::-webkit-scrollbar-thumb,
  .culture-grid::-webkit-scrollbar-thumb,
  .charity-initiatives::-webkit-scrollbar-thumb,
  .entertainment-grid::-webkit-scrollbar-thumb,
  .partners-grid::-webkit-scrollbar-thumb,
  .calendar-view::-webkit-scrollbar-thumb,
  .partners-content::-webkit-scrollbar-thumb,
  .competitions-layout::-webkit-scrollbar-thumb {
    border-radius: 2px;
    --primary-dark: #002b28;
    --primary-medium: #003d38;
    --primary-light: #66686a;
    --accent-teal: #e57e3a;
    --accent-gold: #cfb53b;
    --text-white: #ffffff;
    --text-dim: #aebdbb;
    --glass-bg: rgba(255, 255, 255, .05);
    --border-color: rgba(255, 255, 255, .1)
  }

  .sidebar {
    width: 90px;
    background: #001f1d;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-inline-end: 1px solid var(--border-color);
    z-index: 100;
    padding: 20px 0
  }

  .logo-area {
    align-items: center;
    gap: 12px;
    cursor: pointer
  }

  .logo-area img {
    height: 30px
  }

  .nav-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    width: 100%;
    align-items: center;
    overflow-y: auto;
    scrollbar-width: none;
    padding: 10px 0
  }

  .nav-icons::-webkit-scrollbar {
    display: none
  }

  .nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: transparent;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
  }

  .nav-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor
  }

  .nav-btn:hover {
    background: #ffffff0d;
    color: var(--accent-teal)
  }

  .nav-btn.active {
    background: var(--accent-teal);
    color: var(--primary-dark);
    box-shadow: 0 0 15px #9cebc84d
  }

  .nav-btn:after {
    content: attr(title);
    position: absolute;
    inset-inline-start: 70px;
    background: var(--accent-teal);
    color: var(--primary-dark);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
    z-index: 1000
  }

  .nav-btn:hover:after {
    opacity: 1
  }

  .back-home-btn {
    margin-top: auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff1a;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s
  }

  .back-home-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-dark)
  }

  .back-home-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor
  }

  .content-area {
    flex: 1;
    position: relative;
    padding: 0;
    background: linear-gradient(135deg, #001a18 0%, var(--primary-dark) 50%, #002b28 100%);
    overflow: hidden
  }

  .content-section {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .5s cubic-bezier(.25, .8, .25, 1);
    overflow-y: auto;
    padding: 40px
  }

  .content-section::-webkit-scrollbar {
    width: 6px
  }

  .content-section::-webkit-scrollbar-track {
    background: #0000001a
  }

  .content-section::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 3px
  }

  .section-header {
    margin-bottom: 30px;
    text-align: center
  }

  .hero-header {
    background: linear-gradient(135deg, #66686acc, #2f3133e6), url(https://images.unsplash.com/photo-1492684223066-81342ee5ff30?w=1600) center/cover;
    border-radius: 20px;
    padding: 60px;
    margin-bottom: 30px;
    text-align: center
  }

  .badge {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px
  }

  .hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--text-white)
  }

  .hero-content p {
    font-size: 18px;
    color: var(--text-dim)
  }

  .stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px
  }

  .stats-grid>* {
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
    min-width: calc(25% - 15px)
  }

  .stat-card {
    background: #4a4c4fcc;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: .3s;
    border: 1px solid transparent
  }

  .stat-card:hover {
    border-color: var(--accent-teal);
    transform: translateY(-5px)
  }

  .stat-icon {
    font-size: 40px;
    margin-bottom: 15px
  }

  .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-teal);
    display: block;
    margin-bottom: 5px
  }

  .stat-label {
    color: var(--text-dim);
    font-size: 14px
  }

  .categories-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
  }

  .categories-preview>* {
    flex: 0 0 calc(33.3333% - (20px * 2 / 3));
    max-width: calc(33.3333% - (20px * 2 / 3));
    min-width: calc(33.3333% - (20px * 2 / 3))
  }

  .cat-item {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: .3s
  }

  .cat-item:hover {
    transform: translateY(-5px)
  }

  .cat-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    transition: transform .5s
  }

  .cat-item:hover .cat-bg {
    transform: scale(1.1)
  }

  .cat-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .9) 0%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px
  }

  .cat-overlay h3 {
    color: var(--accent-teal);
    margin-bottom: 8px
  }

  .cat-overlay p {
    font-size: 13px;
    color: var(--text-dim)
  }

  .events-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
  }

  .events-showcase>* {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px)
  }

  .event-card {
    background: #0006;
    border-radius: 15px;
    overflow: hidden;
    transition: .3s
  }

  .event-card:hover {
    transform: translateY(-5px)
  }

  .event-card.featured {
    grid-column: span 2;
    display: flex;
    flex-wrap: wrap
  }

  .event-card.featured>* {
    flex: 0 0 50%;
    max-width: 50%
  }

  .event-image {
    height: 250px;
    background-size: cover;
    background-position: center
  }

  .event-card.featured .event-image {
    height: 100%
  }

  .event-content {
    padding: 25px;
    position: relative
  }

  .event-tag {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 10px
  }

  .event-content h2,
  .event-content h3 {
    color: var(--accent-teal);
    margin-bottom: 10px
  }

  .event-meta {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-dim)
  }

  .activities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px
  }

  .activities-grid>* {
    flex: 0 0 calc(33.3333% - (25px * 2 / 3));
    max-width: calc(33.3333% - (25px * 2 / 3));
    min-width: calc(33.3333% - (25px * 2 / 3))
  }

  .activity-box {
    background: #0006;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: .3s
  }

  .activity-box:hover {
    border-color: var(--accent-teal);
    transform: translateY(-5px)
  }

  .activity-icon {
    font-size: 50px;
    margin-bottom: 15px
  }

  .activity-box h3 {
    color: var(--accent-teal);
    margin-bottom: 10px
  }

  .activity-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: start
  }

  .activity-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-size: 13px
  }

  .register-btn {
    background: var(--accent-teal);
    color: var(--primary-dark);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    transition: .3s;
    margin-top: 15px
  }

  .register-btn:hover {
    background: var(--accent-gold)
  }

  .family-activities {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
  }

  .family-activities>* {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px)
  }

  .family-card {
    background: #4a4c4fcc;
    border-radius: 15px;
    overflow: hidden;
    transition: .3s
  }

  .family-card:hover {
    transform: translateY(-5px)
  }

  .family-card.large {
    grid-column: span 3;
    display: flex;
    flex-wrap: wrap
  }

  .family-card.large>* {
    flex: 1
  }

  .family-img {
    height: 200px;
    background-size: cover;
    background-position: center
  }

  .family-card.large .family-img {
    height: 100%
  }

  .family-info {
    padding: 25px
  }

  .freq-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 10px
  }

  .family-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0
  }

  .family-includes>* {
    flex: 0 0 calc(50% - 5px);
    max-width: calc(50% - 5px)
  }

  .family-includes span {
    background: #0003;
    padding: 8px;
    border-radius: 8px;
    font-size: 12px
  }

  .date-info {
    background: var(--accent-teal);
    color: var(--primary-dark);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    margin-top: 15px
  }

  .culture-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
  }

  .culture-grid>* {
    flex: 0 0 calc(33.3333% - (20px * 2 / 3));
    max-width: calc(33.3333% - (20px * 2 / 3));
    min-width: calc(33.3333% - (20px * 2 / 3))
  }

  .culture-item {
    background: #0006;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: .3s;
    border: 1px solid transparent
  }

  .culture-item:hover {
    border-color: var(--accent-teal);
    background: #9cebc80d
  }

  .culture-icon {
    font-size: 40px;
    margin-bottom: 15px
  }

  .culture-date {
    display: block;
    margin-top: 15px;
    color: var(--accent-gold);
    font-size: 12px
  }

  .workshops-list {
    display: flex;
    flex-wrap: wrap;
    gap: 25px
  }

  .workshops-list>* {
    flex: 0 0 calc(50% - 12.5px);
    max-width: calc(50% - 12.5px);
    min-width: calc(50% - 12.5px)
  }

  .workshop-card {
    background: #0006;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: .3s
  }

  .workshop-card:hover {
    border-color: var(--accent-teal);
    transform: translateY(-3px)
  }

  .workshop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px
  }

  .workshop-cat {
    background: var(--accent-teal);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700
  }

  .workshop-level {
    background: #ffffff1a;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px
  }

  .workshop-details {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    font-size: 13px;
    color: var(--text-dim)
  }

  .workshop-btn {
    width: 100%;
    background: transparent;
    border: 1px solid var(--accent-teal);
    color: var(--accent-teal);
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: .3s;
    margin-top: 10px
  }

  .workshop-btn:hover {
    background: var(--accent-teal);
    color: var(--primary-dark)
  }

  .food-festivals {
    display: flex;
    flex-direction: column;
    gap: 30px
  }

  .festival-banner {
    display: flex;
    flex-wrap: wrap;
    background: #4a4c4fcc;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color)
  }

  .festival-banner>* {
    flex: 1
  }

  .festival-image {
    background-size: cover;
    background-position: center;
    min-height: 300px
  }

  .festival-content {
    padding: 40px
  }

  .festival-badge {
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px
  }

  .festival-info {
    margin-top: 20px
  }

  .info-item {
    margin: 10px 0
  }

  .info-item strong {
    color: var(--accent-teal);
    margin-inline-end: 10px
  }

  .food-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
  }

  .food-highlights>* {
    flex: 0 0 calc(33.3333% - (20px * 2 / 3));
    max-width: calc(33.3333% - (20px * 2 / 3));
    min-width: calc(33.3333% - (20px * 2 / 3))
  }

  .highlight-item {
    background: #4a4c4fcc;
    padding: 25px;
    border-radius: 15px;
    text-align: center
  }

  .highlight-icon {
    font-size: 40px;
    margin-bottom: 10px;
    display: block
  }

  .charity-initiatives {
    display: flex;
    flex-wrap: wrap;
    gap: 25px
  }

  .charity-initiatives>* {
    flex: 0 0 calc(50% - 12.5px);
    max-width: calc(50% - 12.5px);
    min-width: calc(50% - 12.5px)
  }

  .initiative-card {
    padding: 30px;
    border-radius: 15px;
    border-inline-start: 4px solid
  }

  .initiative-card.green {
    background: #0006;
    border-color: #2ecc71
  }

  .initiative-card.blue {
    background: #0006;
    border-color: #3498db
  }

  .initiative-card.orange {
    background: #0006;
    border-color: #e67e22
  }

  .initiative-card.red {
    background: #0006;
    border-color: #e74c3c
  }

  .init-icon {
    font-size: 40px;
    margin-bottom: 15px
  }

  .init-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px
  }

  .init-stat {
    text-align: center
  }

  .init-stat strong {
    display: block;
    font-size: 28px;
    color: var(--accent-teal)
  }

  .init-stat span {
    font-size: 12px;
    color: var(--text-dim)
  }

  .entertainment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
  }

  .entertainment-grid>* {
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
    min-width: calc(25% - 15px)
  }

  .entertainment-card {
    border-radius: 15px;
    overflow: hidden;
    transition: .3s;
    cursor: pointer
  }

  .entertainment-card:hover {
    transform: translateY(-5px)
  }

  .ent-img {
    height: 180px;
    background-size: cover;
    background-position: center
  }

  .ent-info {
    background: #4a4c4fcc;
    padding: 20px
  }

  .ent-freq {
    display: block;
    margin-top: 10px;
    color: var(--accent-gold);
    font-size: 12px
  }

  .competitions-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px
  }

  .competitions-layout>* {
    flex: 1
  }

  .current-comp {
    background: #4a4c4fcc;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--accent-teal);
    position: relative
  }

  .comp-badge {
    position: absolute;
    top: 20px;
    inset-inline-end: 20px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700
  }

  .prizes {
    display: flex;
    gap: 20px;
    margin: 30px 0
  }

  .prize {
    flex: 1;
    text-align: center;
    padding: 25px;
    border-radius: 15px
  }

  .prize.gold {
    background: linear-gradient(135deg, gold, #ffed4e);
    color: #000
  }

  .prize.silver {
    background: linear-gradient(135deg, silver, #e8e8e8);
    color: #000
  }

  .prize.bronze {
    background: linear-gradient(135deg, #cd7f32, #e59866);
    color: #000
  }

  .prize-medal {
    font-size: 40px;
    margin-bottom: 10px
  }

  .prize-value {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px
  }

  .prize-label {
    font-size: 12px
  }

  .comp-deadline {
    background: #e74c3c1a;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
    border: 1px solid #e74c3c
  }

  .participate-btn {
    width: 100%;
    background: var(--accent-teal);
    color: var(--primary-dark);
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: .3s
  }

  .participate-btn:hover {
    background: var(--accent-gold)
  }

  .upcoming-comps {
    background: #4a4c4fcc;
    padding: 25px;
    border-radius: 15px
  }

  .upcoming-comps h3 {
    color: var(--accent-teal);
    margin-bottom: 20px
  }

  .upcoming-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #0003;
    border-radius: 10px;
    margin-bottom: 10px
  }

  .up-icon {
    font-size: 30px
  }

  .up-info h4 {
    font-size: 14px;
    margin-bottom: 5px
  }

  .up-date {
    font-size: 11px;
    color: var(--accent-gold)
  }

  .partners-content {
    display: flex;
    flex-direction: column;
    gap: 30px
  }

  .partners-intro {
    background: #4a4c4fcc;
    padding: 30px;
    border-radius: 15px;
    text-align: center
  }

  .partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
  }

  .partners-grid>* {
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
    min-width: calc(25% - 15px)
  }

  .partner-card {
    background: #4a4c4fcc;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: .3s
  }

  .partner-card:hover {
    background: #9cebc80d;
    transform: translateY(-3px)
  }

  .partner-logo {
    font-size: 50px;
    margin-bottom: 15px
  }

  .sponsorship-cta {
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-gold));
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: var(--primary-dark)
  }

  .contact-btn {
    background: var(--primary-dark);
    color: var(--accent-teal);
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    transition: .3s
  }

  .contact-btn:hover {
    background: #000
  }

  .calendar-view {
    display: flex;
    flex-wrap: wrap;
    gap: 25px
  }

  .calendar-view>* {
    flex: 0 0 calc(50% - 12.5px);
    max-width: calc(50% - 12.5px);
    min-width: calc(50% - 12.5px)
  }

  .month-section {
    background: #0006;
    padding: 25px;
    border-radius: 15px
  }

  .month-header {
    background: #2f3133cc;
    color: #b5b7ba;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px
  }

  .events-timeline {
    display: flex;
    flex-direction: column;
    gap: 15px
  }

  .timeline-event {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: #0009;
    border-radius: 10px;
    border-inline-start: 3px solid var(--accent-gold)
  }

  .event-date {
    color: var(--accent-teal);
    font-weight: 700;
    font-size: 13px
  }

  .event-name {
    color: var(--text-white);
    font-size: 13px
  }

  @media (max-width: 1024px) {
    .stats-grid>* {
      flex: 0 0 calc(50% - 12.5px);
      max-width: calc(50% - 12.5px);
      min-width: calc(50% - 12.5px)
    }

    .categories-preview>* {
      flex: 1 1 auto
    }

    .events-showcase>* {
      flex: 1 1 auto
    }

    .event-card.featured {
      grid-column: span 1
    }

    .event-card.featured>* {
      flex: 1 1 auto
    }

    .activities-grid>* {
      flex: 1 1 auto
    }

    .family-activities>* {
      flex: 1 1 auto
    }

    .family-card.large {
      grid-column: span 1
    }

    .family-card.large>* {
      flex: 1 1 auto
    }

    .culture-grid>* {
      flex: 0 0 calc(50% - 12.5px);
      max-width: calc(50% - 12.5px);
      min-width: calc(50% - 12.5px)
    }

    .workshops-list>* {
      flex: 1 1 auto
    }

    .entertainment-grid>* {
      flex: 0 0 calc(50% - 12.5px);
      max-width: calc(50% - 12.5px);
      min-width: calc(50% - 12.5px)
    }

    .competitions-layout>* {
      flex: 1 1 auto
    }

    .calendar-view>* {
      flex: 1 1 auto
    }
  }

  .bottom-nav-extended {
    position: fixed;
    bottom: 0;
    inset-inline-end: 0;
    inset-inline-start: 0;
    background: #002b28fa;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    padding: 8px 5px;
    border-top: 1px solid rgba(229, 126, 58, .2);
    z-index: 1000;
    box-shadow: 0 -5px 20px #0000004d
  }

  .bottom-nav-extended>* {
    flex: 0 0 calc(10% - 1.8px);
    max-width: calc(10% - 1.8px);
    min-width: calc(10% - 1.8px)
  }

  .nav-item-ext {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 4px;
    cursor: pointer;
    border-radius: 10px;
    transition: all .3s ease;
    color: var(--text-dim);
    position: relative
  }

  .nav-item-ext:hover {
    background: #9cebc81a;
    color: var(--accent-teal);
    transform: translateY(-2px)
  }

  .nav-item-ext.active {
    background: #9cebc826;
    color: var(--accent-teal)
  }

  .nav-item-ext svg {
    flex-shrink: 0
  }

  .nav-item-ext span {
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap
  }

  .nav-item-ext.nav-more:after {
    content: "";
    position: absolute;
    top: 6px;
    inset-inline-start: 6px;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulse 2s infinite
  }

  .extended-menu-popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s ease
  }

  .extended-menu-popup.active {
    pointer-events: auto;
    opacity: 1
  }

  .extended-menu-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000c;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px)
  }

  .extended-menu-content {
    position: absolute;
    bottom: 60px;
    inset-inline-end: 0;
    inset-inline-start: 0;
    max-height: 75vh;
    background: var(--primary-dark);
    border-radius: 25px 25px 0 0;
    padding: 25px 20px;
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.25, .8, .25, 1);
    overflow-y: auto;
    box-shadow: 0 -10px 40px #00000080
  }

  .extended-menu-popup.active .extended-menu-content {
    transform: translateY(0)
  }

  .extended-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(229, 126, 58, .2)
  }

  .extended-menu-header h3 {
    color: var(--accent-teal);
    font-size: 20px;
    font-weight: 700
  }

  .close-extended-menu {
    background: #ffffff1a;
    border: none;
    color: var(--text-white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all .3s
  }

  .close-extended-menu:hover {
    background: var(--accent-teal);
    color: var(--primary-dark);
    transform: rotate(90deg)
  }

  .extended-menu-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px
  }

  .extended-menu-grid>* {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    min-width: calc(50% - 10px)
  }

  .extended-menu-section h4 {
    color: var(--accent-teal);
    font-size: 13px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600
  }

  .extended-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #ffffff0d;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-white);
    transition: all .3s;
    border: 1px solid transparent;
    margin-bottom: 8px
  }

  .extended-menu-link:hover {
    background: #9cebc81a;
    border-color: var(--accent-teal);
    transform: translate(-3px)
  }

  .extended-menu-link .link-icon {
    font-size: 22px;
    flex-shrink: 0
  }

  .extended-menu-link span:last-child {
    font-size: 14px;
    font-weight: 500
  }

  .extended-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1)
  }

  .extended-quick-actions>* {
    flex: 0 0 calc(50% - 5px);
    max-width: calc(50% - 5px);
    min-width: calc(50% - 5px)
  }

  .quick-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: var(--accent-teal);
    color: var(--primary-dark);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all .3s
  }

  .quick-action-btn:hover {
    background: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px #9cebc84d
  }

  .extended-menu-content::-webkit-scrollbar {
    width: 6px
  }

  .extended-menu-content::-webkit-scrollbar-track {
    background: #0000001a
  }

  .extended-menu-content::-webkit-scrollbar-thumb {
    background: var(--accent-teal);
    border-radius: 3px
  }

  @media (max-width: 1024px) {
    .bottom-nav-extended>* {
      flex: 0 0 calc(20% - 20px);
      max-width: calc(20% - 20px);
      min-width: calc(20% - 20px)
    }

    .nav-item-ext:nth-child(n+6) {
      display: none
    }

    .nav-item-ext.nav-more {
      display: flex
    }
  }

  .bottom-nav-extended {
    padding: 6px 3px
  }

  .bottom-nav-extended>* {
    flex: 0 0 calc(20% - 20px);
    max-width: calc(20% - 20px);
    min-width: calc(20% - 20px)
  }

  .nav-item-ext {
    padding: 6px 2px
  }

  .nav-item-ext span {
    font-size: 9px
  }

  .nav-item-ext svg {
    width: 18px;
    height: 18px
  }

  .extended-menu-grid>* {
    flex: 1 1 auto
  }

  .extended-menu-content {
    padding: 20px 15px;
    max-height: 80vh
  }

  .extended-quick-actions>* {
    flex: 1 1 auto
  }

  .festival-banner {
    margin-bottom: 20px
  }

  .festival-banner>* {
    flex: 1 1 auto
  }

  .food-highlights>*,
  .charity-initiatives>*,
  .entertainment-grid>*,
  .partners-grid>*,
  .culture-grid>* {
    flex: 0 0 calc(100% + -0px);
    max-width: calc(100% + -0px);
    min-width: calc(100% + -0px)
  }

  .prizes {
    flex-direction: column
  }

  @media (max-width: 480px) {
    .bottom-nav-extended>* {
      flex: 0 0 calc(20% - 20px);
      max-width: calc(20% - 20px);
      min-width: calc(20% - 20px)
    }

    .nav-item-ext span {
      font-size: 8px
    }

    .extended-menu-header h3 {
      font-size: 18px
    }

    .extended-menu-link {
      padding: 10px
    }

    .quick-action-btn {
      font-size: 12px;
      padding: 10px
    }
  }

  .bottom-nav {
    display: none
  }

  .extended-menu-note {
    background: #9cebc81a;
    border: 1px solid rgba(156, 235, 200, .3);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    text-align: center
  }

  .extended-menu-note p {
    color: var(--accent-teal);
    font-size: 12px;
    margin: 0;
    line-height: 1.5
  }

  .extended-menu-link.main-page {
    background: #9cebc814;
    border: 1px solid rgba(229, 126, 58, .2)
  }

  .nav-item-ext span {
    font-size: 8.5px;
    max-width: 55px;
    overflow: hidden;
    text-overflow: ellipsis
  }

  @media (max-width: 380px) {
    .bottom-nav-extended {
      padding: 5px 2px
    }

    .bottom-nav-extended>* {
      flex: 0 0 calc(20% - 20px);
      max-width: calc(20% - 20px);
      min-width: calc(20% - 20px)
    }

    .nav-item-ext {
      padding: 5px 1px
    }

    .nav-item-ext svg {
      width: 16px;
      height: 16px
    }

    .nav-item-ext span {
      font-size: 7.5px
    }

    .nav-item-ext:nth-child(n+6):not(.nav-more) {
      display: none
    }
  }

  .nav-item-ext:nth-child(-n+9) {
    position: relative
  }

  .nav-item-ext:nth-child(-n+9):hover:before {
    content: "";
    position: absolute;
    top: 0;
    inset-inline-end: 50%;
    transform: translate(-50%);
    width: 30px;
    height: 2px;
    background: var(--accent-teal);
    border-radius: 2px
  }

  @media (max-width: 1024px) and (min-width: 769px) {
    .bottom-nav-extended>* {
      flex: 0 0 calc(20% - 20px);
      max-width: calc(20% - 20px);
      min-width: calc(20% - 20px)
    }

    .nav-item-ext:nth-child(n+6):not(.nav-more) {
      display: none
    }

    .nav-item-ext.nav-more {
      display: flex
    }
  }

  @media (min-width: 1400px) {
    .bottom-nav-extended {
      padding: 10px 20px;
      max-width: 1400px;
      margin: 0 auto;
      inset-inline-end: 50%;
      transform: translate(-50%);
      border-radius: 20px 20px 0 0
    }

    .nav-item-ext {
      padding: 10px 8px
    }

    .nav-item-ext span {
      font-size: 11px
    }
  }

  .content-area {
    flex: 1;
    position: relative;
    padding: 0;
    background: linear-gradient(135deg, #001a18 0%, var(--primary-dark) 50%, #002b28 100%);
    overflow: hidden;
    margin-top: var(--header-height);
    height: calc(100vh - var(--header-height));
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain
  }

  .content-section {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .5s cubic-bezier(.25, .8, .25, 1);
    height: 100%;
    overflow: hidden;
    padding: 0;
    -webkit-overflow-scrolling: touch
  }

  .content-section.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
  }

  .content-section::-webkit-scrollbar {
    display: none
  }

  .section-header {
    margin-bottom: 30px;
    text-align: center;
    overflow: hidden;
    padding: 0 40px;
    position: relative;
    flex-shrink: 0
  }

  .section-header h1 {
    font-size: 36px;
    color: var(--accent-teal);
    margin-bottom: 10px
  }

  .section-header p {
    color: var(--text-dim);
    font-size: 16px
  }

  .content-area {
    height: calc(100vh - var(--header-height) - var(--bottom-nav-height));
    padding-bottom: var(--bottom-nav-height)
  }

  .event-card,
  .workshop-card,
  .activity-box,
  .family-card,
  .culture-item,
  .initiative-card,
  .entertainment-card,
  .partner-card,
  .month-section,
  .partners-intro {
    margin-bottom: 20px
  }

  .content-section {
    display: flex;
    flex-direction: column
  }

  .food-festivals,
  .events-showcase,
  .workshops-list,
  .activities-grid,
  .family-activities,
  .culture-grid,
  .charity-initiatives,
  .entertainment-grid,
  .partners-grid,
  .calendar-view,
  .partners-content,
  .competitions-layout {
    flex: 1;
    display: block;
    height: auto;
    overflow-y: auto
  }

  .food-festivals::-webkit-scrollbar,
  .events-showcase::-webkit-scrollbar,
  .workshops-list::-webkit-scrollbar,
  .activities-grid::-webkit-scrollbar,
  .family-activities::-webkit-scrollbar,
  .culture-grid::-webkit-scrollbar,
  .charity-initiatives::-webkit-scrollbar,
  .entertainment-grid::-webkit-scrollbar,
  .partners-grid::-webkit-scrollbar,
  .calendar-view::-webkit-scrollbar,
  .partners-content::-webkit-scrollbar,
  .competitions-layout::-webkit-scrollbar {
    width: 4px
  }

  .food-festivals::-webkit-scrollbar-thumb,
  .events-showcase::-webkit-scrollbar-thumb,
  .workshops-list::-webkit-scrollbar-thumb,
  .activities-grid::-webkit-scrollbar-thumb,
  .family-activities::-webkit-scrollbar-thumb,
  .culture-grid::-webkit-scrollbar-thumb,
  .charity-initiatives::-webkit-scrollbar-thumb,
  .entertainment-grid::-webkit-scrollbar-thumb,
  .partners-grid::-webkit-scrollbar-thumb,
  .calendar-view::-webkit-scrollbar-thumb,
  .partners-content::-webkit-scrollbar-thumb,
  .competitions-layout::-webkit-scrollbar-thumb {
    border-radius: 2px
  }
}