:root {
  --background: #E8E6DD;
  --foreground: #1A1A1A;
  --primary: #2E4036;
  --accent: #CC5833;
  --surface: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
}

::selection {
  background-color: var(--accent);
  color: white;
}

.font-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.02em;
}

.font-serif-drama {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.font-data {
  font-family: 'IBM Plex Mono', monospace;
}

.font-body {
  font-family: 'Outfit', sans-serif;
}

.glass-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(26, 26, 26, 0.1);
}

.glass-card-dark {
  background: rgba(46, 64, 54, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(46, 64, 54, 0.1);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
}

.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(204, 88, 51, 0.3);
}

.btn-primary:active {
  transform: scale(0.95);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--foreground);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(26, 26, 26, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn-outline-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  border: 1px solid var(--primary);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-outline-green:hover {
  background-color: var(--primary);
  color: var(--background);
  transform: scale(1.03);
}

.form-input {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--foreground);
  transition: border-color 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--accent);
}

.form-input::placeholder {
  color: rgba(26, 26, 26, 0.4);
}

.form-label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(26, 26, 26, 0.6);
  margin-bottom: 0.5rem;
  margin-left: 0.5rem;
}

.form-select {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--foreground);
  transition: border-color 0.3s ease;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231A1A1A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-select:focus {
  border-color: var(--accent);
}

.form-textarea {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--foreground);
  transition: border-color 0.3s ease;
  outline: none;
  resize: vertical;
  min-height: 120px;
}

.form-textarea:focus {
  border-color: var(--accent);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid;
}

.badge-pinned {
  background-color: rgba(204, 88, 51, 0.1);
  color: var(--accent);
  border-color: rgba(204, 88, 51, 0.2);
}

.badge-new {
  background-color: rgba(245, 158, 11, 0.1);
  color: #b45309;
  border-color: rgba(245, 158, 11, 0.2);
}

.badge-in-progress {
  background-color: rgba(59, 130, 246, 0.1);
  color: #1d4ed8;
  border-color: rgba(59, 130, 246, 0.2);
}

.badge-resolved {
  background-color: rgba(34, 197, 94, 0.1);
  color: #15803d;
  border-color: rgba(34, 197, 94, 0.2);
}

.navbar {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: calc(100% - 3rem);
  max-width: 100rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 3rem;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(232, 230, 221, 0.9);
  border-color: rgba(26, 26, 26, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.navbar-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.navbar-logo-row {
  display: block;
}

.navbar-logo-number {
  color: var(--accent);
}

@media (min-width: 769px) {
  .navbar-logo {
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    line-height: normal;
  }
  .navbar-logo-row {
    display: inline;
  }
}

.navbar-logo .accent-symbol {
  color: var(--accent);
  font-size: 1.5rem;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.navbar-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.825rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--foreground);
  text-decoration: none;
  position: relative;
  padding-bottom: 0.25rem;
  transition: all 0.3s ease;
}

.navbar-links a:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-user-info {
  text-align: right;
}

.navbar-user-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9625rem;
  color: var(--foreground);
}

.navbar-user-apt {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6875rem;
  color: rgba(26, 26, 26, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.navbar-login-btn {
  background-color: var(--accent);
  color: var(--background);
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.825rem;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.navbar-login-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(204, 88, 51, 0.3);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--foreground);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--background);
  z-index: 100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2.5rem;
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--accent);
}

.mobile-menu-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--foreground);
}

.flash-message {
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideDown 0.3s ease;
}

.flash-success {
  background-color: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #15803d;
}

.flash-error {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #b91c1c;
}

.flash-info {
  background-color: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #1d4ed8;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.animate-fade-in {
  animation: fadeIn 0.5s ease;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease;
}

.page-content {
  padding-top: 7rem;
  min-height: auto;
}

.section {
  padding: 8rem clamp(1.5rem, 5vw, 6rem);
}

.section-inner {
  max-width: 76rem;
  margin: 0 auto;
  width: 100%;
}

.card {
  background: var(--surface);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(26, 26, 26, 0.08);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.08), 0 10px 12px -6px rgba(0, 0, 0, 0.06);
}

.card-glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(26, 26, 26, 0.1), transparent);
  margin: 2rem 0;
}

.divider-accent {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(204, 88, 51, 0.3), transparent);
  margin: 2rem 0;
}

.corner-marker {
  position: relative;
}

.corner-marker::before,
.corner-marker::after {
  content: '';
  position: absolute;
  background-color: var(--accent);
  box-shadow: 0 0 8px rgba(204, 88, 51, 0.5);
}

.corner-marker::before {
  top: 0;
  left: 0;
  width: 20px;
  height: 2px;
}

.corner-marker::after {
  top: 0;
  left: 0;
  width: 2px;
  height: 20px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

.status-dot-green {
  background-color: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
}

.status-dot-accent {
  background-color: var(--accent);
  box-shadow: 0 0 12px rgba(204, 88, 51, 0.6);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.footer {
  background-color: var(--foreground);
  color: var(--background);
  border-radius: 3rem 3rem 0 0;
  margin-top: -1px; /* Small overlap to prevent white line */
  padding: 4rem 2rem 3rem;
  position: relative;
}

.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer h3 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(232, 230, 221, 0.5);
  margin-bottom: 1.5rem;
}

.footer a {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  color: var(--background);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(232, 230, 221, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(232, 230, 221, 0.5);
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: rgba(232, 230, 221, 0.5);
}

.hero-section {
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  padding-top: 8rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, var(--background), rgba(232, 230, 221, 0.6), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.hero-title-drama {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(26, 26, 26, 0.7);
  max-width: 36rem;
  margin-bottom: 3rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.readout-box {
  border-left: 2px solid rgba(204, 88, 51, 0.4);
  padding-left: 1.5rem;
  margin-top: 3rem;
  position: relative;
}

.readout-box::before,
.readout-box::after {
  content: '';
  position: absolute;
  left: -1px;
  background-color: var(--accent);
  box-shadow: 0 0 8px rgba(204, 88, 51, 0.5);
}

.readout-box::before {
  top: 0;
  width: 20px;
  height: 2px;
}

.readout-box::after {
  bottom: 0;
  width: 20px;
  height: 2px;
}

.readout-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.5);
  margin-bottom: 0.25rem;
}

.readout-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--foreground);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.5);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 4.5rem);
  letter-spacing: -0.02em;
  color: var(--primary);
  line-height: 1.1;
}

.section-title-drama {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  display: block;
}

.section-description {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(26, 26, 26, 0.6);
  max-width: 40rem;
  margin: 1.5rem auto 0;
}

.ticket-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.ticket-card .ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}

.ticket-card .ticket-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--foreground);
}

.ticket-card .ticket-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.5);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.news-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.news-card .news-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.news-card .news-excerpt {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  color: rgba(26, 26, 26, 0.6);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card .news-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.4);
}

.poll-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(26, 26, 26, 0.1);
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 0.75rem;
  position: relative;
  overflow: hidden;
}

.poll-option.poll-option-results {
  cursor: default;
}

.poll-option.poll-option-results:hover {
  border-color: rgba(26, 26, 26, 0.1);
  background: rgba(255, 255, 255, 0.5);
}

.poll-option:hover {
  border-color: var(--accent);
  background: rgba(204, 88, 51, 0.05);
}

.poll-option.selected {
  border-color: var(--accent);
  background: rgba(204, 88, 51, 0.1);
}

.poll-option-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: rgba(204, 88, 51, 0.1);
  border-radius: 1rem;
  transition: width 0.5s ease;
  z-index: 0;
}

.poll-option-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.poll-option-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--foreground);
}

.poll-option-votes {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
}

.poll-option-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(26, 26, 26, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.poll-option.selected .poll-option-radio {
  border-color: var(--accent);
}

.poll-option.selected .poll-option-radio::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--accent);
}

.table-container {
  overflow-x: auto;
  border-radius: 1.5rem;
  border: 1px solid rgba(26, 26, 26, 0.08);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Outfit', sans-serif;
}

thead {
  background: rgba(46, 64, 54, 0.05);
}

th {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.5);
  padding: 1rem 1.5rem;
  text-align: left;
  white-space: nowrap;
}

td {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(26, 26, 26, 0.05);
  font-size: 0.9375rem;
}

tbody tr:hover {
  background: rgba(204, 88, 51, 0.03);
}

.hero-image-section {
  min-height: 100dvh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 2rem;
}

.hero-image-container {
  max-width: 48rem;
  width: 100%;
  margin: 0 auto;
}

.hero-full-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  display: block;
}

.hero-above-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.9;
  text-align: center;
}

.hero-above-line1 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 4.5rem);
  color: var(--primary);
}

.hero-above-line2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(5rem, 14vw, 11rem);
  color: var(--primary);
  margin-top: -0.25rem;
}

@media (max-width: 768px) {
  .page-content {
    padding-top: 7rem;
  }

  .navbar-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .navbar {
    padding: 0.75rem 1.25rem;
    left: 1rem;
    right: 1rem;
    width: auto;
    transform: none;
  }

  .section {
    padding: 4rem 1rem;
  }

  .hero-section {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .footer {
    border-radius: 2rem 2rem 0 0;
    padding: 3rem 1.5rem 2rem;
    margin-top: 0;
    min-height: auto;
  }

  .hero-image-section {
    min-height: auto !important;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    background-color: transparent;
  }

  .hero-image-container {
    padding: 0 1rem;
    background-color: transparent;
    margin-bottom: 30px;
  }

  .hero-full-image {
    border-radius: 1.5rem;
    display: block;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: contain;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-outline-green {
    width: 100%;
    justify-content: center;
  }

  .hero-full-image {
    max-height: 85vh;
  }
}


.hero-above-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.9;
  text-align: center;
}

.hero-above-line1 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 4.5rem);
  color: var(--primary);
}

.hero-above-line2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(5rem, 14vw, 11rem);
  color: var(--primary);
  margin-top: -0.25rem;
}

@media (max-width: 768px) {
  .finance-grid {
    grid-template-columns: 1fr !important;
  }
}
/* Responsive Table Styles */
@media (max-width: 991px) {
  .admin-table thead {
    display: none;
  }
  .admin-table, .admin-table tbody, .admin-table tr, .admin-table td {
    display: block;
    width: 100%;
  }
  .admin-table tr {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  }
  .admin-table td {
    border: none !important;
    padding: 0.75rem 0 !important;
    text-align: right !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(26, 26, 26, 0.03) !important;
  }
  .admin-table td:last-child {
    border-bottom: none !important;
  }
  .admin-table td::before {
    content: attr(data-label);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.625rem;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.5);
    font-weight: 700;
    text-align: left;
    margin-right: 1rem;
  }
  .admin-table form {
    width: 100%;
    justify-content: flex-end;
  }
}

/* News Card Enhancements */
.news-card .btn-read-more {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.news-card:hover .btn-read-more {
  background-color: var(--accent) !important;
  padding-right: 1.5rem !important;
  box-shadow: 0 10px 20px -5px rgba(204, 88, 51, 0.4) !important;
}

.news-card:hover .btn-read-more svg {
  transform: translateX(3px);
}

/* Finance Cards & Components */
.finance-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 2.5rem;
  padding: 2.5rem 3rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.finance-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.finance-stats-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.finance-months-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(26, 26, 26, 0.06);
}

.month-item {
  text-align: center;
}

.month-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 auto 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  font-weight: 700;
  background: rgba(26, 26, 26, 0.06);
  color: rgba(26, 26, 26, 0.3);
  transition: all 0.3s ease;
}

.month-dot.paid {
  background: #22c55e;
  color: white;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.month-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.625rem;
  color: rgba(26, 26, 26, 0.4);
  letter-spacing: 0.05em;
}

/* Structural Detail Items */
.finance-structure-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(46, 64, 54, 0.03);
  border-radius: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .finance-card {
    padding: 1.5rem;
    border-radius: 2rem;
  }
  
  .finance-summary-header {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .finance-stats-grid {
    width: 100%;
    justify-content: space-between;
    gap: 1rem;
  }
  
  .finance-stats-grid > div {
    flex: 1;
    min-width: 80px;
  }

  .finance-stats-grid div[style*="font-size: 2rem"] {
    font-size: 1.5rem !important;
  }

  .finance-months-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }

  .month-dot {
    width: 32px;
    height: 32px;
    font-size: 0.5rem;
  }
}

@media (max-width: 480px) {
  .finance-months-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: white;
  border-radius: 9999px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.5rem;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  margin-left: 5px;
  vertical-align: middle;
  line-height: 1;
  box-shadow: 0 0 8px rgba(204, 88, 51, 0.4);
}
