:root {
  color-scheme: dark;

  --bg-primary: #0a0015;
  --bg-secondary: rgba(15, 5, 25, 0.6);
  --bg-card: rgba(138, 43, 226, 0.05);
  --text-primary: #ffffff;
  --text-secondary: #e0d5ff;
  --text-muted: #b8a5d8;
  --accent-primary: #8a2be2;
  --accent-secondary: #9d4edd;
  --accent-tertiary: #c77dff;
  --accent-glow: #e0aaff;
  --border-color: rgba(138, 43, 226, 0.3);
  --shadow-color: rgba(138, 43, 226, 0.4);
  --poster-color: rgba(138, 43, 226, 0.08);
  --poster-hover-color: rgba(138, 43, 226, 0.15);
  --navbar-bg: rgba(10, 0, 21, 0.98);
  --particle-color: rgba(138, 43, 226, 0.6);
}

body.light-mode {
  --bg-primary: #faf8ff;
  --bg-secondary: rgba(255, 252, 255, 0.9);
  --bg-card: rgba(138, 43, 226, 0.08);
  --text-primary: #1a0033;
  --text-secondary: #3d1b5e;
  --text-muted: #6b4c8a;
  --accent-primary: #7b2cbf;
  --accent-secondary: #9d4edd;
  --accent-tertiary: #c77dff;
  --accent-glow: #e0aaff;
  --border-color: rgba(123, 44, 191, 0.4);
  --shadow-color: rgba(138, 43, 226, 0.25);
  --navbar-bg: rgba(250, 248, 255, 0.98);
  --particle-color: rgba(138, 43, 226, 0.35);
}

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

html,
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  position: relative;
  transition:
    background 0.5s ease,
    color 0.5s ease;
}

#canvas3d {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.5;
}

body.light-mode #canvas3d {
  opacity: 0.2;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--navbar-bg);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 20px 40px;
  box-shadow: 0 2px 25px var(--shadow-color);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.5s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary),
    var(--accent-tertiary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  cursor: pointer;
  z-index: 1001;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 20px var(--shadow-color));
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--accent-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
  box-shadow: 0 0 10px var(--accent-primary);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 35px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  padding: 8px 16px;
  transition: all 0.3s ease;
  border-radius: 6px;
  font-size: 0.95rem;
  position: relative;
  display: block;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--accent-primary);
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link:hover {
  color: var(--accent-tertiary);
  background: rgba(138, 43, 226, 0.15);
}

/* Dropdown */
.dropdown {
  position: relative;
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--navbar-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 0;
  min-width: max-content;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px var(--shadow-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 12px 24px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  white-space: nowrap;
}

.dropdown-link:hover {
  color: var(--accent-tertiary);
  background: rgba(138, 43, 226, 0.2);
  padding-left: 30px;
}

/* Hero */
.hero-small {
  position: relative;
  min-height: 45vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 150px 20px 60px;
  z-index: 10;
  overflow: hidden;
}

.decorative-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  animation: float 20s infinite ease-in-out;
  box-shadow: 0 0 40px var(--shadow-color);
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: -50px;
  right: 10%;
}

.circle-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: 15%;
  animation-delay: 2s;
}

.page-title {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary),
    var(--accent-tertiary),
    var(--accent-glow)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease;
  filter: drop-shadow(0 0 30px var(--shadow-color));
}

.page-subtitle {
  font-size: 1.5rem;
  color: var(--text-muted);
  font-style: italic;
  animation: fadeInUp 1s ease 0.3s both;
}

/* Sections */
.page-section {
  position: relative;
  padding: 80px 20px;
  z-index: 10;
  transition: background 0.5s ease;
}

.alt-bg {
  background: var(--bg-secondary);
}

.section-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.event-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.event-icon {
  font-size: 3rem;
  animation: bounce 2s infinite;
  filter: drop-shadow(0 0 20px var(--accent-primary));
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary),
    var(--accent-tertiary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin: 0;
  filter: drop-shadow(0 0 20px var(--shadow-color));
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-style: italic;
  text-align: center;
}

.section-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-secondary);
  padding: 30px;
  background: var(--bg-card);
  border-left: 4px solid var(--accent-primary);
  border-radius: 12px;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
  transition: all 0.5s ease;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.section-text:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 35px var(--shadow-color);
}

/* Winners Section */
.winners-section {
  margin: 60px 0;
  padding: 40px;
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.05),
    rgba(157, 78, 221, 0.08)
  );
  border-radius: 20px;
  border: 2px solid var(--border-color);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.winners-category-title {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary),
    var(--accent-tertiary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 20px var(--shadow-color));
}

.winners-list-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.winner-item {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 15px;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.winner-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(
    180deg,
    var(--accent-primary),
    var(--accent-secondary),
    var(--accent-tertiary)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.winner-item:hover::before {
  opacity: 1;
}

.winner-item:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 50px var(--shadow-color);
  border-color: var(--accent-tertiary);
}

.winner-item.position-1 {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.15),
    rgba(138, 43, 226, 0.08)
  );
  border-color: rgba(255, 215, 0, 0.5);
}

.winner-item.position-1 .position-badge {
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #1a0033;
  font-weight: 800;
}

.winner-item.position-2 {
  background: linear-gradient(
    135deg,
    rgba(192, 192, 192, 0.15),
    rgba(138, 43, 226, 0.08)
  );
  border-color: rgba(192, 192, 192, 0.5);
}

.winner-item.position-2 .position-badge {
  background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
  color: #1a0033;
  font-weight: 800;
}

.winner-item.position-3 {
  background: linear-gradient(
    135deg,
    rgba(205, 127, 50, 0.15),
    rgba(138, 43, 226, 0.08)
  );
  border-color: rgba(205, 127, 50, 0.5);
}

.winner-item.position-3 .position-badge {
  background: linear-gradient(135deg, #cd7f32, #b87333);
  color: white;
  font-weight: 800;
}

.winner-item.honorable-mention {
  background: linear-gradient(
    135deg,
    rgba(157, 78, 221, 0.12),
    rgba(199, 125, 255, 0.08)
  );
  border-color: var(--accent-tertiary);
}

.winner-item.honorable-mention .position-badge {
  background: linear-gradient(
    135deg,
    var(--accent-secondary),
    var(--accent-tertiary)
  );
  color: white;
  font-weight: 700;
}

.position-badge {
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  color: white;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 110px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.winner-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.winners-image-container {
  text-align: center;
  margin: 30px 0;
  padding: 20px;
  background: var(--bg-card);
  border-radius: 15px;
  border: 2px solid var(--border-color);
  transition: all 0.4s ease;
}

.winners-image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px var(--shadow-color);
  border-color: var(--accent-tertiary);
}

.winners-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.registration-closed-text {
  font-size: 1.2rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 15px;
  padding: 20px;
  background: rgba(138, 43, 226, 0.05);
  border-radius: 10px;
  font-style: italic;
}

/* Themes Showcase */
.themes-showcase {
  margin: 60px 0;
  padding: 40px;
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.05),
    rgba(157, 78, 221, 0.08)
  );
  border-radius: 20px;
  border: 2px solid var(--border-color);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.themes-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.themes-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 0 20px var(--accent-primary));
  animation: bounce 2s infinite;
}

.themes-header h3 {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary),
    var(--accent-tertiary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.theme-cards-container {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.theme-card {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  position: relative;
}

.theme-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--accent-primary),
    var(--accent-secondary),
    var(--accent-tertiary)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.theme-card:hover::before {
  opacity: 1;
}

.theme-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-tertiary);
  box-shadow: 0 15px 50px var(--shadow-color);
}

.theme-card-below {
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.08),
    rgba(157, 78, 221, 0.05)
  );
}

.theme-card-above {
  background: linear-gradient(
    135deg,
    rgba(157, 78, 221, 0.08),
    rgba(199, 125, 255, 0.05)
  );
}

.theme-badge {
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  color: white;
  padding: 12px 25px;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px var(--shadow-color);
}

.theme-content {
  padding: 30px;
}

.theme-lang {
  font-size: 0.95rem;
  color: var(--accent-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.theme-title-main {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.theme-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.theme-divider {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-tertiary),
    transparent
  );
  margin: 20px 0;
  opacity: 0.5;
}

.theme-bengali {
  font-size: 1.15rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.8;
  padding: 15px;
  background: rgba(138, 43, 226, 0.05);
  border-radius: 10px;
  border-left: 3px solid var(--accent-tertiary);
}

.theme-bengali-main {
  font-size: 1.4rem;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.8;
  margin-top: 10px;
}

.theme-language-section {
  margin-bottom: 20px;
}

.theme-language-section:last-child {
  margin-bottom: 0;
}

/* Enhanced Info Cards */
.info-card {
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.08),
    rgba(157, 78, 221, 0.05)
  );
  border: 2px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

/* .info-card::after { */
/*   content: ""; */
/*   position: absolute; */
/*   top: -50%; */
/*   right: -50%; */
/*   width: 200%; */
/*   height: 200%; */
/*   background: radial-gradient( */
/*     circle, */
/*     rgba(138, 43, 226, 0.1) 0%, */
/*     transparent 70% */
/*   ); */
/*   opacity: 0; */
/*   transition: opacity 0.5s ease; */
/* } */

.info-card:hover::after {
  opacity: 1;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  background: rgba(138, 43, 226, 0.08);
  border-radius: 10px;
  border-left: 3px solid var(--accent-primary);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateX(8px);
  background: rgba(138, 43, 226, 0.12);
  border-left-color: var(--accent-tertiary);
}

.info-label {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.info-value {
  font-weight: 700;
  color: var(--accent-secondary);
  font-size: 1.05rem;
}

.judge-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.judge-item {
  text-align: center;
  padding: 20px;
  background: rgba(138, 43, 226, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.judge-item:hover {
  background: rgba(138, 43, 226, 0.1);
  transform: scale(1.03);
}

.judge-category {
  font-size: 0.9rem;
  color: var(--accent-tertiary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.judge-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.judge-affiliation {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
}

.judge-divider {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-primary),
    transparent
  );
  opacity: 0.3;
}

.prize-highlight {
  margin-top: 20px;
  padding: 15px 20px;
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.1),
    rgba(199, 125, 255, 0.1)
  );
  border-radius: 10px;
  border: 1px solid var(--accent-tertiary);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  animation: pulse 3s infinite;
}

.prize-emoji {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 10px var(--accent-primary));
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  background: rgba(138, 43, 226, 0.1);
  border-color: var(--accent-tertiary);
  box-shadow: 0 15px 50px var(--shadow-color);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px var(--accent-primary));
}

.feature-title {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-desc {
  color: var(--text-muted);
  line-height: 1.8;
}

.poster-placeholder {
  margin-bottom: 100px !important;
}

#btl-result {
  margin-top: 80px !important;
}

.poster-container {
  text-align: center;
  margin: 40px 0;
}

/* Registration */
.registration-box {
  margin-top: 60px;
  padding: 40px;
  background: rgba(138, 43, 226, 0.1);
  border: 2px solid var(--border-color);
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.5s ease;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

body.light-mode .registration-box {
  background: rgba(138, 43, 226, 0.08);
}

.registration-title {
  font-size: 1.8rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-weight: 600;
}

.coming-soon {
  font-size: 1.5rem;
  color: var(--accent-tertiary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: pulse 2s infinite;
  text-shadow: 0 0 25px var(--accent-primary);
}

/* Buttons */
.btn {
  padding: 14px 35px;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  color: white;
  display: inline-block;
  margin: 10px;
  box-shadow: 0 5px 20px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  background: linear-gradient(
    135deg,
    var(--accent-secondary),
    var(--accent-tertiary)
  );
  transform: translateY(-3px);
  box-shadow: 0 10px 35px var(--shadow-color);
}

.poster-btn {
  display: inline-block;
  padding: 14px 35px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-primary);
  background: rgba(0, 212, 255, 0.15);
  border: 2px solid var(--accent-primary);
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.poster-btn:hover {
  background: rgba(0, 212, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow-color);
}

/* Cultural Design */
.cultural-design {
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.design-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.mandala-container {
  max-width: 400px;
  margin: 0 auto 50px;
  animation: rotate 60s linear infinite;
}

.mandala {
  width: 100%;
  height: auto;
  color: var(--accent-tertiary);
  filter: drop-shadow(0 0 40px var(--shadow-color));
}

.cultural-quote {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: var(--bg-card);
  border-left: 3px solid var(--accent-primary);
  border-right: 3px solid var(--accent-tertiary);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 10;
}

.cultural-quote p {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.8;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary),
    var(--accent-tertiary),
    var(--accent-glow)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Footer */
.footer {
  background: var(--navbar-bg);
  border-top: 2px solid var(--border-color);
  padding: 50px 20px 30px;
  text-align: center;
  z-index: 10;
  position: relative;
  transition: all 0.5s ease;
  box-shadow: 0 -5px 30px var(--shadow-color);
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary),
    var(--accent-tertiary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px var(--shadow-color));
}

.footer-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.footer-copyright {
  font-size: 0.9rem;
  color: var(--accent-tertiary);
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  margin-top: 20px;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Mobile Responsive */
@media (max-width: 1130px) {
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(334px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
}
@media (max-width: 768px) {
  .hero-small {
    padding: 120px 20px 40px;
    min-height: 30vh;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .page-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .section-text {
    padding: 20px;
    font-size: 1rem;
  }

  .theme-cards-container {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .registration-box {
    padding: 25px;
  }

  .registration-title {
    font-size: 1.4rem;
  }

  .coming-soon {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }

  .mandala-container {
    max-width: 250px;
  }

  .cultural-quote {
    padding: 25px;
  }

  .cultural-quote p {
    font-size: 1.1rem;
  }

  .event-icon {
    font-size: 2rem;
  }

  .event-header {
    gap: 15px;
  }

  .circle-1,
  .circle-2 {
    display: none;
  }

  .footer-logo {
    font-size: 1.5rem;
  }

  .footer-text {
    font-size: 1rem;
  }

  .winners-section {
    padding: 25px;
  }

  .winners-category-title {
    font-size: 1.6rem;
  }

  .winners-list-container {
    gap: 15px;
  }

  .winner-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
  }

  .position-badge {
    min-width: 90px;
    font-size: 0.85rem;
    padding: 6px 14px;
  }

  .winner-name {
    font-size: 1.1rem;
  }

  .winners-image-container {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 2rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}
:root {
  color-scheme: dark;

  --bg-primary: #0a0015;
  --bg-secondary: rgba(15, 5, 25, 0.6);
  --bg-card: rgba(138, 43, 226, 0.05);
  --text-primary: #ffffff;
  --text-secondary: #e0d5ff;
  --text-muted: #b8a5d8;
  --accent-primary: #8a2be2;
  --accent-secondary: #9d4edd;
  --accent-tertiary: #c77dff;
  --accent-glow: #e0aaff;
  --border-color: rgba(138, 43, 226, 0.3);
  --shadow-color: rgba(138, 43, 226, 0.4);
  --poster-color: rgba(138, 43, 226, 0.08);
  --poster-hover-color: rgba(138, 43, 226, 0.15);
  --navbar-bg: rgba(10, 0, 21, 0.98);
  --particle-color: rgba(138, 43, 226, 0.6);
}

body.light-mode {
  --bg-primary: #faf8ff;
  --bg-secondary: rgba(255, 252, 255, 0.9);
  --bg-card: rgba(138, 43, 226, 0.08);
  --text-primary: #1a0033;
  --text-secondary: #3d1b5e;
  --text-muted: #6b4c8a;
  --accent-primary: #7b2cbf;
  --accent-secondary: #9d4edd;
  --accent-tertiary: #c77dff;
  --accent-glow: #e0aaff;
  --border-color: rgba(123, 44, 191, 0.4);
  --shadow-color: rgba(138, 43, 226, 0.25);
  --navbar-bg: rgba(250, 248, 255, 0.98);
  --particle-color: rgba(138, 43, 226, 0.35);
}

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

html,
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  position: relative;
  transition:
    background 0.5s ease,
    color 0.5s ease;
}

#canvas3d {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.5;
}

body.light-mode #canvas3d {
  opacity: 0.2;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--navbar-bg);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 20px 40px;
  box-shadow: 0 2px 25px var(--shadow-color);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.5s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary),
    var(--accent-tertiary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  cursor: pointer;
  z-index: 1001;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 20px var(--shadow-color));
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--accent-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
  box-shadow: 0 0 10px var(--accent-primary);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 35px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  padding: 8px 16px;
  transition: all 0.3s ease;
  border-radius: 6px;
  font-size: 0.95rem;
  position: relative;
  display: block;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--accent-primary);
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link:hover {
  color: var(--accent-tertiary);
  background: rgba(138, 43, 226, 0.15);
}

/* Dropdown */
.dropdown {
  position: relative;
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--navbar-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 0;
  min-width: max-content;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px var(--shadow-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 12px 24px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  white-space: nowrap;
}

.dropdown-link:hover {
  color: var(--accent-tertiary);
  background: rgba(138, 43, 226, 0.2);
  padding-left: 30px;
}

/* Hero */
.hero-small {
  position: relative;
  min-height: 45vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 150px 20px 60px;
  z-index: 10;
  overflow: hidden;
}

.decorative-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  animation: float 20s infinite ease-in-out;
  box-shadow: 0 0 40px var(--shadow-color);
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: -50px;
  right: 10%;
}

.circle-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: 15%;
  animation-delay: 2s;
}

.page-title {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary),
    var(--accent-tertiary),
    var(--accent-glow)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease;
  filter: drop-shadow(0 0 30px var(--shadow-color));
}

.page-subtitle {
  font-size: 1.5rem;
  color: var(--text-muted);
  font-style: italic;
  animation: fadeInUp 1s ease 0.3s both;
}

/* Sections */
.page-section {
  position: relative;
  padding: 80px 20px;
  z-index: 10;
  transition: background 0.5s ease;
}

.alt-bg {
  background: var(--bg-secondary);
}

.section-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.event-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.event-icon {
  font-size: 3rem;
  animation: bounce 2s infinite;
  filter: drop-shadow(0 0 20px var(--accent-primary));
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary),
    var(--accent-tertiary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin: 0;
  filter: drop-shadow(0 0 20px var(--shadow-color));
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-style: italic;
  text-align: center;
}

.section-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-secondary);
  padding: 30px;
  background: var(--bg-card);
  border-left: 4px solid var(--accent-primary);
  border-radius: 12px;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
  transition: all 0.5s ease;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.section-text:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 35px var(--shadow-color);
}

/* Winners Section */
.winners-section {
  margin: 60px 0;
  padding: 40px;
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.05),
    rgba(157, 78, 221, 0.08)
  );
  border-radius: 20px;
  border: 2px solid var(--border-color);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.winners-category-title {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary),
    var(--accent-tertiary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 20px var(--shadow-color));
}

.winners-list-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.winner-item {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 15px;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.winner-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(
    180deg,
    var(--accent-primary),
    var(--accent-secondary),
    var(--accent-tertiary)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.winner-item:hover::before {
  opacity: 1;
}

.winner-item:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 50px var(--shadow-color);
  border-color: var(--accent-tertiary);
}

.winner-item.position-1 {
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.15),
    rgba(138, 43, 226, 0.08)
  );
  border-color: rgba(255, 215, 0, 0.5);
}

.winner-item.position-1 .position-badge {
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #1a0033;
  font-weight: 800;
}

.winner-item.position-2 {
  background: linear-gradient(
    135deg,
    rgba(192, 192, 192, 0.15),
    rgba(138, 43, 226, 0.08)
  );
  border-color: rgba(192, 192, 192, 0.5);
}

.winner-item.position-2 .position-badge {
  background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
  color: #1a0033;
  font-weight: 800;
}

.winner-item.position-3 {
  background: linear-gradient(
    135deg,
    rgba(205, 127, 50, 0.15),
    rgba(138, 43, 226, 0.08)
  );
  border-color: rgba(205, 127, 50, 0.5);
}

.winner-item.position-3 .position-badge {
  background: linear-gradient(135deg, #cd7f32, #b87333);
  color: white;
  font-weight: 800;
}

.winner-item.honorable-mention {
  background: linear-gradient(
    135deg,
    rgba(157, 78, 221, 0.12),
    rgba(199, 125, 255, 0.08)
  );
  border-color: var(--accent-tertiary);
}

.winner-item.honorable-mention .position-badge {
  background: linear-gradient(
    135deg,
    var(--accent-secondary),
    var(--accent-tertiary)
  );
  color: white;
  font-weight: 700;
}

.position-badge {
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  color: white;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 110px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.winner-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.winners-image-container {
  text-align: center;
  margin: 30px 0;
  padding: 20px;
  background: var(--bg-card);
  border-radius: 15px;
  border: 2px solid var(--border-color);
  transition: all 0.4s ease;
}

.winners-image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px var(--shadow-color);
  border-color: var(--accent-tertiary);
}

.winners-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.registration-closed-text {
  font-size: 1.2rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 15px;
  padding: 20px;
  background: rgba(138, 43, 226, 0.05);
  border-radius: 10px;
  font-style: italic;
}

/* Themes Showcase */
.themes-showcase {
  margin: 60px 0;
  padding: 40px;
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.05),
    rgba(157, 78, 221, 0.08)
  );
  border-radius: 20px;
  border: 2px solid var(--border-color);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.themes-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.themes-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 0 20px var(--accent-primary));
  animation: bounce 2s infinite;
}

.themes-header h3 {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary),
    var(--accent-tertiary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.theme-cards-container {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.theme-card {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  position: relative;
}

.theme-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--accent-primary),
    var(--accent-secondary),
    var(--accent-tertiary)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.theme-card:hover::before {
  opacity: 1;
}

.theme-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-tertiary);
  box-shadow: 0 15px 50px var(--shadow-color);
}

.theme-card-below {
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.08),
    rgba(157, 78, 221, 0.05)
  );
}

.theme-card-above {
  background: linear-gradient(
    135deg,
    rgba(157, 78, 221, 0.08),
    rgba(199, 125, 255, 0.05)
  );
}

.theme-badge {
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  color: white;
  padding: 12px 25px;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px var(--shadow-color);
}

.theme-content {
  padding: 30px;
}

.theme-lang {
  font-size: 0.95rem;
  color: var(--accent-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.theme-title-main {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.theme-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.theme-divider {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-tertiary),
    transparent
  );
  margin: 20px 0;
  opacity: 0.5;
}

.theme-bengali {
  font-size: 1.15rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.8;
  padding: 15px;
  background: rgba(138, 43, 226, 0.05);
  border-radius: 10px;
  border-left: 3px solid var(--accent-tertiary);
}

.theme-bengali-main {
  font-size: 1.4rem;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.8;
  margin-top: 10px;
}

.theme-language-section {
  margin-bottom: 20px;
}

.theme-language-section:last-child {
  margin-bottom: 0;
}

/* Enhanced Info Cards */
.info-card {
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.08),
    rgba(157, 78, 221, 0.05)
  );
  border: 2px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

/* .info-card::after { */
/*   content: ""; */
/*   position: absolute; */
/*   top: -50%; */
/*   right: -50%; */
/*   width: 200%; */
/*   height: 200%; */
/*   background: radial-gradient( */
/*     circle, */
/*     rgba(138, 43, 226, 0.1) 0%, */
/*     transparent 70% */
/*   ); */
/*   opacity: 0; */
/*   transition: opacity 0.5s ease; */
/* } */

.info-card:hover::after {
  opacity: 1;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  background: rgba(138, 43, 226, 0.08);
  border-radius: 10px;
  border-left: 3px solid var(--accent-primary);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateX(8px);
  background: rgba(138, 43, 226, 0.12);
  border-left-color: var(--accent-tertiary);
}

.info-label {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.info-value {
  font-weight: 700;
  color: var(--accent-secondary);
  font-size: 1.05rem;
}

.judge-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.judge-item {
  text-align: center;
  padding: 20px;
  background: rgba(138, 43, 226, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.judge-item:hover {
  background: rgba(138, 43, 226, 0.1);
  transform: scale(1.03);
}

.judge-category {
  font-size: 0.9rem;
  color: var(--accent-tertiary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.judge-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.judge-affiliation {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
}

.judge-divider {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-primary),
    transparent
  );
  opacity: 0.3;
}

.prize-highlight {
  margin-top: 20px;
  padding: 15px 20px;
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.1),
    rgba(199, 125, 255, 0.1)
  );
  border-radius: 10px;
  border: 1px solid var(--accent-tertiary);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  animation: pulse 3s infinite;
}

.prize-emoji {
  font-size: 1.5rem;
  filter: drop-shadow(0 0 10px var(--accent-primary));
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  background: rgba(138, 43, 226, 0.1);
  border-color: var(--accent-tertiary);
  box-shadow: 0 15px 50px var(--shadow-color);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px var(--accent-primary));
}

.feature-title {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-desc {
  color: var(--text-muted);
  line-height: 1.8;
}

.poster-placeholder {
  margin-bottom: 100px !important;
}

.poster-container {
  text-align: center;
  margin: 40px 0;
}

/* Registration */
.registration-box {
  margin-top: 60px;
  padding: 40px;
  background: rgba(138, 43, 226, 0.1);
  border: 2px solid var(--border-color);
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.5s ease;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

body.light-mode .registration-box {
  background: rgba(138, 43, 226, 0.08);
}

.registration-title {
  font-size: 1.8rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-weight: 600;
}

.coming-soon {
  font-size: 1.5rem;
  color: var(--accent-tertiary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: pulse 2s infinite;
  text-shadow: 0 0 25px var(--accent-primary);
}

/* Buttons */
.btn {
  padding: 14px 35px;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  color: white;
  display: inline-block;
  margin: 10px;
  box-shadow: 0 5px 20px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  background: linear-gradient(
    135deg,
    var(--accent-secondary),
    var(--accent-tertiary)
  );
  transform: translateY(-3px);
  box-shadow: 0 10px 35px var(--shadow-color);
}

.poster-btn {
  display: inline-block;
  padding: 14px 35px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-primary);
  background: rgba(0, 212, 255, 0.15);
  border: 2px solid var(--accent-primary);
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.poster-btn:hover {
  background: rgba(0, 212, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow-color);
}

/* Cultural Design */
.cultural-design {
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.design-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.mandala-container {
  max-width: 400px;
  margin: 0 auto 50px;
  animation: rotate 60s linear infinite;
}

.mandala {
  width: 100%;
  height: auto;
  color: var(--accent-tertiary);
  filter: drop-shadow(0 0 40px var(--shadow-color));
}

.cultural-quote {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: var(--bg-card);
  border-left: 3px solid var(--accent-primary);
  border-right: 3px solid var(--accent-tertiary);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 10;
}

.cultural-quote p {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.8;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary),
    var(--accent-tertiary),
    var(--accent-glow)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Footer */
.footer {
  background: var(--navbar-bg);
  border-top: 2px solid var(--border-color);
  padding: 50px 20px 30px;
  text-align: center;
  z-index: 10;
  position: relative;
  transition: all 0.5s ease;
  box-shadow: 0 -5px 30px var(--shadow-color);
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary),
    var(--accent-tertiary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px var(--shadow-color));
}

.footer-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.footer-copyright {
  font-size: 0.9rem;
  color: var(--accent-tertiary);
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  margin-top: 20px;
}

/* Winners Gallery Styling */
.winners-section {
  margin-top: 40px;
  margin-bottom: 20px;
}

.winners-section .features-grid {
  display: flex;
  flex-direction: column;
}

.winners-section .feature-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.05); /* Subtle background contrast */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.winners-section .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.winners-section .feature-desc strong {
  font-size: 2rem;
  margin-top: 40px;
}

.winners-section .feature-desc {
  text-align: center;
}

.winner-image img {
  width: 100%;
  aspect-ratio: 4 / 3; /* Keeps all winning photos the same size */
  object-fit: contain; /* Prevents stretching */
  border-radius: 6px;
  display: block;
}

/* Special styling for 1st Place */
/* .winners-section .feature-card:first-child { */
/*   border: 1px solid #ffd700; /* Gold Border */
. */
/*   background: linear-gradient(145deg, rgba(255, 215, 0, 0.05), rgba(0, 0, 0, 0)); */
/* } */
/**/
/* .winners-section .feature-card:first-child .feature-title { */
/*   color: #ffd700; */
/*   font-weight: bold; */
/* } */

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Mobile Responsive */
@media (max-width: 1130px) {
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(334px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
}
@media (max-width: 768px) {
  .hero-small {
    padding: 120px 20px 40px;
    min-height: 30vh;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .page-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .section-text {
    padding: 20px;
    font-size: 1rem;
  }

  .theme-cards-container {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .registration-box {
    padding: 25px;
  }

  .registration-title {
    font-size: 1.4rem;
  }

  .coming-soon {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }

  .mandala-container {
    max-width: 250px;
  }

  .cultural-quote {
    padding: 25px;
  }

  .cultural-quote p {
    font-size: 1.1rem;
  }

  .event-icon {
    font-size: 2rem;
  }

  .event-header {
    gap: 15px;
  }

  .circle-1,
  .circle-2 {
    display: none;
  }

  .footer-logo {
    font-size: 1.5rem;
  }

  .footer-text {
    font-size: 1rem;
  }

  .winners-section {
    padding: 25px;
  }

  .winners-category-title {
    font-size: 1.6rem;
  }

  .winners-list-container {
    gap: 15px;
  }

  .winner-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
  }

  .position-badge {
    min-width: 90px;
    font-size: 0.85rem;
    padding: 6px 14px;
  }

  .winner-name {
    font-size: 1.1rem;
  }

  .winners-image-container {
    padding: 15px;
  }

  .winners-section .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .winners-section .feature-desc strong {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 2rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}
