@charset "UTF-8";
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.container.container-sm {
  max-width: 576px;
}
.container.container-md {
  max-width: 768px;
}
.container.container-lg {
  max-width: 1200px;
}
.container.container-xl {
  max-width: 1400px;
}
.container.container-2xl {
  max-width: 1600px;
}
.container.container-fluid {
  max-width: none;
}

.page-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem;
}
@media (max-width: 768px) {
  .page-container {
    padding: 1rem;
  }
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
}
.page-header h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 1.875rem;
  }
}
.page-header h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--rust-orange);
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .page-header h2 {
    font-size: 1.5rem;
  }
}

.page-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}
@media (max-width: 768px) {
  .page-subtitle {
    font-size: 1rem;
  }
}

.card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--border-primary);
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-2px);
  border-color: var(--border-accent);
  box-shadow: 0 4px 12px rgba(206, 78, 27, 0.15);
}
.card.card-sm {
  padding: 1rem;
  border-radius: 12px;
}
.card.card-lg {
  padding: 2rem;
  border-radius: 20px;
}
.card.card-flat {
  box-shadow: none;
}
.card.card-flat:hover {
  transform: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.card.card-elevated {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.card.card-elevated:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.grid {
  display: grid;
  gap: 1.5rem;
}
.grid.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}
.grid.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid.grid-cols-5 {
  grid-template-columns: repeat(5, 1fr);
}
.grid.grid-cols-6 {
  grid-template-columns: repeat(6, 1fr);
}
.grid.grid-auto-xs {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.grid.grid-auto-sm {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.grid.grid-auto-md {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.grid.grid-auto-lg {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}
.grid.grid-auto-xl {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
.grid.gap-xs {
  gap: 0.25rem;
}
.grid.gap-sm {
  gap: 0.5rem;
}
.grid.gap-md {
  gap: 1rem;
}
.grid.gap-lg {
  gap: 1.5rem;
}
.grid.gap-xl {
  gap: 2rem;
}
.grid.gap-2xl {
  gap: 3rem;
}
@media (max-width: 1024px) {
  .grid.grid-cols-4 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.grid-cols-5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.grid-cols-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .grid.grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.grid-cols-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.grid-cols-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .grid.grid-cols-2 {
    grid-template-columns: 1fr;
  }
  .grid.grid-cols-3 {
    grid-template-columns: 1fr;
  }
  .grid.grid-cols-4 {
    grid-template-columns: 1fr;
  }
  .grid.grid-cols-5 {
    grid-template-columns: 1fr;
  }
  .grid.grid-cols-6 {
    grid-template-columns: 1fr;
  }
}

.flex {
  display: flex;
}
.flex.flex-col {
  flex-direction: column;
}
.flex.flex-row {
  flex-direction: row;
}
.flex.flex-wrap {
  flex-wrap: wrap;
}
.flex.flex-nowrap {
  flex-wrap: nowrap;
}
.flex.justify-start {
  justify-content: flex-start;
}
.flex.justify-center {
  justify-content: center;
}
.flex.justify-end {
  justify-content: flex-end;
}
.flex.justify-between {
  justify-content: space-between;
}
.flex.justify-around {
  justify-content: space-around;
}
.flex.justify-evenly {
  justify-content: space-evenly;
}
.flex.items-start {
  align-items: flex-start;
}
.flex.items-center {
  align-items: center;
}
.flex.items-end {
  align-items: flex-end;
}
.flex.items-stretch {
  align-items: stretch;
}
.flex.items-baseline {
  align-items: baseline;
}
.flex.gap-xs {
  gap: 0.25rem;
}
.flex.gap-sm {
  gap: 0.5rem;
}
.flex.gap-md {
  gap: 1rem;
}
.flex.gap-lg {
  gap: 1.5rem;
}
.flex.gap-xl {
  gap: 2rem;
}
.flex.gap-2xl {
  gap: 3rem;
}

.section {
  margin-bottom: 4rem;
}
.section.section-sm {
  margin-bottom: 2rem;
}
.section.section-lg {
  margin-bottom: 6rem;
}
.section:last-child {
  margin-bottom: 0;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

@media (max-width: 480px) {
  .hidden-xs {
    display: none;
  }
  .block-xs {
    display: block;
  }
}
@media (max-width: 768px) {
  .hidden-sm {
    display: none;
  }
  .block-sm {
    display: block;
  }
}
@media (max-width: 1024px) {
  .hidden-md {
    display: none;
  }
  .block-md {
    display: block;
  }
}
@media (max-width: 1200px) {
  .hidden-lg {
    display: none;
  }
  .block-lg {
    display: block;
  }
}
.text-left {
  text-align: left;
}

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

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.m-0 {
  margin: 0;
}

.m-xs {
  margin: 0.25rem;
}

.m-sm {
  margin: 0.5rem;
}

.m-md {
  margin: 1rem;
}

.m-lg {
  margin: 1.5rem;
}

.m-xl {
  margin: 2rem;
}

.m-2xl {
  margin: 3rem;
}

.p-0 {
  padding: 0;
}

.p-xs {
  padding: 0.25rem;
}

.p-sm {
  padding: 0.5rem;
}

.p-md {
  padding: 1rem;
}

.p-lg {
  padding: 1.5rem;
}

.p-xl {
  padding: 2rem;
}

.p-2xl {
  padding: 3rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-xs {
  margin-top: 0.25rem;
}

.mt-sm {
  margin-top: 0.5rem;
}

.mt-md {
  margin-top: 1rem;
}

.mt-lg {
  margin-top: 1.5rem;
}

.mt-xl {
  margin-top: 2rem;
}

.mt-2xl {
  margin-top: 3rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-xs {
  margin-bottom: 0.25rem;
}

.mb-sm {
  margin-bottom: 0.5rem;
}

.mb-md {
  margin-bottom: 1rem;
}

.mb-lg {
  margin-bottom: 1.5rem;
}

.mb-xl {
  margin-bottom: 2rem;
}

.mb-2xl {
  margin-bottom: 3rem;
}

:root {
  --rust-orange: #ce4e1b;
  --rust-accent: #e85d2b;
  --rust-dark: #8b3215;
  --rust-light: #f4a77c;
  --bg-primary: #0a0a0a;
  --bg-secondary: #161616;
  --bg-card: #1a1a1a;
  --bg-overlay: rgba(0, 0, 0, 0.8);
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #999999;
  --text-inverse: #000000;
  --border-primary: #333333;
  --border-secondary: #555555;
  --border-accent: #ce4e1b;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #3b82f6;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--rust-orange);
  text-decoration: none;
  transition: all 0.2s ease;
}
a:hover {
  color: var(--rust-accent);
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1rem;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

h1 {
  font-size: 1.875rem;
  font-weight: 700;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.125rem;
}

h5, h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.75;
}
p:last-child {
  margin-bottom: 0;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
ul li, ol li {
  margin-bottom: 0.25rem;
}

code {
  background-color: rgba(206, 78, 27, 0.1);
  color: var(--rust-orange);
  padding: 2px 0.25rem;
  border-radius: 4px;
  font-family: "JetBrains Mono", "Fira Code", "Monaco", "Consolas", monospace;
  font-size: 0.9em;
}

pre {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-primary);
  border-radius: 12px;
  padding: 1.5rem;
  overflow-x: auto;
  margin-bottom: 1rem;
}
pre code {
  background: none;
  color: var(--text-primary);
  padding: 0;
}

::selection {
  background-color: rgba(206, 78, 27, 0.3);
  color: var(--text-primary);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--rust-orange);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--rust-accent);
}

:focus-visible {
  outline: 2px solid var(--rust-orange);
  outline-offset: 2px;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html {
    scroll-behavior: auto;
  }
}
.page-container-dc8e1de {
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem;
}
@media (max-width: 768px) {
  .page-container-dc8e1de {
    padding: 1rem;
  }
}

.page-header-dc8e1de {
  text-align: center;
  margin-bottom: 4rem;
}
.page-header-dc8e1de h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .page-header-dc8e1de h1 {
    font-size: 1.875rem;
  }
}

.page-subtitle-dc8e1de {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

.about-section-dc8e1de {
  margin-bottom: 4rem;
  text-align: center;
}
.about-section-dc8e1de h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--rust-orange);
  margin-bottom: 1.5rem;
}

.mission-text-dc8e1de {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 800px;
  margin: 0 auto;
}

.what-we-do-dc8e1de {
  margin-bottom: 4rem;
}
.what-we-do-dc8e1de h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--rust-orange);
  text-align: center;
  margin-bottom: 3rem;
}

.activities-grid-dc8e1de {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .activities-grid-dc8e1de {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .activities-grid-dc8e1de {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.activity-card-dc8e1de {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}
.activity-card-dc8e1de:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.activity-card-dc8e1de svg {
  width: 48px;
  height: 48px;
  color: var(--rust-orange);
  margin-bottom: 1rem;
}
.activity-card-dc8e1de h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.activity-card-dc8e1de p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

.stats-section-dc8e1de {
  margin-bottom: 4rem;
}
.stats-section-dc8e1de h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--rust-orange);
  text-align: center;
  margin-bottom: 3rem;
}

.stats-grid-dc8e1de {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .stats-grid-dc8e1de {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .stats-grid-dc8e1de {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.stat-card-dc8e1de {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.stat-card-dc8e1de:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-number-dc8e1de {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--rust-orange);
  line-height: 1;
}
@media (max-width: 480px) {
  .stat-number-dc8e1de {
    font-size: 1.5rem;
  }
}

.stat-label-dc8e1de {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-align: center;
  font-weight: 500;
}

.join-section-dc8e1de {
  background: rgba(var(--rust-orange), 0.05);
  border: 1px solid rgba(var(--rust-orange), 0.2);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
}
.join-section-dc8e1de h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rust-orange);
  margin-bottom: 1rem;
}
.join-section-dc8e1de p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 480px) {
  .join-section-dc8e1de {
    padding: 2rem 1rem;
  }
}

.join-buttons-dc8e1de {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .join-buttons-dc8e1de {
    flex-direction: column;
    align-items: center;
  }
}

.btn-dc8e1de {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}
.btn-dc8e1de:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--rust-orange), 0.3);
}

.btn-primary-dc8e1de {
  background-color: var(--rust-orange);
  color: white;
}
.btn-primary-dc8e1de:hover {
  background-color: var(--rust-accent);
  transform: translateY(-1px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary-dc8e1de {
  background-color: var(--bg-overlay);
  color: var(--text-primary);
  border: 1px solid var(--border-secondary);
}
.btn-secondary-dc8e1de:hover {
  background-color: rgba(var(--rust-orange), 0.1);
  border-color: var(--border-accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-large-dc8e1de {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

@media (max-width: 480px) {
  .page-container-dc8e1de {
    padding: 1rem;
  }
  .activities-grid-dc8e1de {
    gap: 1rem;
  }
  .activity-card-dc8e1de {
    padding: 1rem;
  }
  .stats-grid-dc8e1de {
    gap: 1rem;
  }
  .stat-card-dc8e1de {
    padding: 1rem;
  }
  .join-section-dc8e1de {
    padding: 2rem 1rem;
  }
}
.page-container-7012e52 {
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem;
}
@media (max-width: 768px) {
  .page-container-7012e52 {
    padding: 1rem;
  }
}

.page-header-7012e52 {
  text-align: center;
  margin-bottom: 4rem;
}
.page-header-7012e52 h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .page-header-7012e52 h1 {
    font-size: 1.875rem;
  }
}

.page-subtitle-7012e52 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.75;
}

.petition-hero-7012e52 {
  background: rgba(var(--rust-orange), 0.05);
  border: 2px solid rgba(var(--rust-orange), 0.2);
  border-radius: 16px;
  padding: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .petition-hero-7012e52 {
    padding: 2rem;
  }
}

.petition-content-7012e52 {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.petition-content-7012e52 h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--rust-orange);
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .petition-content-7012e52 h2 {
    font-size: 1.5rem;
  }
}

.petition-text-7012e52 {
  text-align: left;
  margin-bottom: 3rem;
}
.petition-text-7012e52 p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.petition-text-7012e52 h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.benefits-list-7012e52 {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.5rem;
}
@media (max-width: 480px) {
  .benefits-list-7012e52 {
    grid-template-columns: 1fr;
  }
}
.benefits-list-7012e52 li {
  padding: 0.5rem 1rem;
  background: rgba(var(--rust-orange), 0.1);
  border-left: 4px solid var(--rust-orange);
  border-radius: 8px;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}
.benefits-list-7012e52 li:hover {
  background: rgba(var(--rust-orange), 0.15);
  color: var(--text-primary);
}
.benefits-list-7012e52 li::before {
  content: "✓";
  color: var(--rust-orange);
  font-weight: 700;
  margin-right: 0.5rem;
}

.petition-stats-7012e52 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card-7012e52 {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.stat-card-7012e52:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.stat-card-7012e52.primary-7012e52 {
  border-color: var(--rust-orange);
  background: rgba(var(--rust-orange), 0.05);
}
.stat-card-7012e52.primary-7012e52 .stat-number-7012e52 {
  color: var(--rust-orange);
}
.stat-card-7012e52.success-7012e52 {
  border-color: var(--success);
  background: rgba(var(--success), 0.05);
}
.stat-card-7012e52.success-7012e52 .stat-number-7012e52 {
  color: var(--success);
}

.stat-number-7012e52 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
@media (max-width: 480px) {
  .stat-number-7012e52 {
    font-size: 1.5rem;
  }
}

.stat-label-7012e52 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-align: center;
  font-weight: 500;
}

.btn-7012e52 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.btn-7012e52:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary-7012e52 {
  background: var(--rust-orange);
  color: white;
  border-color: var(--rust-orange);
}
.btn-primary-7012e52:hover:not(:disabled) {
  background: #b74518;
  border-color: #b74518;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn-primary-7012e52:active:not(:disabled) {
  transform: translateY(0);
}

.btn-large-7012e52 {
  padding: 1.5rem 2rem;
  font-size: 1.125rem;
}

.badge-b66069e {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  white-space: nowrap;
}

.badge-sm-b66069e {
  padding: 2px 0.25rem;
  font-size: 0.6rem;
}

.badge-lg-b66069e {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.badge-primary-b66069e {
  background-color: var(--rust-orange);
  color: white;
}

.badge-secondary-b66069e {
  background-color: var(--bg-overlay);
  color: var(--text-primary);
  border: 1px solid var(--border-secondary);
}

.badge-success-b66069e {
  background-color: var(--success-bg);
  color: var(--success);
  border: 1px solid var(--success-border);
}

.badge-warning-b66069e {
  background-color: var(--warning-bg);
  color: var(--warning);
  border: 1px solid var(--warning-border);
}

.badge-error-b66069e {
  background-color: var(--error-bg);
  color: var(--error);
  border: 1px solid var(--error-border);
}

.badge-info-b66069e {
  background-color: var(--info-bg);
  color: var(--info);
  border: 1px solid var(--info-border);
}

.badge-outline-b66069e {
  background-color: transparent;
  color: var(--rust-orange);
  border: 1px solid var(--rust-orange);
}

.difficulty-badge-b66069e.difficulty-easy-b66069e {
  background-color: var(--difficulty-easy-bg);
  color: var(--difficulty-easy);
  border: 1px solid var(--difficulty-easy-border);
}
.difficulty-badge-b66069e.difficulty-medium-b66069e {
  background-color: var(--difficulty-medium-bg);
  color: var(--difficulty-medium);
  border: 1px solid var(--difficulty-medium-border);
}
.difficulty-badge-b66069e.difficulty-hard-b66069e {
  background-color: var(--difficulty-hard-bg);
  color: var(--difficulty-hard);
  border: 1px solid var(--difficulty-hard-border);
}

.difficulty-easy-b66069e {
  background-color: var(--difficulty-easy-bg);
  color: var(--difficulty-easy);
  border: 1px solid var(--difficulty-easy-border);
}

.difficulty-medium-b66069e {
  background-color: var(--difficulty-medium-bg);
  color: var(--difficulty-medium);
  border: 1px solid var(--difficulty-medium-border);
}

.difficulty-hard-b66069e {
  background-color: var(--difficulty-hard-bg);
  color: var(--difficulty-hard);
  border: 1px solid var(--difficulty-hard-border);
}

.post-type-badge-b66069e {
  color: white;
}
.post-type-badge-b66069e.type-tutorial-b66069e {
  background: var(--type-tutorial-bg);
}
.post-type-badge-b66069e.type-guide-b66069e {
  background: var(--type-guide-bg);
}
.post-type-badge-b66069e.type-show-and-tell-b66069e {
  background: var(--type-show-tell-bg);
}
.post-type-badge-b66069e.type-tech-talk-b66069e {
  background: var(--type-tech-talk-bg);
}
.post-type-badge-b66069e.type-news-b66069e {
  background: var(--type-news-bg);
}
.post-type-badge-b66069e.type-review-b66069e {
  background: var(--type-review-bg);
}

.type-tutorial-b66069e {
  background: var(--type-tutorial-bg);
}

.type-guide-b66069e {
  background: var(--type-guide-bg);
}

.type-show-and-tell-b66069e {
  background: var(--type-show-tell-bg);
}

.type-tech-talk-b66069e {
  background: var(--type-tech-talk-bg);
}

.type-news-b66069e {
  background: var(--type-news-bg);
}

.type-review-b66069e {
  background: var(--type-review-bg);
}

.tag-b66069e {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.2s ease;
  line-height: 1;
  white-space: nowrap;
}
.tag-b66069e:hover {
  transform: translateY(-1px);
}

.tag-default-b66069e {
  background-color: rgba(var(--rust-orange), 0.1);
  color: var(--rust-orange);
  border: 1px solid var(--border-secondary);
}
.tag-default-b66069e:hover {
  background-color: rgba(var(--rust-orange), 0.2);
  border-color: var(--border-accent);
}

.tag-outline-b66069e {
  background-color: transparent;
  color: var(--rust-orange);
  border: 1px solid var(--rust-orange);
}
.tag-outline-b66069e:hover {
  background-color: rgba(var(--rust-orange), 0.1);
}

.tag-solid-b66069e {
  background-color: var(--rust-orange);
  color: white;
  border: 1px solid var(--rust-orange);
}
.tag-solid-b66069e:hover {
  background-color: var(--rust-accent);
}

.tag-ghost-b66069e {
  background-color: transparent;
  color: var(--text-secondary);
  border: none;
}
.tag-ghost-b66069e:hover {
  color: var(--rust-orange);
  background-color: rgba(var(--rust-orange), 0.1);
}

.badge-group-b66069e {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
}

.tag-group-b66069e {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
}

.badge-dot-b66069e {
  position: relative;
}
.badge-dot-b66069e::after {
  content: "";
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  width: 8px;
  height: 8px;
  background-color: var(--error);
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
}

.badge-count-b66069e {
  position: relative;
}
.badge-count-b66069e::after {
  content: attr(data-count);
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--error);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  padding: 0 4px;
  border: 2px solid var(--bg-primary);
}
.badge-count-b66069e[data-count="0"]::after {
  display: none;
}

.badge-button-b66069e {
  cursor: pointer;
  transition: all 0.2s ease;
}
.badge-button-b66069e:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.badge-button-b66069e:active {
  transform: translateY(0);
}

.badge-removable-b66069e {
  padding-right: 1.5rem;
  position: relative;
}
.badge-removable-b66069e::after {
  content: "×";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-weight: bold;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.badge-removable-b66069e::after:hover {
  opacity: 1;
}

.page-container-c906b3b {
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem;
}
@media (max-width: 768px) {
  .page-container-c906b3b {
    padding: 1rem;
  }
}

.page-header-c906b3b {
  text-align: center;
  margin-bottom: 3rem;
}
.page-header-c906b3b h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .page-header-c906b3b h1 {
    font-size: 1.875rem;
  }
}

.page-subtitle-c906b3b {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

.btn-c906b3b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}
.btn-c906b3b:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--rust-orange), 0.3);
}
.btn-c906b3b:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.btn-primary-c906b3b {
  background-color: var(--rust-orange);
  color: white;
}
.btn-primary-c906b3b:hover:not(:disabled) {
  background-color: var(--rust-accent);
  transform: translateY(-1px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.btn-primary-c906b3b:active {
  transform: translateY(0);
}

.btn-secondary-c906b3b {
  background-color: var(--bg-overlay);
  color: var(--text-primary);
  border: 1px solid var(--border-secondary);
}
.btn-secondary-c906b3b:hover:not(:disabled) {
  background-color: rgba(var(--rust-orange), 0.1);
  border-color: var(--border-accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn-secondary-c906b3b:active {
  transform: translateY(0);
}

.btn-sm-c906b3b {
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
}

.featured-posts-c906b3b {
  margin-bottom: 4rem;
}
.featured-posts-c906b3b h2 {
  font-size: 1.875rem;
  color: var(--rust-orange);
  margin-bottom: 2rem;
  text-align: center;
}

.featured-posts-grid-c906b3b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.featured-post-card-c906b3b, .post-card-c906b3b {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--border-primary);
  transition: all 0.3s ease;
}
.featured-post-card-c906b3b:hover, .post-card-c906b3b:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: 0 4px 12px rgba(206, 78, 27, 0.15);
}

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

.post-badges-c906b3b {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.post-type-badge-c906b3b {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.post-type-badge-c906b3b.type-tutorial-c906b3b {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
}
.post-type-badge-c906b3b.type-guide-c906b3b {
  background: linear-gradient(135deg, #2196F3, #1976D2);
  color: white;
}
.post-type-badge-c906b3b.type-show-and-tell-c906b3b {
  background: linear-gradient(135deg, #FF9800, #F57C00);
  color: white;
}
.post-type-badge-c906b3b.type-tech-talk-c906b3b {
  background: linear-gradient(135deg, #9C27B0, #7B1FA2);
  color: white;
}
.post-type-badge-c906b3b.type-news-c906b3b {
  background: linear-gradient(135deg, #FF5722, #D84315);
  color: white;
}
.post-type-badge-c906b3b.type-review-c906b3b {
  background: linear-gradient(135deg, #607D8B, #455A64);
  color: white;
}

.difficulty-badge-c906b3b {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.difficulty-badge-c906b3b.difficulty-easy-c906b3b {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
  border: 1px solid #4CAF50;
}
.difficulty-badge-c906b3b.difficulty-medium-c906b3b {
  background: rgba(255, 193, 7, 0.2);
  color: #FFC107;
  border: 1px solid #FFC107;
}
.difficulty-badge-c906b3b.difficulty-hard-c906b3b {
  background: rgba(244, 67, 54, 0.2);
  color: #F44336;
  border: 1px solid #F44336;
}

.post-meta-c906b3b {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.read-time-c906b3b {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.post-title-c906b3b {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.post-excerpt-c906b3b {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.series-info-c906b3b {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--rust-accent);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: rgba(206, 66, 43, 0.1);
  border-radius: 6px;
  border-left: 3px solid var(--rust-orange);
}

.post-author-c906b3b {
  margin-bottom: 1rem;
}

.author-info-c906b3b {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.author-name-c906b3b {
  color: var(--rust-orange);
  font-weight: 600;
}

.publish-date-c906b3b::before {
  content: "•";
  margin: 0 0.5rem;
}

.post-tags-c906b3b {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tag-c906b3b {
  background: rgba(206, 66, 43, 0.1);
  color: var(--rust-orange);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  border: 1px solid rgba(206, 66, 43, 0.3);
}

.blog-filters-c906b3b {
  margin-bottom: 3rem;
}
.blog-filters-c906b3b h2 {
  font-size: 2rem;
  color: var(--rust-orange);
  margin-bottom: 2rem;
  text-align: center;
}

.filter-controls-c906b3b {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: rgba(45, 45, 45, 0.5);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(206, 66, 43, 0.2);
}

.filter-group-c906b3b {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.filter-group-c906b3b label {
  color: var(--rust-orange);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-buttons-c906b3b {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.filter-btn-c906b3b {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
.filter-btn-c906b3b:hover {
  border-color: var(--rust-orange);
  color: var(--rust-orange);
  background: rgba(206, 66, 43, 0.1);
}
.filter-btn-c906b3b.active-c906b3b {
  background: var(--rust-orange);
  color: white;
  border-color: var(--rust-orange);
}

.all-posts-c906b3b {
  margin-bottom: 4rem;
}

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

.blog-cta-c906b3b {
  text-align: center;
  background: rgba(45, 45, 45, 0.5);
  padding: 3rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(206, 66, 43, 0.2);
}
.blog-cta-c906b3b h2 {
  font-size: 2rem;
  color: var(--rust-orange);
  margin-bottom: 1rem;
}
.blog-cta-c906b3b p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-buttons-c906b3b {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .featured-posts-grid-c906b3b {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .posts-grid-c906b3b {
    grid-template-columns: 1fr;
  }
  .filter-controls-c906b3b {
    padding: 1.5rem;
  }
  .filter-group-c906b3b {
    gap: 0.5rem;
  }
  .filter-buttons-c906b3b {
    gap: 0.5rem;
  }
  .filter-btn-c906b3b {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  .cta-buttons-c906b3b {
    flex-direction: column;
    align-items: center;
  }
}
.page_container-55b21e5 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}
@media (max-width: 768px) {
  .page_container-55b21e5 {
    padding: 1rem;
  }
}

.loading_container-55b21e5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}
.loading_container-55b21e5 p {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.loading_spinner-55b21e5 {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top: 3px solid var(--rust-orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.error_container-55b21e5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  color: #ef4444;
}
.error_container-55b21e5 svg {
  margin-bottom: 1rem;
  color: #ef4444;
}
.error_container-55b21e5 h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ef4444;
}
.error_container-55b21e5 p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.back_button-55b21e5, .back_to_blog-55b21e5 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background: var(--rust-orange);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.back_button-55b21e5:hover, .back_to_blog-55b21e5:hover {
  background: var(--rust-orange);
  transform: translateY(-1px);
}
.back_button-55b21e5 svg, .back_to_blog-55b21e5 svg {
  flex-shrink: 0;
}

.blog_post_container-55b21e5 {
  max-width: 100%;
}

.post_header-55b21e5 {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb-55b21e5 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.breadcrumb_link-55b21e5 {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--rust-orange);
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumb_link-55b21e5:hover {
  color: var(--rust-orange);
}

.breadcrumb_separator-55b21e5 {
  color: rgba(255, 255, 255, 0.2);
}

.breadcrumb_current-55b21e5 {
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.post_badges-55b21e5 {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.post_type_badge-55b21e5 {
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
}
.post_type_badge-55b21e5.type_tutorial-55b21e5 {
  background: linear-gradient(135deg, #4CAF50, #45a049);
}
.post_type_badge-55b21e5.type_guide-55b21e5 {
  background: linear-gradient(135deg, #2196F3, #1976D2);
}
.post_type_badge-55b21e5.type_show_and_tell-55b21e5 {
  background: linear-gradient(135deg, #FF9800, #F57C00);
}
.post_type_badge-55b21e5.type_tech_talk-55b21e5 {
  background: linear-gradient(135deg, #9C27B0, #7B1FA2);
}
.post_type_badge-55b21e5.type_news-55b21e5 {
  background: linear-gradient(135deg, #FF5722, #D84315);
}
.post_type_badge-55b21e5.type_review-55b21e5 {
  background: linear-gradient(135deg, #607D8B, #455A64);
}

.difficulty_badge-55b21e5 {
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 2px solid;
}
.difficulty_badge-55b21e5.difficulty_easy-55b21e5 {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
  border-color: #4CAF50;
}
.difficulty_badge-55b21e5.difficulty_medium-55b21e5 {
  background: rgba(255, 193, 7, 0.2);
  color: #FFC107;
  border-color: #FFC107;
}
.difficulty_badge-55b21e5.difficulty_hard-55b21e5 {
  background: rgba(244, 67, 54, 0.2);
  color: #F44336;
  border-color: #F44336;
}

.post_title-55b21e5 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--rust-orange);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
@media (max-width: 1024px) {
  .post_title-55b21e5 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .post_title-55b21e5 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .post_title-55b21e5 {
    font-size: 1.75rem;
  }
}

.post_meta-55b21e5 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 480px) {
  .post_meta-55b21e5 {
    gap: 0.75rem;
  }
}

.author_info-55b21e5 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.author_info-55b21e5 svg {
  color: var(--rust-orange);
  flex-shrink: 0;
}

.author_name-55b21e5 {
  font-weight: 600;
  color: var(--text-primary);
}

.github_link-55b21e5 {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--rust-orange);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.github_link-55b21e5:hover {
  color: var(--rust-orange);
}
.github_link-55b21e5 svg {
  flex-shrink: 0;
}

.post_stats-55b21e5 {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
@media (max-width: 480px) {
  .post_stats-55b21e5 {
    gap: 1rem;
  }
}
.post_stats-55b21e5 span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.post_stats-55b21e5 span svg {
  flex-shrink: 0;
  color: var(--rust-orange);
}

.read_time-55b21e5, .publish_date-55b21e5, .view_count-55b21e5, .like_count-55b21e5 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.series_info-55b21e5 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(var(--rust-orange), 0.1);
  border-left: 4px solid var(--rust-orange);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
}
.series_info-55b21e5 svg {
  color: var(--rust-orange);
  flex-shrink: 0;
}

.excerpt-55b21e5 {
  margin-bottom: 1.5rem;
}
.excerpt-55b21e5 p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-style: italic;
  margin: 0;
}

.tags-55b21e5 {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag-55b21e5 {
  padding: 0.3rem 0.75rem;
  background: rgba(var(--rust-orange), 0.1);
  color: var(--rust-orange);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}
.tag-55b21e5:hover {
  background: rgba(var(--rust-orange), 0.2);
  transform: translateY(-1px);
}

.post_content-55b21e5 {
  margin: 3rem 0;
}
.post_content-55b21e5 .blog_content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.external_links-55b21e5 {
  margin: 3rem 0;
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.external_links-55b21e5 h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--rust-orange);
  margin-bottom: 1rem;
}
.external_links-55b21e5 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.external_links-55b21e5 li {
  margin: 0;
}

.external_link-55b21e5 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--rust-orange);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.external_link-55b21e5:hover {
  color: var(--rust-orange);
}
.external_link-55b21e5 svg {
  flex-shrink: 0;
}

.post_navigation-55b21e5 {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

@media (max-width: 1024px) {
  .page_container-55b21e5 {
    padding: 1.5rem;
  }
  .post_meta-55b21e5 {
    gap: 0.75rem;
  }
  .post_stats-55b21e5 {
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .page_container-55b21e5 {
    padding: 1rem;
  }
  .post_header-55b21e5 {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }
  .post_badges-55b21e5 {
    gap: 0.5rem;
  }
  .author_info-55b21e5 {
    gap: 0.5rem;
  }
  .post_stats-55b21e5 {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  .external_links-55b21e5 {
    padding: 1.5rem;
    margin: 2rem 0;
  }
  .post_navigation-55b21e5 {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
}
@media (max-width: 480px) {
  .page_container-55b21e5 {
    padding: 0.5rem;
  }
  .breadcrumb_current-55b21e5 {
    max-width: 150px;
  }
  .post_badges-55b21e5 {
    gap: 0.4rem;
  }
  .post_type_badge-55b21e5, .difficulty_badge-55b21e5 {
    padding: 0.3rem 0.75rem;
    font-size: 0.7rem;
  }
  .author_info-55b21e5 {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .github_link-55b21e5 {
    font-size: 0.8rem;
  }
  .series_info-55b21e5 {
    padding: 0.75rem;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .excerpt-55b21e5 p {
    font-size: 1.1rem;
  }
  .external_links-55b21e5 {
    padding: 1rem;
  }
}
.card-9744704 {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--border-primary);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.card-9744704:hover {
  transform: translateY(-2px);
  border-color: var(--border-accent);
  box-shadow: 0 4px 12px rgba(206, 78, 27, 0.15);
}

.card-featured-9744704 {
  border-color: var(--rust-orange);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.card-featured-9744704:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 0 20px rgba(var(--rust-orange), 0.3);
}

.card-compact-9744704 {
  padding: 1rem;
  border-radius: 12px;
}

.card-sm-9744704 {
  padding: 1rem;
  border-radius: 12px;
}
.card-sm-9744704 .card-title-9744704 {
  font-size: 1rem;
}
.card-sm-9744704 .card-text-9744704 {
  font-size: 0.875rem;
}

.card-lg-9744704 {
  padding: 2rem;
  border-radius: 20px;
}
.card-lg-9744704 .card-title-9744704 {
  font-size: 1.5rem;
}
.card-lg-9744704 .card-text-9744704 {
  font-size: 1.125rem;
}

.card-elevated-9744704 {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.card-elevated-9744704:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.card-header-9744704 {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(var(--border-primary), 0.5);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.card-body-9744704 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-footer-9744704 {
  margin-top: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(var(--border-primary), 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.card-title-9744704 {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  margin: 0;
}
.card-title-9744704 a {
  color: inherit;
  text-decoration: none;
}
.card-title-9744704 a:hover {
  color: var(--rust-orange);
}

.card-text-9744704 {
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}
.card-text-9744704:not(:last-child) {
  margin-bottom: 0.5rem;
}

@media (max-width: 480px) {
  .card-9744704 {
    padding: 1rem;
    border-radius: 12px;
  }
  .card-lg-9744704 {
    padding: 1.5rem;
  }
  .card-header-9744704,
  .card-footer-9744704 {
    flex-direction: column;
    align-items: stretch;
  }
}
.card-horizontal-9744704 {
  flex-direction: row;
  align-items: center;
}
.card-horizontal-9744704 .card-body-9744704 {
  flex: 1;
}
@media (max-width: 480px) {
  .card-horizontal-9744704 {
    flex-direction: column;
  }
}

.card-image-top-9744704 {
  padding: 0;
  overflow: hidden;
}
.card-image-top-9744704 img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}
.card-image-top-9744704 .card-header-9744704,
.card-image-top-9744704 .card-body-9744704,
.card-image-top-9744704 .card-footer-9744704 {
  padding: 1.5rem;
}
.card-image-top-9744704 .card-header-9744704 {
  padding-bottom: 0.5rem;
}
.card-image-top-9744704 .card-footer-9744704 {
  padding-top: 0.5rem;
}

.card-group-9744704 {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.card-group-9744704 .card-9744704 {
  flex: 1;
  min-width: 280px;
}

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

.card-overlay-9744704 {
  position: relative;
  color: white;
}
.card-overlay-9744704::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(var(--rust-dark), 0.8), rgba(var(--rust-orange), 0.6));
  border-radius: inherit;
}
.card-overlay-9744704 .card-header-9744704,
.card-overlay-9744704 .card-body-9744704,
.card-overlay-9744704 .card-footer-9744704 {
  position: relative;
  z-index: 1;
}

.page_container-5609638 {
  min-height: 100vh;
  padding: 2rem;
  background: var(--bg-primary);
}

.loading_container-5609638, .error_container-5609638 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  text-align: center;
  gap: 1.5rem;
}
.loading_container-5609638 p, .error_container-5609638 p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.loading_spinner-5609638 {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid var(--rust-orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.error_container-5609638 svg {
  color: #ef4444;
}
.error_container-5609638 h1 {
  color: #ef4444;
  font-size: 2rem;
  margin: 0;
}

.back_button-5609638 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--rust-orange);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.back_button-5609638:hover {
  background: var(--rust-orange-hover);
}

.event_container-5609638 {
  max-width: 900px;
  margin: 0 auto;
}

.event_header-5609638 {
  margin-bottom: 3rem;
}

.breadcrumb-5609638 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.breadcrumb_link-5609638 {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--rust-orange);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.breadcrumb_link-5609638:hover {
  opacity: 0.8;
}

.breadcrumb_separator-5609638 {
  color: var(--text-secondary);
}

.breadcrumb_current-5609638 {
  color: var(--text-secondary);
}

.event_badges-5609638 {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.event_type_badge-5609638 {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: capitalize;
}

.type_workshop-5609638 {
  background: rgba(206, 66, 43, 0.15);
  color: var(--rust-orange);
  border: 1px solid rgba(206, 66, 43, 0.3);
}

.type_seminar-5609638 {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.type_study_group-5609638 {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.type_social-5609638 {
  background: rgba(168, 85, 247, 0.15);
  color: #a855f7;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.recurring_badge-5609638 {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.event_title-5609638 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 1rem 0;
  line-height: 1.2;
}

.event_meta-5609638 {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.meta_item-5609638 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 1rem;
}
.meta_item-5609638 svg {
  color: var(--rust-orange);
  flex-shrink: 0;
}
.meta_item-5609638 span {
  color: var(--text-primary);
}

.excerpt-5609638 {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-left: 4px solid var(--rust-orange);
  border-radius: 8px;
}
.excerpt-5609638 p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.event_description-5609638 {
  margin: 2rem 0;
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.event_description-5609638 h2 {
  color: var(--rust-orange);
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 1rem;
}
.event_description-5609638 p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.1rem;
}

.event_content-5609638 {
  margin: 3rem 0;
}

.event_navigation-5609638 {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.back_to_events-5609638 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg-secondary);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}
.back_to_events-5609638:hover {
  background: var(--rust-orange);
  border-color: var(--rust-orange);
  color: white;
}
.back_to_events-5609638 svg {
  transition: transform 0.2s ease;
}
.back_to_events-5609638:hover svg {
  transform: translateX(-4px);
}

@media (max-width: 768px) {
  .page_container-5609638 {
    padding: 1rem;
  }
  .event_title-5609638 {
    font-size: 2rem;
  }
  .event_meta-5609638 {
    flex-direction: column;
    gap: 1rem;
  }
  .excerpt-5609638 p {
    font-size: 1rem;
  }
}
.page-container-8952d60 {
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem;
}
@media (max-width: 768px) {
  .page-container-8952d60 {
    padding: 1rem;
  }
}

.page-header-8952d60 {
  text-align: center;
  margin-bottom: 4rem;
}
.page-header-8952d60 h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .page-header-8952d60 h1 {
    font-size: 1.875rem;
  }
}

.page-subtitle-8952d60 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

.events-calendar-8952d60 {
  margin-bottom: 4rem;
}

.calendar-header-8952d60 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .calendar-header-8952d60 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.calendar-header-8952d60 h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--rust-orange);
  margin: 0;
}

.event-filters-8952d60 {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .event-filters-8952d60 {
    width: 100%;
    justify-content: center;
  }
}

.filter-btn-8952d60 {
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--border-secondary);
  background: var(--bg-overlay);
  color: var(--text-secondary);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  font-weight: 500;
}
.filter-btn-8952d60:hover {
  border-color: var(--rust-orange);
  color: var(--rust-orange);
  background: rgba(var(--rust-orange), 0.1);
}
.filter-btn-8952d60.active-8952d60 {
  background: var(--rust-orange);
  color: white;
  border-color: var(--rust-orange);
}

.events-list-8952d60 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.event-card-8952d60 {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.event-card-8952d60:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(206, 78, 27, 0.15);
}
@media (max-width: 768px) {
  .event-card-8952d60 {
    padding: 1rem;
  }
}

.event-content-8952d60 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-header-8952d60 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
@media (max-width: 480px) {
  .event-header-8952d60 {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.title-group-8952d60 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.badge-group-8952d60 {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .badge-group-8952d60 {
    justify-content: flex-start;
  }
}

.event-date-badge-8952d60 {
  background: rgba(var(--rust-orange), 0.1);
  color: var(--rust-orange);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 50px;
  white-space: nowrap;
  border: 1px solid rgba(var(--rust-orange), 0.2);
}

.recurring-badge-8952d60 {
  background: rgba(var(--rust-orange), 0.1);
  color: var(--rust-orange);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 50px;
  white-space: nowrap;
  border: 1px solid rgba(var(--rust-orange), 0.2);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.recurring-badge-8952d60 svg {
  width: 12px;
  height: 12px;
}

.event-type-badge-8952d60 {
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}
.event-type-badge-8952d60.type-workshop-8952d60 {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
  border: 1px solid #4CAF50;
}
.event-type-badge-8952d60.type-study-group-8952d60 {
  background: rgba(33, 150, 243, 0.2);
  color: #2196F3;
  border: 1px solid #2196F3;
}
.event-type-badge-8952d60.type-seminar-8952d60 {
  background: rgba(156, 39, 176, 0.2);
  color: #9C27B0;
  border: 1px solid #9C27B0;
}
.event-type-badge-8952d60.type-hackathon-8952d60 {
  background: rgba(255, 152, 0, 0.2);
  color: #FF9800;
  border: 1px solid #FF9800;
}
.event-type-badge-8952d60.type-panel-8952d60 {
  background: rgba(96, 125, 139, 0.2);
  color: #607D8B;
  border: 1px solid #607D8B;
}
.event-type-badge-8952d60.type-networking-8952d60 {
  background: rgba(233, 30, 99, 0.2);
  color: #E91E63;
  border: 1px solid #E91E63;
}

.event-title-8952d60 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
  margin: 0;
}

.event-description-8952d60 {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

.event-meta-8952d60 {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
@media (max-width: 480px) {
  .event-meta-8952d60 {
    gap: 1rem;
  }
}

.meta-item-8952d60 {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}
.meta-item-8952d60 svg {
  color: var(--rust-orange);
  flex-shrink: 0;
}

.join-discord-8952d60 {
  text-align: center;
  background: rgba(var(--rust-orange), 0.05);
  border: 1px solid rgba(var(--rust-orange), 0.2);
  border-radius: 16px;
  padding: 3rem;
}
.join-discord-8952d60 h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rust-orange);
  margin-bottom: 1rem;
}
.join-discord-8952d60 p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-8952d60 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}
.btn-8952d60:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--rust-orange), 0.3);
}

.btn-primary-8952d60 {
  background-color: var(--rust-orange);
  color: white;
}
.btn-primary-8952d60:hover {
  background-color: var(--rust-accent);
  transform: translateY(-1px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary-8952d60 {
  background-color: var(--bg-overlay);
  color: var(--text-primary);
  border: 1px solid var(--border-secondary);
}
.btn-secondary-8952d60:hover {
  background-color: rgba(var(--rust-orange), 0.1);
  border-color: var(--border-accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-large-8952d60 {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

@media (max-width: 480px) {
  .page-container-8952d60 {
    padding: 1rem;
  }
  .events-list-8952d60 {
    gap: 1.5rem;
  }
  .event-card-8952d60 {
    padding: 1rem;
  }
  .event-meta-8952d60 {
    flex-direction: column;
    gap: 0.5rem;
  }
  .join-discord-8952d60 {
    padding: 2rem 1rem;
  }
}
:root {
  --rust-orange: #CE422B;
  --rust-brown: #8B4513;
  --rust-dark: #2A1810;
  --rust-light: #FFE4C4;
  --rust-accent: #FF6B35;
  --bg-primary: #1A1A1A;
  --bg-secondary: #2D2D2D;
  --text-primary: #FFFFFF;
  --text-secondary: #B0B0B0;
  --success: #4CAF50;
  --warning: #FFC107;
  --info: #2196F3;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
}

html {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
}

body {
  min-height: 100vh;
  background-attachment: fixed;
}

.page-container-3015649 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  min-height: calc(100vh - 80px);
}

@media (max-width: 768px) {
  html, body {
    overscroll-behavior-y: none;
    overscroll-behavior-x: none;
  }
  body {
    position: relative;
    overflow-x: hidden;
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  html {
    background-color: #1A1A1A !important;
  }
  body {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%) fixed;
  }
}
::backdrop {
  background-color: #1A1A1A;
}

.page-header-3015649 {
  text-align: center;
  margin-bottom: 3rem;
}
.page-header-3015649 h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--rust-orange);
  margin-bottom: 1rem;
}

.page-subtitle-3015649 {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

.main-content-3015649 {
  padding-top: 0;
}

.btn-3015649 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-3015649:hover {
  transform: translateY(-2px);
}

.btn-primary-3015649 {
  background: linear-gradient(135deg, var(--rust-orange) 0%, var(--rust-accent) 100%);
  color: white;
}
.btn-primary-3015649:hover {
  box-shadow: 0 8px 25px rgba(206, 66, 43, 0.3);
}

.btn-secondary-3015649 {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-secondary-3015649:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--rust-orange);
}

.btn-sm-3015649 {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-large-3015649 {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-block-3015649 {
  width: 100%;
  justify-content: center;
}

.dashboard-header-c6e7cb7 {
  margin-bottom: 4rem;
}

.welcome-section-c6e7cb7 {
  text-align: center;
  margin-bottom: 3rem;
}
.welcome-section-c6e7cb7 .welcome-title-c6e7cb7 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.welcome-section-c6e7cb7 .welcome-title-c6e7cb7 svg {
  width: 3rem;
  height: 3rem;
  color: var(--rust-orange);
}
.welcome-section-c6e7cb7 .welcome-subtitle-c6e7cb7 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

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

.stat-card-c6e7cb7 {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}
.stat-card-c6e7cb7:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.stat-icon-c6e7cb7 {
  width: 48px;
  height: 48px;
  background: rgba(var(--rust-orange), 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-icon-c6e7cb7 svg {
  width: 24px;
  height: 24px;
  color: var(--rust-orange);
}

.stat-info-c6e7cb7 {
  display: flex;
  flex-direction: column;
}

.stat-number-c6e7cb7 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.stat-label-c6e7cb7 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.dashboard-grid-c6e7cb7 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .dashboard-grid-c6e7cb7 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.section-header-c6e7cb7 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.section-title-c6e7cb7 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}
.section-title-c6e7cb7 svg {
  width: 24px;
  height: 24px;
  color: var(--rust-orange);
}

.section-link-c6e7cb7 {
  color: var(--rust-orange);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.section-link-c6e7cb7:hover {
  color: var(--rust-accent);
}

@media (max-width: 1024px) {
  .events-section-c6e7cb7 {
    grid-column: 1;
  }
}

.events-list-c6e7cb7 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-card-c6e7cb7 {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.event-card-c6e7cb7:hover {
  border-color: var(--border-accent);
  transform: translateX(4px);
}

.event-content-c6e7cb7 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.event-header-c6e7cb7 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.event-date-badge-c6e7cb7 {
  background: rgba(var(--rust-orange), 0.1);
  color: var(--rust-orange);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 50px;
  white-space: nowrap;
  border: 1px solid rgba(var(--rust-orange), 0.2);
}

.event-title-c6e7cb7 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  flex: 1;
}

.event-description-c6e7cb7 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.75;
}

.event-meta-c6e7cb7 {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.event-time-c6e7cb7, .event-location-c6e7cb7 {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.event-time-c6e7cb7 svg, .event-location-c6e7cb7 svg {
  width: 12px;
  height: 12px;
}

@media (max-width: 1024px) {
  .issues-section-c6e7cb7 {
    grid-column: 1;
  }
}

.issues-list-c6e7cb7 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.issue-card-c6e7cb7 {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.3s ease;
}
.issue-card-c6e7cb7:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.issue-header-c6e7cb7 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.issue-title-c6e7cb7 {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.25;
  flex: 1;
}

.difficulty-badge-c6e7cb7 {
  padding: 2px 0.25rem;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}
.difficulty-badge-c6e7cb7.difficulty-easy-c6e7cb7 {
  background: var(--difficulty-easy-bg);
  color: var(--difficulty-easy);
}
.difficulty-badge-c6e7cb7.difficulty-medium-c6e7cb7 {
  background: var(--difficulty-medium-bg);
  color: var(--difficulty-medium);
}
.difficulty-badge-c6e7cb7.difficulty-hard-c6e7cb7 {
  background: var(--difficulty-hard-bg);
  color: var(--difficulty-hard);
}

.issue-description-c6e7cb7 {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.issue-footer-c6e7cb7 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.issue-tags-c6e7cb7 {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.issue-tag-c6e7cb7 {
  padding: 2px 0.25rem;
  background: rgba(var(--rust-orange), 0.1);
  color: var(--rust-orange);
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 500;
}

.issue-link-c6e7cb7 {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--rust-orange);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.issue-link-c6e7cb7 svg {
  width: 12px;
  height: 12px;
}
.issue-link-c6e7cb7:hover {
  color: var(--rust-accent);
}

.projects-section-c6e7cb7 {
  grid-column: 1/-1;
}

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

.project-card-c6e7cb7 {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.project-card-c6e7cb7:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.project-header-c6e7cb7 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.project-title-c6e7cb7 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
}

.project-stats-c6e7cb7 {
  display: flex;
  gap: 0.5rem;
}

.project-stat-c6e7cb7 {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.project-stat-c6e7cb7 svg {
  width: 12px;
  height: 12px;
}

.project-description-c6e7cb7 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.project-footer-c6e7cb7 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.project-author-c6e7cb7 {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.project-link-c6e7cb7 {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--rust-orange);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.project-link-c6e7cb7 svg {
  width: 12px;
  height: 12px;
}
.project-link-c6e7cb7:hover {
  color: var(--rust-accent);
}

.quick-actions-c6e7cb7 {
  text-align: center;
}

.actions-title-c6e7cb7 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

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

.action-card-c6e7cb7 {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
}
.action-card-c6e7cb7 svg {
  width: 32px;
  height: 32px;
  color: var(--rust-orange);
}
.action-card-c6e7cb7 span {
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
}
.action-card-c6e7cb7:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  color: var(--text-primary);
}
.action-card-c6e7cb7:hover svg {
  color: var(--rust-accent);
}

@media (max-width: 768px) {
  .stats-grid-c6e7cb7 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .dashboard-grid-c6e7cb7 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .projects-grid-c6e7cb7 {
    grid-template-columns: 1fr;
  }
  .actions-grid-c6e7cb7 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .event-card-c6e7cb7 {
    flex-direction: column;
    text-align: center;
  }
  .event-date-c6e7cb7 {
    align-self: center;
  }
}
@media (max-width: 480px) {
  .stats-grid-c6e7cb7 {
    grid-template-columns: 1fr;
  }
  .actions-grid-c6e7cb7 {
    grid-template-columns: 1fr;
  }
  .section-header-c6e7cb7 {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.markdown_content-62655ff {
  max-width: 100%;
  line-height: 1.7;
  color: var(--text-primary);
}
.markdown_content-62655ff h1, .markdown_content-62655ff h2, .markdown_content-62655ff h3, .markdown_content-62655ff h4, .markdown_content-62655ff h5, .markdown_content-62655ff h6 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--rust-orange);
}
.markdown_content-62655ff h1:first-child, .markdown_content-62655ff h2:first-child, .markdown_content-62655ff h3:first-child, .markdown_content-62655ff h4:first-child, .markdown_content-62655ff h5:first-child, .markdown_content-62655ff h6:first-child {
  margin-top: 0;
}
.markdown_content-62655ff h1 {
  font-size: 2.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.5rem;
}
.markdown_content-62655ff h2 {
  font-size: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.3rem;
}
.markdown_content-62655ff h3 {
  font-size: 1.5rem;
}
.markdown_content-62655ff h4 {
  font-size: 1.25rem;
}
.markdown_content-62655ff h5, .markdown_content-62655ff h6 {
  font-size: 1rem;
}
.markdown_content-62655ff p {
  margin-bottom: 1rem;
  text-align: justify;
}
.markdown_content-62655ff a {
  color: var(--rust-orange);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.markdown_content-62655ff a:hover {
  border-bottom-color: var(--rust-orange);
}
.markdown_content-62655ff ul, .markdown_content-62655ff ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}
.markdown_content-62655ff ul li, .markdown_content-62655ff ol li {
  margin-bottom: 0.5rem;
}
.markdown_content-62655ff pre {
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 1rem;
  overflow-x: auto;
  margin-bottom: 1rem;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.9rem;
  line-height: 1.5;
}
.markdown_content-62655ff pre code {
  background: transparent;
  padding: 0;
  border: none;
}
.markdown_content-62655ff code {
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 0.2rem 0.4rem;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.9em;
}
.markdown_content-62655ff blockquote {
  border-left: 4px solid var(--rust-orange);
  padding-left: 1rem;
  margin-left: 0;
  margin-bottom: 1rem;
  font-style: italic;
  color: var(--text-secondary);
}
.markdown_content-62655ff table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.markdown_content-62655ff table th, .markdown_content-62655ff table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.markdown_content-62655ff table th {
  background: var(--bg-secondary);
  font-weight: 600;
}
.markdown_content-62655ff img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
}
.markdown_content-62655ff hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 2rem 0;
}

.markdown_viewer-62655ff {
  width: 100%;
}

.loading-62655ff {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  color: var(--text-secondary);
}
.loading-62655ff p {
  margin-top: 1rem;
  font-size: 1.1rem;
}

.spinner-62655ff {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top: 3px solid var(--rust-orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.error-62655ff {
  padding: 2rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 8px;
  color: #ef4444;
  text-align: center;
}
.error-62655ff h2 {
  margin-bottom: 1rem;
  color: #ef4444;
}
.error-62655ff p {
  margin: 0;
}

.navbar-e141717 {
  background: rgba(var(--bg-primary), 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--rust-orange);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container-e141717 {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo-e141717 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--rust-orange);
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav-logo-e141717:hover {
  color: var(--rust-accent);
}
.nav-logo-e141717 svg {
  width: 2rem;
  height: 2rem;
}

.nav-title-e141717 {
  color: inherit;
}

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

.nav-item-e141717 {
  position: relative;
}

.nav-link-e141717 {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
}
.nav-link-e141717:hover {
  color: var(--rust-orange);
}
.nav-link-e141717::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rust-orange);
  transition: all 0.3s ease;
}
.nav-link-e141717:hover::after {
  width: 100%;
}
.nav-link-e141717.inactive-e141717 {
  color: rgba(var(--text-secondary), 0.4);
  cursor: not-allowed;
  opacity: 0.5;
}
.nav-link-e141717.inactive-e141717:hover {
  color: rgba(var(--text-secondary), 0.4);
}
.nav-link-e141717.inactive-e141717::after {
  display: none;
}

.mobile-menu-button-e141717 {
  display: none;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.mobile-menu-button-e141717:hover {
  background-color: rgba(var(--rust-orange), 0.1);
  color: var(--rust-orange);
}
.mobile-menu-button-e141717 svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu-overlay-e141717 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(var(--bg-primary), 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-menu-overlay-e141717.mobile-menu-open-e141717 {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-e141717 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1.5rem;
}

.mobile-nav-item-e141717 {
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 0.4s ease forwards;
}
.mobile-nav-item-e141717:nth-child(1) {
  animation-delay: 0.1s;
}
.mobile-nav-item-e141717:nth-child(2) {
  animation-delay: 0.15s;
}
.mobile-nav-item-e141717:nth-child(3) {
  animation-delay: 0.2s;
}
.mobile-nav-item-e141717:nth-child(4) {
  animation-delay: 0.25s;
}
.mobile-nav-item-e141717:nth-child(5) {
  animation-delay: 0.3s;
}
.mobile-nav-item-e141717:nth-child(6) {
  animation-delay: 0.35s;
}
.mobile-nav-item-e141717:nth-child(7) {
  animation-delay: 0.4s;
}
.mobile-nav-item-e141717:nth-child(8) {
  animation-delay: 0.45s;
}

.mobile-nav-link-e141717 {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: block;
  text-align: center;
}
.mobile-nav-link-e141717:hover {
  color: var(--rust-orange);
  background-color: rgba(var(--rust-orange), 0.1);
  transform: translateY(-2px);
}
.mobile-nav-link-e141717.inactive-e141717 {
  color: rgba(var(--text-primary), 0.4);
  cursor: not-allowed;
  opacity: 0.5;
}
.mobile-nav-link-e141717.inactive-e141717:hover {
  color: rgba(var(--text-primary), 0.4);
  background-color: transparent;
  transform: none;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .nav-container-e141717 {
    justify-content: space-between;
    padding: 0 1rem;
  }
  .nav-menu-e141717 {
    display: none;
  }
  .mobile-menu-button-e141717 {
    display: block;
  }
  .nav-logo-e141717 {
    font-size: 1.125rem;
  }
  .nav-logo-e141717 svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}
body.mobile-menu-open-e141717 {
  overflow: hidden;
}

.page-container-4d6fac8 {
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem;
}
@media (max-width: 768px) {
  .page-container-4d6fac8 {
    padding: 1rem;
  }
}

.page-header-4d6fac8 {
  text-align: center;
  margin-bottom: 4rem;
}
.page-header-4d6fac8 h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .page-header-4d6fac8 h1 {
    font-size: 1.875rem;
  }
}

.page-subtitle-4d6fac8 {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.75;
}

.filters-section-4d6fac8 {
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .filters-section-4d6fac8 {
    margin-bottom: 2rem;
  }
}

.filter-chips-4d6fac8 {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 480px) {
  .filter-chips-4d6fac8 {
    gap: 0.25rem;
  }
}

.chip-4d6fac8 {
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--border-secondary);
  background: var(--bg-overlay);
  color: var(--text-secondary);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  font-weight: 500;
}
.chip-4d6fac8:hover {
  border-color: var(--rust-orange);
  color: var(--rust-orange);
  background: rgba(var(--rust-orange), 0.1);
  transform: translateY(-1px);
}
.chip-4d6fac8.chip-active-4d6fac8 {
  background: var(--rust-orange);
  color: white;
  border-color: var(--rust-orange);
}
@media (max-width: 480px) {
  .chip-4d6fac8 {
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
  }
}

.issues-grid-4d6fac8 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .issues-grid-4d6fac8 {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .issues-grid-4d6fac8 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.issue-card-4d6fac8 {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}
.issue-card-4d6fac8:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(206, 78, 27, 0.15);
}
@media (max-width: 480px) {
  .issue-card-4d6fac8 {
    padding: 1rem;
  }
}

.issue-header-4d6fac8 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
@media (max-width: 480px) {
  .issue-header-4d6fac8 {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

.difficulty-badge-4d6fac8 {
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.difficulty-badge-4d6fac8.difficulty-easy-4d6fac8 {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
  border: 1px solid #4CAF50;
}
.difficulty-badge-4d6fac8.difficulty-medium-4d6fac8 {
  background: rgba(255, 193, 7, 0.2);
  color: #FFC107;
  border: 1px solid #FFC107;
}
.difficulty-badge-4d6fac8.difficulty-hard-4d6fac8 {
  background: rgba(244, 67, 54, 0.2);
  color: #F44336;
  border: 1px solid #F44336;
}

.repo-name-4d6fac8 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-family: "JetBrains Mono", "Fira Code", "Monaco", "Consolas", monospace;
  background: rgba(var(--text-muted), 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
}

.issue-title-4d6fac8 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
  margin: 0;
}

.issue-description-4d6fac8 {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
  flex-grow: 1;
}

.issue-tags-4d6fac8 {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  margin: 0.5rem 0;
}

.tag-4d6fac8 {
  background: rgba(var(--rust-orange), 0.1);
  color: var(--rust-orange);
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(var(--rust-orange), 0.3);
}

.issue-actions-4d6fac8 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-secondary);
}
@media (max-width: 480px) {
  .issue-actions-4d6fac8 {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.issue-link-4d6fac8 {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--rust-orange);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.issue-link-4d6fac8 svg {
  flex-shrink: 0;
}
.issue-link-4d6fac8:hover {
  color: var(--rust-accent);
  transform: translateX(2px);
}
@media (max-width: 480px) {
  .issue-link-4d6fac8 {
    align-self: flex-start;
  }
}

.claim-btn-4d6fac8 {
  padding: 0.5rem 1.5rem;
  background: rgba(var(--rust-orange), 0.1);
  color: var(--rust-orange);
  border: 1px solid var(--rust-orange);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  font-weight: 600;
}
.claim-btn-4d6fac8:hover {
  background: var(--rust-orange);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 480px) {
  .claim-btn-4d6fac8 {
    align-self: stretch;
    text-align: center;
  }
}

.tips-section-4d6fac8 {
  margin-bottom: 4rem;
}
.tips-section-4d6fac8 h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--rust-orange);
  text-align: center;
  margin-bottom: 3rem;
}

.tips-grid-4d6fac8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .tips-grid-4d6fac8 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .tips-grid-4d6fac8 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.tip-card-4d6fac8 {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.tip-card-4d6fac8:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.tip-card-4d6fac8 h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--rust-orange);
  margin-bottom: 1rem;
}
.tip-card-4d6fac8 p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 480px) {
  .tip-card-4d6fac8 {
    padding: 1rem;
  }
}

.contribution-tracker-4d6fac8 {
  background: rgba(var(--rust-orange), 0.05);
  border: 1px solid rgba(var(--rust-orange), 0.2);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
}
.contribution-tracker-4d6fac8 h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rust-orange);
  margin-bottom: 3rem;
}
@media (max-width: 480px) {
  .contribution-tracker-4d6fac8 {
    padding: 2rem 1rem;
  }
}

.stats-grid-4d6fac8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .stats-grid-4d6fac8 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .stats-grid-4d6fac8 {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.stat-card-4d6fac8 {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.stat-card-4d6fac8:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 480px) {
  .stat-card-4d6fac8 {
    padding: 1rem;
  }
}

.stat-number-4d6fac8 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--rust-orange);
  line-height: 1;
}
@media (max-width: 480px) {
  .stat-number-4d6fac8 {
    font-size: 1.5rem;
  }
}

.stat-label-4d6fac8 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-align: center;
  font-weight: 500;
}

.stats-note-4d6fac8 {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .page-container-4d6fac8 {
    padding: 1rem;
  }
  .issues-grid-4d6fac8 {
    gap: 1rem;
  }
  .issue-card-4d6fac8 {
    padding: 1rem;
  }
  .tips-grid-4d6fac8 {
    gap: 1rem;
  }
  .tip-card-4d6fac8 {
    padding: 1rem;
  }
}
.page-container-36b0c9a {
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem;
}
@media (max-width: 768px) {
  .page-container-36b0c9a {
    padding: 1rem;
  }
}

.page-header-36b0c9a {
  text-align: center;
  margin-bottom: 4rem;
}
.page-header-36b0c9a h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .page-header-36b0c9a h1 {
    font-size: 1.875rem;
  }
}

.page-subtitle-36b0c9a {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.75;
}

.projects-showcase-36b0c9a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .projects-showcase-36b0c9a {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .projects-showcase-36b0c9a {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.project-card-36b0c9a {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}
.project-card-36b0c9a:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(206, 78, 27, 0.15);
}
@media (max-width: 480px) {
  .project-card-36b0c9a {
    padding: 1.5rem;
  }
}

.project-header-36b0c9a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 480px) {
  .project-header-36b0c9a {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

.project-name-36b0c9a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
  margin: 0;
  flex: 1;
}

.status-badge-36b0c9a {
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.status-badge-36b0c9a.status-active-36b0c9a {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
  border: 1px solid #4CAF50;
}
.status-badge-36b0c9a.status-in-development-36b0c9a {
  background: rgba(255, 193, 7, 0.2);
  color: #FFC107;
  border: 1px solid #FFC107;
}
.status-badge-36b0c9a.status-planning-36b0c9a {
  background: rgba(33, 150, 243, 0.2);
  color: #2196F3;
  border: 1px solid #2196F3;
}
.status-badge-36b0c9a.status-beta-36b0c9a {
  background: rgba(156, 39, 176, 0.2);
  color: #9C27B0;
  border: 1px solid #9C27B0;
}
.status-badge-36b0c9a.status-completed-36b0c9a {
  background: rgba(96, 125, 139, 0.2);
  color: #607D8B;
  border: 1px solid #607D8B;
}

.project-description-36b0c9a {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
  flex-grow: 1;
}

.project-section-36b0c9a {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
}

.section-title-36b0c9a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.tech-tags-36b0c9a {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.tech-tag-36b0c9a {
  background: rgba(var(--rust-orange), 0.1);
  color: var(--rust-orange);
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(var(--rust-orange), 0.3);
}

.skills-needed-36b0c9a {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.skill-tag-36b0c9a {
  background: rgba(var(--info), 0.1);
  color: var(--info);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(var(--info), 0.3);
}

.project-actions-36b0c9a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-secondary);
}
@media (max-width: 480px) {
  .project-actions-36b0c9a {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.action-buttons-36b0c9a {
  display: flex;
  gap: 0.5rem;
}

.contribution-guide-36b0c9a {
  margin-bottom: 4rem;
}
.contribution-guide-36b0c9a h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--rust-orange);
  text-align: center;
  margin-bottom: 3rem;
}

.guide-steps-36b0c9a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .guide-steps-36b0c9a {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .guide-steps-36b0c9a {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.step-card-36b0c9a {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}
.step-card-36b0c9a:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.step-number-36b0c9a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--rust-orange);
  color: white;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step-card-36b0c9a h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.step-card-36b0c9a p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

.project-ideas-36b0c9a {
  background: rgba(var(--rust-orange), 0.05);
  border: 1px solid rgba(var(--rust-orange), 0.2);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
}
.project-ideas-36b0c9a h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rust-orange);
  margin-bottom: 1rem;
}
.project-ideas-36b0c9a p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 480px) {
  .project-ideas-36b0c9a {
    padding: 2rem 1rem;
  }
}

.idea-categories-36b0c9a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 480px) {
  .idea-categories-36b0c9a {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.idea-card-36b0c9a {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.idea-card-36b0c9a:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.idea-card-36b0c9a h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--rust-orange);
  margin-bottom: 0.5rem;
}
.idea-card-36b0c9a p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 480px) {
  .idea-card-36b0c9a {
    padding: 1rem;
  }
}

.btn-36b0c9a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}
.btn-36b0c9a:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--rust-orange), 0.3);
}
@media (max-width: 480px) {
  .btn-36b0c9a {
    align-self: stretch;
    text-align: center;
  }
}

.btn-primary-36b0c9a {
  background-color: var(--rust-orange);
  color: white;
}
.btn-primary-36b0c9a:hover {
  background-color: var(--rust-accent);
  transform: translateY(-1px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary-36b0c9a {
  background-color: var(--bg-overlay);
  color: var(--text-primary);
  border: 1px solid var(--border-secondary);
}
.btn-secondary-36b0c9a:hover {
  background-color: rgba(var(--rust-orange), 0.1);
  border-color: var(--border-accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-large-36b0c9a {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

@media (max-width: 480px) {
  .page-container-36b0c9a {
    padding: 1rem;
  }
  .projects-showcase-36b0c9a {
    gap: 1rem;
  }
  .project-card-36b0c9a {
    padding: 1rem;
  }
  .guide-steps-36b0c9a {
    gap: 1rem;
  }
  .step-card-36b0c9a {
    padding: 1rem;
  }
  .idea-categories-36b0c9a {
    gap: 1rem;
  }
  .idea-card-36b0c9a {
    padding: 1rem;
  }
  .project-ideas-36b0c9a {
    padding: 2rem 1rem;
  }
}
