@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;700&family=Inter:wght@300;400;500;600;700&display=swap");
/* ===================================
   VAPORWAVE PROFESSIONAL VARIABLES
   =================================== */
:root {
  /* Vaporwave Professional Palette */
  --bg-primary: #0a0014;
  --bg-secondary: #1a0029;
  --bg-tertiary: #2a0040;
  --bg-glass: rgba(138, 43, 226, 0.1);
  /* Neon accents */
  --neon-cyan: #00ffff;
  --neon-magenta: #ff00ff;
  --neon-purple: #8a2be2;
  --neon-pink: #ff1493;
  --neon-blue: #4169e1;
  /* Professional text colors */
  --text-primary: #ffffff;
  --text-secondary: #e6e6fa;
  --text-accent: #00ffff;
  --text-muted: #b19cd9;
  /* Grid and borders */
  --grid-color: rgba(0, 255, 255, 0.2);
  --border-primary: rgba(138, 43, 226, 0.4);
  --border-accent: rgba(0, 255, 255, 0.6);
  /* Fonts */
  --font-mono: "JetBrains Mono", monospace;
  --font-sans: "Inter", sans-serif;
}

/* ===================================
   RESET AND BASE STYLES
   =================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #0a0014 0%, #1a0029 50%, #2a0040 100%) !important;
  background-color: #0a0014 !important;
  background-attachment: fixed !important;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

html {
  background: #0a0014 !important;
  background-color: #0a0014 !important;
}

.main-content,
.container,
article,
.post {
  background: transparent !important;
}

/* ===================================
   ANIMATED BACKGROUND EFFECTS
   =================================== */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 255, 255, 0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
  z-index: -2;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #00ffff;
  font-family: "JetBrains Mono", monospace;
  margin: 1.5em 0 0.75em 0;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 2.5rem;
  text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
  margin-top: 0;
}

h2 {
  font-size: 2rem;
  color: #ff00ff;
}

h3 {
  font-size: 1.5rem;
  color: #00ffff;
}

h4 {
  font-size: 1.25rem;
  color: #00ffff;
}

h5 {
  font-size: 1.1rem;
  color: #00ffff;
}

h6 {
  font-size: 1rem;
  color: #00ffff;
}

p {
  margin: 1em 0;
  color: #e6e6fa;
}

a {
  color: #00ffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #ff00ff;
  text-decoration: underline;
  text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

strong,
b {
  color: #ffffff;
  font-weight: 600;
}

em,
i {
  color: #e6e6fa;
  font-style: italic;
}

/* ===================================
   LISTS
   =================================== */
ul,
ol {
  margin: 1em 0;
  padding-left: 2em;
  color: #e6e6fa;
}

ul {
  list-style-type: none;
}
ul li::before {
  content: "▸ ";
  color: #00ffff;
  font-weight: bold;
  margin-right: 0.5em;
}

ol {
  counter-reset: item;
}
ol li {
  counter-increment: item;
}
ol li::before {
  content: counter(item) ". ";
  color: #00ffff;
  font-weight: bold;
  font-family: "JetBrains Mono", monospace;
}

li {
  margin: 0.5em 0;
  line-height: 1.6;
}

/* ===================================
   CODE AND PREFORMATTED TEXT
   =================================== */
code {
  font-family: "JetBrains Mono", monospace;
  background: #1a0029;
  padding: 0.2em 0.4em;
  border-radius: 4px;
  color: #00ffff;
  font-size: 0.9em;
  border: 1px solid rgba(138, 43, 226, 0.4);
}

pre {
  background: #1a0029;
  padding: 1.5em;
  border-radius: 8px;
  overflow-x: auto;
  border-left: 4px solid #00ffff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(138, 43, 226, 0.4);
  margin: 1.5em 0;
}
pre code {
  background: none;
  padding: 0;
  border: none;
  color: #e6e6fa;
}

/* ===================================
   BLOCKQUOTES
   =================================== */
blockquote {
  border-left: 4px solid #ff00ff;
  margin: 1.5em 0;
  padding: 1em 1.5em;
  background: rgba(138, 43, 226, 0.1);
  backdrop-filter: blur(10px);
  font-style: italic;
  border-radius: 0 8px 8px 0;
  border: 1px solid rgba(138, 43, 226, 0.4);
  border-left: 4px solid #ff00ff;
}
blockquote p {
  margin: 0;
  color: #e6e6fa;
}
blockquote cite {
  display: block;
  margin-top: 1em;
  color: #b19cd9;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9em;
}
blockquote cite::before {
  content: "— ";
}

/* ===================================
   LAYOUT COMPONENTS
   =================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.main-content {
  padding: 2rem 0;
  min-height: calc(100vh - 200px);
}

/* ===================================
   HEADER AND NAVIGATION
   =================================== */
.site-header {
  backdrop-filter: blur(20px);
  background: rgba(26, 0, 41, 0.8);
  border-bottom: 1px solid rgba(138, 43, 226, 0.4);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.site-header .site-title {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.8rem;
  color: #00ffff;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.site-header .site-title::before {
  content: "> ";
  color: #ff00ff;
  animation: blink 2s infinite;
}
.site-header .site-title:hover {
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.7);
}
.site-header .nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}
.site-header .nav-menu a {
  color: #e6e6fa;
  font-family: "JetBrains Mono", monospace;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.site-header .nav-menu a:hover {
  color: #00ffff;
  border-color: rgba(0, 255, 255, 0.6);
  background: rgba(138, 43, 226, 0.1);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}
.site-header .nav-menu a.active {
  color: #00ffff;
  border-color: rgba(0, 255, 255, 0.6);
  background: rgba(138, 43, 226, 0.1);
}

@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0.3;
  }
}
/* ===================================
   CARDS AND CONTENT BLOCKS
   =================================== */
.card {
  background: rgba(26, 0, 41, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(138, 43, 226, 0.4);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1rem 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}
.card:hover {
  border-color: rgba(0, 255, 255, 0.6);
  box-shadow: 0 10px 40px rgba(138, 43, 226, 0.3);
  transform: translateY(-5px);
}
.card:hover::before {
  left: 100%;
}
.card h3,
.card h4,
.card h5,
.card h6 {
  color: #00ffff;
  margin-top: 0;
}
.card p:last-child {
  margin-bottom: 0;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border: 2px solid #00ffff;
  color: #00ffff;
  text-decoration: none;
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #00ffff;
  transition: left 0.3s ease;
  z-index: -1;
}
.btn:hover {
  color: #0a0014;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
  text-decoration: none;
}
.btn:hover::before {
  left: 0;
}
.btn.secondary {
  border-color: #ff00ff;
  color: #ff00ff;
}
.btn.secondary::before {
  background: #ff00ff;
}
.btn.secondary:hover {
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
}
.btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn.disabled:hover {
  transform: none;
  box-shadow: none;
}
.btn.disabled:hover::before {
  left: -100%;
}

/* ===================================
   EVENT STYLES
   =================================== */
.event-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  margin: 1rem 0;
  background: rgba(26, 0, 41, 0.6);
  backdrop-filter: blur(20px);
  border-left: 4px solid #ff00ff;
  border-radius: 0 12px 12px 0;
  border: 1px solid rgba(138, 43, 226, 0.4);
  transition: all 0.3s ease;
}
.event-item:hover {
  border-color: rgba(0, 255, 255, 0.6);
  box-shadow: 0 8px 30px rgba(138, 43, 226, 0.3);
  transform: translateY(-2px);
}
.event-item .event-date {
  min-width: 80px;
  text-align: center;
  font-family: "JetBrains Mono", monospace;
  flex-shrink: 0;
}
.event-item .event-date .event-month {
  background: #00ffff;
  color: #0a0014;
  padding: 0.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px 4px 0 0;
}
.event-item .event-date .event-day {
  background: #2a0040;
  color: #00ffff;
  padding: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 0 0 4px 4px;
  border: 1px solid rgba(138, 43, 226, 0.4);
  border-top: none;
}
.event-item .event-content {
  flex: 1;
}
.event-item .event-content h3,
.event-item .event-content h4 {
  margin: 0 0 0.5rem 0;
  color: #00ffff;
}
.event-item .event-content .event-location {
  color: #b19cd9;
  font-size: 0.9rem;
  margin: 0.25rem 0;
  font-family: "JetBrains Mono", monospace;
}
.event-item .event-content .event-description {
  color: #e6e6fa;
  margin: 0.5rem 0 0 0;
  line-height: 1.6;
}

/* ===================================
   BLOG POST STYLES
   =================================== */
.post-list .post-item {
  background: rgba(26, 0, 41, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(138, 43, 226, 0.4);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.post-list .post-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}
.post-list .post-item:hover {
  border-color: rgba(0, 255, 255, 0.6);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(138, 43, 226, 0.3);
}
.post-list .post-item:hover::before {
  left: 100%;
}
.post-list .post-item h2 {
  margin: 0 0 0.5rem 0;
}
.post-list .post-item h2 a {
  color: #00ffff;
  text-decoration: none;
}
.post-list .post-item h2 a:hover {
  color: #ff00ff;
  text-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}
.post-list .post-item .post-meta {
  color: #b19cd9;
  font-size: 0.9rem;
  margin: 0.5rem 0;
  font-family: "JetBrains Mono", monospace;
}
.post-list .post-item .post-excerpt {
  color: #e6e6fa;
  margin: 1rem 0 0 0;
  line-height: 1.6;
}

.post-header {
  margin-bottom: 2rem;
}
.post-header .post-meta {
  color: #b19cd9;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  margin: 1rem 0;
}
.post-header .post-meta .post-author {
  color: #00ffff;
}
.post-header .post-meta .post-category {
  color: #ff00ff;
}
.post-header .post-description {
  background: rgba(138, 43, 226, 0.1);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-left: 4px solid #00ffff;
  border-radius: 0 8px 8px 0;
  margin: 1rem 0;
  border: 1px solid rgba(138, 43, 226, 0.4);
}
.post-header .post-description p {
  margin: 0;
  color: #e6e6fa;
  font-style: italic;
}

.post-content {
  line-height: 1.7;
}
.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
  border: 1px solid rgba(138, 43, 226, 0.4);
}

.post-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(138, 43, 226, 0.4);
}
.post-footer .post-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.post-footer .post-navigation {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.post-footer .post-navigation .nav-link {
  color: #00ffff;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  text-decoration: none;
}
.post-footer .post-navigation .nav-link:hover {
  color: #ff00ff;
  text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}
.post-footer .post-navigation .nav-separator {
  color: #b19cd9;
  margin: 0 0.5rem;
}
.post-footer .post-share .share-link {
  color: #1DA1F2;
  text-decoration: none;
}
.post-footer .post-share .share-link:hover {
  color: #00ffff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}
.post-footer .post-contribute {
  text-align: center;
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(138, 43, 226, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  border: 1px solid rgba(138, 43, 226, 0.4);
}
.post-footer .post-contribute p {
  margin: 0;
  color: #e6e6fa;
}
.post-footer .post-contribute p strong {
  color: #ffffff;
}
.post-footer .post-contribute p a {
  color: #00ffff;
}
.post-footer .post-contribute p a:hover {
  color: #00ffff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* ===================================
   TABLES
   =================================== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: rgba(26, 0, 41, 0.6);
  backdrop-filter: blur(20px);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(138, 43, 226, 0.4);
}
table th,
table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(138, 43, 226, 0.4);
}
table th {
  background: rgba(42, 0, 64, 0.8);
  color: #00ffff;
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
table td {
  color: #e6e6fa;
}
table tr:hover {
  background: rgba(0, 255, 255, 0.05);
}
table tr:last-child td {
  border-bottom: none;
}

/* ===================================
   FORMS
   =================================== */
input,
textarea,
select {
  background: rgba(26, 0, 41, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(138, 43, 226, 0.4);
  border-radius: 6px;
  padding: 0.75rem;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  width: 100%;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(0, 255, 255, 0.6);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  color: #b19cd9;
}

label {
  color: #e6e6fa;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: block;
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
  background: rgba(10, 0, 20, 0.9);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(138, 43, 226, 0.4);
  padding: 2rem 0;
  margin-top: 4rem;
}
.site-footer .footer-content {
  text-align: center;
  color: #b19cd9;
  font-family: "JetBrains Mono", monospace;
}
.site-footer .footer-content .social-links {
  margin: 1rem 0;
}
.site-footer .footer-content .social-links a {
  color: #b19cd9;
  text-decoration: none;
  margin: 0 1rem;
  transition: all 0.3s ease;
}
.site-footer .footer-content .social-links a:hover {
  color: #00ffff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}
.site-footer .footer-content p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

/* ===================================
   SPECIAL COMPONENTS
   =================================== */
details {
  background: rgba(26, 0, 41, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(138, 43, 226, 0.4);
  border-radius: 8px;
  margin: 1rem 0;
  overflow: hidden;
}
details summary {
  background: rgba(42, 0, 64, 0.8);
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(138, 43, 226, 0.4);
  color: #00ffff;
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
}
details summary:hover {
  background: rgb(42, 0, 64);
  color: #ffffff;
}
details[open] summary {
  border-bottom: 1px solid rgba(138, 43, 226, 0.4);
}
details .details-content {
  padding: 1rem;
}

.team-member {
  display: flex;
  gap: 1.5rem;
  background: rgba(26, 0, 41, 0.6);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #00ffff;
  border: 1px solid rgba(138, 43, 226, 0.4);
  margin: 1rem 0;
}
.team-member .member-photo {
  flex-shrink: 0;
}
.team-member .member-photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #00ffff;
  transition: all 0.3s ease;
}
.team-member .member-photo img:hover {
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
  transform: scale(1.05);
}
.team-member .member-info {
  flex: 1;
}
.team-member .member-info h3 {
  margin: 0 0 0.5rem 0;
  color: #00ffff;
}
.team-member .member-info .member-position {
  color: #ff00ff;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  margin: 0.25rem 0;
  font-weight: bold;
}
.team-member .member-info .member-affiliation,
.team-member .member-info .member-expertise {
  color: #b19cd9;
  font-size: 0.9rem;
  margin: 0.25rem 0;
}
.team-member .member-info .member-affiliation strong,
.team-member .member-info .member-expertise strong {
  color: #e6e6fa;
}

.role-card {
  transition: all 0.3s ease;
}
.role-card:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(138, 43, 226, 0.3);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0;
}
.pagination a,
.pagination span {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(138, 43, 226, 0.4);
  background: rgba(26, 0, 41, 0.6);
  backdrop-filter: blur(20px);
  color: #e6e6fa;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-family: "JetBrains Mono", monospace;
}
.pagination a:hover,
.pagination span:hover {
  border-color: rgba(0, 255, 255, 0.6);
  color: #00ffff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}
.pagination a.current,
.pagination span.current {
  background: #00ffff;
  color: #0a0014;
  border-color: #00ffff;
}

@media (max-width: 768px) {
  html {
    background: #0a0014 !important;
    background-color: #0a0014 !important;
  }
  body {
    background: linear-gradient(135deg, #0a0014 0%, #1a0029 50%, #2a0040 100%) !important;
    background-color: #0a0014 !important;
    background-attachment: fixed !important;
    min-height: 100vh !important;
  }
  .container,
  .main-content,
  main,
  section,
  article,
  .content,
  .page-content {
    background: transparent !important;
    background-color: transparent !important;
  }
  div:not(.card):not(.event-item):not(.post-item),
  section:not(.card),
  article:not(.card),
  main:not(.card) {
    background: transparent !important;
    background-color: transparent !important;
  }
  .card,
  .event-item,
  .post-item {
    background: rgba(138, 43, 226, 0.1) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(138, 43, 226, 0.4) !important;
  }
  .container {
    padding: 0 1rem;
  }
  .main-content {
    padding: 1rem 0;
  }
  .site-header .header-content {
    flex-direction: column;
    gap: 0.5rem;
  }
  .site-header .nav-menu {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  .site-header .nav-menu a {
    padding: 0.25rem 0.75rem;
    font-size: 0.9rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  .post-header {
    margin-bottom: 1.5rem;
  }
  .post-header .post-meta {
    font-size: 0.8rem;
  }
  .post-footer .post-footer-content {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  .post-footer .post-navigation {
    flex-direction: column;
    gap: 0.5rem;
  }
  .post-footer .post-navigation .nav-separator {
    display: none;
  }
  .post-footer .post-share {
    text-align: center;
  }
  .post-footer .post-contribute {
    padding: 1rem;
  }
  .card {
    padding: 1rem;
    margin: 0.5rem 0;
  }
  .team-member {
    flex-direction: column;
    text-align: center;
  }
  .team-member .member-photo img {
    width: 100px;
    height: 100px;
  }
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  table {
    font-size: 0.9rem;
  }
  table th,
  table td {
    padding: 0.5rem;
  }
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  .site-header .site-title {
    font-size: 1.5rem;
  }
  .site-header .nav-menu {
    gap: 0.5rem;
  }
  .site-header .nav-menu a {
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
  }
  .post-contribute {
    padding: 0.75rem;
  }
  .post-contribute p {
    font-size: 0.9rem;
  }
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}
/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center {
  text-align: center;
}

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

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

.text-mono {
  font-family: "JetBrains Mono", monospace;
}

.text-sans {
  font-family: "Inter", sans-serif;
}

.text-primary {
  color: #ffffff;
}

.text-secondary {
  color: #e6e6fa;
}

.text-muted {
  color: #b19cd9;
}

.text-accent {
  color: #00ffff;
}

.text-cyan {
  color: #00ffff;
}

.text-magenta {
  color: #ff00ff;
}

.text-purple {
  color: #8a2be2;
}

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

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

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

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

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

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

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

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

.p-1 {
  padding: 1rem;
}

.p-2 {
  padding: 2rem;
}

.p-3 {
  padding: 3rem;
}

.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

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

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.d-none {
  display: none;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* Mobile Navigation Styles */
.site-header {
  background: #1a1a1a;
  padding: 1rem 0;
  border-bottom: 2px solid #00ff00;
  position: relative;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.site-title {
  color: #00ff00;
  font-family: "JetBrains Mono", monospace;
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: bold;
  z-index: 11;
  position: relative;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-menu a {
  color: #888;
  text-decoration: none;
  font-family: "JetBrains Mono", monospace;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #00ffff;
}

.nav-menu a.active {
  color: #00ff00;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 11;
}

.hamburger span {
  width: 2rem;
  height: 0.25rem;
  background: #00ff00;
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

@media (max-width: 768px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
  }
  body {
    padding-top: 4rem;
  }
  .header-content {
    position: relative;
  }
  .hamburger {
    display: flex;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav-menu {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: #1a1a1a;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 10;
    transition: all 0.3s ease-in-out;
    pointer-events: none;
    padding: 1rem;
    overflow-y: auto;
  }
  .nav-menu.active {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
  }
  .nav-menu a {
    font-size: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    padding: 0.5rem 1rem;
    width: 100%;
    text-align: center;
  }
  .nav-menu.active a {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4rem;
    background: #1a1a1a;
    border-bottom: 2px solid #00ff00;
  }
  .text-center {
    text-align: center;
  }
  .text-left {
    text-align: left;
  }
  .text-right {
    text-align: right;
  }
  .text-mono {
    font-family: "JetBrains Mono", monospace;
  }
  .text-sans {
    font-family: "Inter", sans-serif;
  }
  .text-primary {
    color: #ffffff;
  }
  .text-secondary {
    color: #e6e6fa;
  }
  .text-muted {
    color: #b19cd9;
  }
  .text-accent {
    color: #00ffff;
  }
  .text-cyan {
    color: #00ffff;
  }
  .text-magenta {
    color: #ff00ff;
  }
  .text-purple {
    color: #8a2be2;
  }
  .mb-0 {
    margin-bottom: 0;
  }
  .mb-1 {
    margin-bottom: 1rem;
  }
  .mb-2 {
    margin-bottom: 2rem;
  }
  .mb-3 {
    margin-bottom: 3rem;
  }
  .mt-0 {
    margin-top: 0;
  }
  .mt-1 {
    margin-top: 1rem;
  }
  .mt-2 {
    margin-top: 2rem;
  }
  .mt-3 {
    margin-top: 3rem;
  }
  .p-1 {
    padding: 1rem;
  }
  .p-2 {
    padding: 2rem;
  }
  .p-3 {
    padding: 3rem;
  }
  .d-block {
    display: block;
  }
  .d-inline {
    display: inline;
  }
  .d-inline-block {
    display: inline-block;
  }
  .d-flex {
    display: flex;
  }
  .d-grid {
    display: grid;
  }
  .d-none {
    display: none;
  }
  .flex-wrap {
    flex-wrap: wrap;
  }
  .flex-nowrap {
    flex-wrap: nowrap;
  }
  .justify-center {
    justify-content: center;
  }
  .justify-between {
    justify-content: space-between;
  }
  .align-center {
    align-items: center;
  }
  .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  /* ===================================
     IMPORT COMPONENT STYLES
     =================================== */
  /* === Event-specific overrides and additions === */
  /* Ensure event items use dark theme consistently */
  /* === Event Content === */
  /* === Section Headings === */
  /* Arrow icon */
  /* Rotate arrow when open */
  /* Collapsible content container */
  /* Expand when open */
  /* === Event Subtitle === */
  /* === Mobile Layout Adjustments === */
  /* === Events and Blog Side-by-Side Layout === */
}
@media (max-width: 768px) and (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .event-item {
    background: rgba(26, 0, 41, 0.6) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(138, 43, 226, 0.4) !important;
  }
  .event-date {
    background-color: #2a0040 !important;
    color: #00ffff !important;
  }
  .future-events .event-description,
  .past-events .event-description {
    color: #e6e6fa !important;
  }
  .event-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .event__item {
    margin: 0;
  }
  .event-location {
    margin: 0;
    padding: 0;
    font-style: italic;
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 0.25rem;
  }
  .event-description {
    font-size: 0.75rem;
    margin-top: 0rem;
  }
  .year-heading {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    color: #00ffff !important;
    background: rgba(42, 0, 64, 0.8) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(138, 43, 226, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: block;
    width: 100%;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding-left: 1.6rem;
    user-select: none;
    list-style: none;
  }
  .year-heading::-webkit-details-marker {
    display: none;
  }
  .year-heading::before {
    content: "▶";
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transform-origin: 50% 50%;
    transition: transform 0.3s ease;
    font-size: 1rem;
    color: #00ffff !important;
  }
  details[open] > .year-heading::before {
    transform: translateY(-50%) rotate(90deg);
  }
  .events-container {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
  }
  details[open] > .events-container {
    max-height: 2000px;
    transition: max-height 0.5s ease;
  }
  .event__subtitle {
    font-size: 1.3rem;
    margin-bottom: 0.85rem;
    font-weight: bold;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 0.4rem;
    color: #3d4144;
  }
}
@media (max-width: 768px) and (max-width: 600px) {
  .event-item {
    flex-direction: column;
    align-items: stretch;
  }
  .event-date {
    flex-direction: row;
    min-width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
  }
  .event-day {
    margin-left: 0.5rem;
  }
}
@media (max-width: 768px) {
  .events-and-blog {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    align-items: stretch;
    /* ensures children grow to equal height */
    margin-bottom: 0rem;
    flex-wrap: wrap;
  }
  .upcoming-events-wrapper,
  .latest-blogpost-wrapper {
    flex: 1 1 48%;
    display: flex;
    flex-direction: column;
  }
  .upcoming-events-wrapper h3,
  .latest-blogpost-wrapper h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    color: #00ffff !important;
  }
}

/*# sourceMappingURL=main.css.map */