:root {
  --background-color: rgb(12, 17, 19);;
  --text-color: #c9d1d9;
  --font-family: "Source Code Pro", monospace;
}

body,
.container {
  margin: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: var(--font-family);
  line-height: 1.5;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-sizing: border-box;
}
.folder {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.folder-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c7cf2f;
  font-size: 1.5em;
}

.folder-icon span {
  font-size: 0.9em;
}

.folder-contents {
  margin-top: 10px;
  background-color: #343d46;
  padding: 10px;
  border-radius: 5px;
}

.folder-contents ul {
  list-style-type: none;
  padding: 0;
}

.folder-contents ul li {
  margin-bottom: 5px;
  color: #c7cf2f;
}

.theme-icon {
  color: #ffffff !important;
}

@media (max-width: 768px) {
  .folder {
    position: absolute; 
    top: 0px; 
    right: -12px; 
    align-items: flex-end; 
    z-index: 1000; 
  }
}
.projects-container {
  margin-left: 240px;
}

.projects-section {
  margin: 20px 0;
  padding: 0 20px;
}

.projects-section h2 {
  font-size: 2rem;
  color: #c7cf2f;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #c7cf2f;
  padding-bottom: 5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.project-card {
  background: linear-gradient(135deg, #2b303b, #1c1e26);
  color: #c0c5ce;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  opacity: 0.9;
  transform: translateY(10px);
  border: 1px solid rgba(199, 207, 47, 0.1);
  position: relative;
}

.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c7cf2f, #a8b02a);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.project-card:hover::before {
  transform: scaleX(1);
}

.project-card.in-view {
  transform: translateY(0);
  opacity: 1;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border-color: rgba(199, 207, 47, 0.3);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(199, 207, 47, 0.2);
}

.project-title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.project-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  background: linear-gradient(135deg, #c7cf2f, #a8b02a);
  color: #1c1e26;
  font-size: 1.1em;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.project-card:hover .project-icon {
  transform: scale(1.1);
}

.project-title-content {
  flex: 1;
}

.project-header h3 {
  margin: 0 0 6px 0;
  color: #c7cf2f;
  font-size: 1.3em;
  font-weight: bold;
}

.project-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
}

.project-date {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #aaa;
}

.project-date svg {
  color: #c7cf2f;
  font-size: 0.9em;
}

.project-status {
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-status.live {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.project-status.development {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.project-status.completed {
  background: rgba(23, 162, 184, 0.2);
  color: #17a2b8;
  border: 1px solid rgba(23, 162, 184, 0.3);
}

.project-status.ended {
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.project-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #4e4e4e;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.project-link:hover {
  background: #c7cf2f;
  color: #1c1e26;
  transform: translateY(-1px);
}

.project-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.project-info {
  display: flex;
  gap: 15px;
  margin-bottom: 5px;
}

.project-category,
.project-role {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #aaa;
  padding: 4px 8px;
  background: rgba(199, 207, 47, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(199, 207, 47, 0.2);
}

.project-category svg,
.project-role svg {
  color: #c7cf2f;
  font-size: 0.9em;
}

.project-description {
  margin: 0;
  line-height: 1.5;
  color: #d0d5de;
  font-size: 0.95rem;
}

.project-features h4,
.project-technologies h4 {
  margin: 0 0 8px 0;
  color: #c7cf2f;
  font-size: 1em;
  font-weight: 600;
}

.project-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.project-features li {
  position: relative;
  padding-left: 18px;
  line-height: 1.4;
  color: #c0c5ce;
  font-size: 0.9rem;
}

.project-features li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #c7cf2f;
  font-weight: bold;
}

.tech-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  background: #4e4e4e;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  max-width: 100%;
  word-break: keep-all;
}

.tech-badge:hover {
  background: #c7cf2f;
  color: #1c1e26;
  transform: translateY(-1px);
}

.tech-expand-btn,
.tech-collapse-btn {
  background: none;
  border: none;
  color: #c7cf2f;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 4px;
}

.tech-expand-btn:hover,
.tech-collapse-btn:hover {
  background: rgba(199, 207, 47, 0.1);
  color: #ffffff;
}

.tech-collapse-btn {
  align-self: flex-start;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .projects-container {
    margin-left: 0;
    width: 100%;
    max-width: none;
  }

  .projects-section h2 {
    font-size: 1.5rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .project-card {
    padding: 15px;
    position: relative;
  }

  .project-header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    position: relative;
  }

  .project-title {
    width: 100%;
  }

  .project-link {
    position: absolute;
    top: 0;
    right: 0;
    align-self: unset;
    margin: 0;
    z-index: 2;
  }

  .project-info {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .projects-section {
    padding: 0 15px;
  }

  .project-card {
    padding: 12px;
  }

  .project-header h3 {
    font-size: 1.2em;
  }

  .project-meta {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }

  .tech-badges {
    gap: 5px;
  }

  .tech-badge {
    font-size: 0.75rem;
    padding: 3px 8px;
  }
}
.skills-container {
  margin-left: 240px;
  box-sizing: border-box;
  overflow-x: hidden;
}

.skills-section-wrapper {
  margin: 20px 0;
  padding: 0 20px;
  box-sizing: border-box;
  max-width: 100%;
}

.section-title {
  font-size: 2rem;
  color: #c7cf2f;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #c7cf2f;
  padding-bottom: 5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.skills-section {
  padding: 20px;
  background: linear-gradient(135deg, #2b303b, #1c1e26);
  color: #c0c5ce;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  overflow: visible;
  max-width: 100%;
}

.skills-section h2 {
  font-size: 1.8em;
  color: #c7cf2f;
  border-bottom: 2px dotted #c7cf2f;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.technical-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 20px;
  box-sizing: border-box;
  max-width: 100%;
  overflow: visible;
}

.skill-icon {
  font-size: 2.5em;
  color: #c0c5ce;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
  position: relative;
}

.skill-icon:hover {
  transform: scale(1.1);
  color: #ffffff;
  z-index: 10;
  overflow: visible;
}

.skill-icon::after {
  content: attr(title);
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background-color: #2b303b;
  color: #c7cf2f;
  padding: 2px 8px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  font-size: 0.8em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.skill-icon:hover::after {
  opacity: 1;
}

.soft-skills {
  list-style-type: none;
  padding: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.75em;
}

.soft-skills li {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #3b404b;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #c7cf2f;
}

.soft-skills li svg {
  color: #c7cf2f;
  font-size: 1.8em;
}

.languages-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}

.language-card {
  background-color: #3b404b;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #c7cf2f;
  padding: 5px;
  text-align: center;
  color: #c0c5ce;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.language-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
}

.language-name {
  font-size: 1.2em;
  font-weight: bold;
  color: #c7cf2f;
}

.language-level {
  font-size: 0.9em;
  color: #9ca0a7;
  font-style: italic;
}

.skills-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 24px;
}

.skills-card {
  background: linear-gradient(135deg, #23272f 80%, #2b303b 100%);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.13);
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 220px;
  border: 1px solid rgba(199, 207, 47, 0.08);
  transition: box-shadow 0.2s;
}
.skills-card:hover {
  box-shadow: 0 8px 32px rgba(199, 207, 47, 0.13);
  border-color: #c7cf2f44;
}

.skills-card h3 {
  color: #c7cf2f;
  font-size: 1.2em;
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.skills-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 14px 10px;
  width: 100%;
}

.skill-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1em;
  color: #e0e0e0;
  background: rgba(76, 80, 90, 0.13);
  border-radius: 8px;
  padding: 7px 10px;
  transition: background 0.2s;
}
.skill-item .skill-icon {
  font-size: 1.3em;
  color: #c7cf2f;
}

.certifications-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
  width: 100%;
  box-sizing: border-box;
}

.certification-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #2b303b;
  border-left: 4px solid #c7cf2f;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.9em;
  color: #e0e0e0;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(199, 207, 47, 0.07);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  flex-shrink: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.certification-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(199, 207, 47, 0.15);
}

.cert-icon {
  font-size: 1.2em;
  flex-shrink: 0;
}

.cert-name {
  font-weight: 500;
  color: #e0e0e0;
  white-space: nowrap;
  overflow: hidden;
}

.languages-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.language-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(76, 80, 90, 0.13);
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 1em;
  color: #e0e0e0;
}
.language-name {
  font-weight: 600;
  color: #c7cf2f;
}
.language-level {
  font-size: 0.95em;
  color: #b0b0b0;
  font-style: italic;
}

.soft-skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.soft-skill-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #3b404b;
  color: #e0e0e0;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.98em;
  font-weight: 500;
  border: 1px solid #c7cf2f33;
  box-shadow: 0 2px 8px rgba(199, 207, 47, 0.07);
  transition:
    background 0.2s,
    color 0.2s;
}
.soft-skill-item .soft-skill-icon {
  color: #c7cf2f;
  font-size: 1.2em;
}
.soft-skill-item:hover {
  background: #c7cf2f;
  color: #23272f;
}

@media (max-width: 900px) {
  .skills-cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .skills-section-wrapper {
    padding: 0 5px;
  }
  .skills-card {
    padding: 16px 8px 12px 8px;
  }
  .skills-list-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px 6px;
  }
}

@media (max-width: 768px) {
  .skills-container {
    margin-left: 0;
    padding: 0 15px;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }

  .skills-section {
    margin: 20px 0;
    padding: 20px;
  }

  .technical-skills {
    gap: 15px;
  }

  .skill-icon {
    font-size: 2em;
  }

  .soft-skills {
    font-size: 1.2em;
    gap: 10px;
  }

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

  .soft-skills li {
    padding: 8px 12px;
    font-size: 0.9em;
  }
}
.career-container {
  margin-left: 240px;
  max-width: 1200px;
  padding: 20px;
  box-sizing: border-box;
}

.career-section {
  margin-bottom: 40px;
}

.career-section h2 {
  font-size: 2rem;
  color: #c7cf2f;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 0.5px; 
  border-bottom: 2px solid #c7cf2f;
  padding-bottom: 5px; 
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); 
}

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

.career-card {
  background: linear-gradient(135deg, #2b303b, #1c1e26);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #c0c5ce;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  order: var(--card-order);
}

.career-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.career-grid:has(.career-card:nth-last-child(2):nth-child(odd)) > .career-card:nth-last-child(2),
.career-grid:has(.career-card:nth-last-child(2):nth-child(odd)) > .career-card:nth-last-child(1) {
  grid-column: span 1;
}

.career-grid:has(.career-card:nth-last-child(1):only-child) > .career-card:nth-last-child(1) {
  grid-column: span 2;
}

.career-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.career-header h3 {
  margin: 0;
  font-size: 1.3rem;
  color: #c7cf2f;
}

.badge {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8em;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge.freelance {
  background-color: #17a2b8;
}

.badge.internship {
  background-color: #ffc107;
}

.badge.full-time {
  background-color: #28a745;
}

.badge.part-time {
  background-color: #6c757d;
}

.career-company,
.career-duration {
  font-size: 0.9rem;
  color: #aaa;
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.career-company .icon-spacing,
.career-duration .icon-spacing {
  margin-right: 8px;
}

.career-description {
  list-style: disc;
  margin-top: 15px;
  padding-left: 20px;
  text-align: left;
}

.career-description li {
  margin-bottom: 8px;
}

.career-card.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .career-container {
    margin-left: 0;
    width: 100%;
  }

  .career-section h2 {
    font-size: 1.5rem;
  }

  .career-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.volunteering-container {
  margin-left: 240px;
}

.volunteering-section {
  margin: 20px 0;
  padding: 0 20px;
  max-width: 1200px;
}

.volunteering-title {
  color: #c7cf2f;
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #c7cf2f;
  padding-bottom: 5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.volunteering-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.volunteering-card {
  background: linear-gradient(135deg, #2b303b, #1c1e26);
  color: #c0c5ce;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  opacity: 0.95;
  border: 1px solid rgba(199, 207, 47, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.volunteering-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border-color: rgba(199, 207, 47, 0.3);
}

.volunteering-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(199, 207, 47, 0.2);
  gap: 16px;
}

.volunteering-logo img,
.volunteering-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #c7cf2f22;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  color: #c7cf2f;
}

.volunteering-title-content {
  flex: 1;
}

.volunteering-header h3 {
  margin: 0 0 6px 0;
  color: #c7cf2f;
  font-size: 1.3em;
  font-weight: bold;
}

.volunteering-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.volunteering-org {
  color: #c0c5ce;
}

.volunteering-dates,
.volunteering-category {
  color: #8fa1b3;
}

.volunteering-desc {
  margin-top: 10px;
  color: #e0e0e0;
  font-size: 1em;
}

@media (max-width: 768px) {
  .volunteering-container {
    margin-left: 0;
  }
  .volunteering-section {
    max-width: 100%;
    padding: 0 15px;
  }
  .volunteering-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .volunteering-card {
    padding: 15px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .volunteering-header {
    gap: 10px;
    padding-bottom: 8px;
  }
  .volunteering-logo img,
  .volunteering-placeholder {
    width: 36px;
    height: 36px;
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .volunteering-section {
    padding: 0 15px;
  }
  .volunteering-card {
    padding: 12px;
  }
}
.sidebar {
  width: 200px;
  background: var(--sidebar-bg, rgb(11, 22, 28));
  color: var(--text-color, #c0c5ce);
  height: 100%;
  padding: 25px 20px;
  box-sizing: border-box;
  position: fixed;
  left: 0;
  top: 0;
  overflow-y: auto;
  border-right: 2px solid var(--border-color, #343d46);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.main-content {
  margin-left: 240px;
  padding: 20px;
  flex: 1;
  gap: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.sidebar-section {
  margin-bottom: 28px;
  position: relative;
}

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

.sidebar-section h2 {
  font-size: 1.1em;
  color: var(--accent-color, #c7cf2f);
  border-bottom: 2px solid var(--accent-color, #c7cf2f);
  padding-bottom: 6px;
  margin-bottom: 10px;
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.sidebar-section ul {
  list-style-type: none;
  padding: 0;
}

.sidebar-section ul li {
  margin-bottom: 10px;
}

.sidebar-section a {
  color: inherit;
  text-decoration: none;
  white-space: normal;
  transition: color 0.3s ease;
}

.sidebar-section .email-link {
  font-size: 0.68em;
  color: var(--accent-color, #c7cf2f);
  padding: 4px 7px;
  background: rgba(199, 207, 47, 0.08);
  border-radius: 3px;
  display: inline-block;
  border: 1px solid rgba(199, 207, 47, 0.13);
  transition: all 0.3s ease;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-all;
}

.sidebar-section .email-link:hover {
  background: rgba(199, 207, 47, 0.15);
  border-color: rgba(199, 207, 47, 0.3);
  transform: translateY(-1px);
}

.sidebar-section a:hover {
  color: var(--hover-color, #d7dae0);
}

.education-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(143, 161, 179, 0.07);
  border: 1px solid rgba(143, 161, 179, 0.13);
  border-radius: 8px;
  padding: 18px 14px 12px 14px;
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(143, 161, 179, 0.04);
}
.edu-icon {
  font-size: 1.7em;
  color: var(--accent-color, #c7cf2f);
  margin-bottom: 6px;
  text-align: center;
}
.edu-divider {
  width: 36px;
  height: 2px;
  background: var(--accent-color, #c7cf2f);
  opacity: 0.18;
  border-radius: 2px;
  margin: 0 0 10px 0;
}
.edu-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.school-name {
  font-weight: bold;
  color: var(--accent-color, #c7cf2f);
  margin-bottom: 1px;
  font-size: 1em;
  transition: color 0.3s ease;
}
.edu-dates {
  color: var(--secondary-text, #8fa1b3);
  font-size: 0.78em;
  margin-bottom: 4px;
  margin-top: 0;
  font-style: italic;
  letter-spacing: 0.2px;
}
.degree-minor {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.93em;
  color: var(--text-color, #c0c5ce);
  margin-bottom: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.edu-dot {
  color: var(--secondary-text, #8fa1b3);
  font-size: 1.1em;
  margin: 0 2px;
}
.gpa {
  color: var(--secondary-text, #8fa1b3);
  font-style: italic;
  font-size: 0.8em;
  margin-top: 2px;
  padding: 2px 7px;
  background: rgba(143, 161, 179, 0.13);
  border-radius: 3px;
  display: inline-block;
  transition:
    color 0.3s ease,
    background 0.3s ease;
}
.gpa-badge {
  color: var(--accent-color, #c7cf2f);
  background: rgba(199, 207, 47, 0.13);
  font-size: 0.78em;
  font-weight: 600;
  font-style: italic;
  border-radius: 5px;
  padding: 2px 10px;
  margin-top: 2px;
  letter-spacing: 0.2px;
  display: inline-block;
  box-shadow: 0 1px 4px rgba(199, 207, 47, 0.04);
}

.stats-section {
  margin-bottom: 28px;
}
.stats-row {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.stat-block {
  background: rgba(199, 207, 47, 0.07);
  border: 1px solid rgba(199, 207, 47, 0.13);
  border-radius: 6px;
  padding: 8px 10px 6px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
}
.stat-number {
  font-size: 1.1em;
  font-weight: bold;
  color: var(--accent-color, #c7cf2f);
  margin-bottom: 2px;
}
.stat-label {
  font-size: 0.7em;
  color: var(--secondary-text, #8fa1b3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.email-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 18px;
}
.email-link {
  font-size: 0.62em;
  color: var(--accent-color, #c7cf2f);
  padding: 2px 5px;
  background: rgba(199, 207, 47, 0.08);
  border-radius: 3px;
  display: inline-block;
  border: 1px solid rgba(199, 207, 47, 0.13);
  transition: all 0.3s ease;
  vertical-align: middle;
}
.email-link:hover {
  background: rgba(199, 207, 47, 0.15);
  border-color: rgba(199, 207, 47, 0.3);
  transform: translateY(-1px);
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.social-icons a {
  font-size: 1.4em;
  color: var(--secondary-text, #8fa1b3);
  padding: 8px;
  border-radius: 6px;
  background: rgba(143, 161, 179, 0.1);
  border: 1px solid rgba(143, 161, 179, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons a:hover {
  color: var(--accent-color, #c7cf2f);
  background: rgba(199, 207, 47, 0.1);
  border-color: rgba(199, 207, 47, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(199, 207, 47, 0.2);
}

.pages-list {
  list-style-type: none;
  padding: 0;
}

.pages-list li {
  margin-bottom: 10px;
}

.pages-list li a {
  color: #c0c5ce;
  text-decoration: none;
  font-size: 1em;
  display: block;
  padding: 5px 0;
  border-bottom: 1px solid #343d46;
}

.pages-list li a:hover {
  color: #d7dae0;
}

.top-container {
  margin-left: 240px;
  padding: 20px;
  max-width: 900px;
  box-sizing: border-box;
}

.terminal-output {
  margin-top: 20px;
  background: linear-gradient(135deg, #2b303b, #1c1e26);
  color: var(--text-color);
  font-family: var(--font-family);
  white-space: pre-wrap;
}

.last-login {
  width: 100%;
  font-size: 0.8em;
  color: #8b949e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 0px 0px;
  box-sizing: border-box;
}

.last-login-line {
  width: 100%;
  border-bottom: 1px solid #8b949e;
  padding: 0 20px 5px 20px;
  box-sizing: border-box;
}

.top-section {
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, #2b303b, #1c1e26);
  color: var(--text-color);
  font-family: var(--font-family);
  border-bottom: 2px solid #c7cf2f;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  position: relative;
}

.typed-name {
  font-size: 2.5em;
  font-weight: bold;
  color: #c7cf2f;
}

.no-bottom-padding {
  margin: 0;
}

.dropdown-button {
  background: linear-gradient(135deg, #2b303b, #1c1e26);
  color: #c7cf2f;
  border: none;
  cursor: pointer;
  padding: 8px 24px;
  font-family: var(--font-family);
  font-size: 1em;
  margin-top: 0px;
  transition: background-color 0.3s ease;
}

.dropdown-button:hover,
.dropdown-button:focus {
  background-color: #343d46;
}

.dropdown-content {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #2b303b, #1c1e26);
  padding: 10px;
  margin-top: 5px;
}

.dropdown-content a {
  color: #8fa1b3;
  text-decoration: none;
  padding: 5px 0;
}

.dropdown-content a:hover {
  color: #d7dae0;
}

.fa-arrow-down,
.fa-download {
  margin-left: 5px;
}

.footer {
  margin-left: 240px;
  width: calc(100% - 240px);
  padding: 10px 0;
  max-width: 1200px;
  text-align: center;
  color: #8b949e;
  border-top: 1px solid #8b949e;
}

.folders-section {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-follow-section {
  margin-top: auto;
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.profile-picture-link {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 50%;
  overflow: hidden;
  width: 80px;
  height: 80px;
  border: 3px solid white;
  transition: box-shadow 0.3s ease-in-out;
}

.profile-picture-link:hover {
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 255, 255, 0.6),
    0 0 30px rgba(255, 255, 255, 0.4);
}

.profile-picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-section {
  margin-top: auto;
  margin-bottom: 0;
}

.sidebar-section > div,
.sidebar-section > p {
  margin-bottom: 2px;
  line-height: 1.35;
  color: var(--text-color, #c0c5ce);
  font-size: 0.92em;
  transition: color 0.3s ease;
  word-break: break-word;
}

.sidebar-section > div:last-child,
.sidebar-section > p:last-child {
  margin-bottom: 0;
}

.fun-section {
  margin-bottom: 28px;
}
.fun-fact {
  background: rgba(199, 207, 47, 0.07);
  color: var(--accent-color, #c7cf2f);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.92em;
  font-style: italic;
  text-align: center;
  margin-top: 4px;
  box-shadow: 0 2px 8px rgba(199, 207, 47, 0.04);
}

.sidebar-nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
  margin-bottom: 2px;
}
.nav-pill {
  background: rgba(199, 207, 47, 0.09);
  color: var(--accent-color, #c7cf2f);
  border: 1px solid rgba(199, 207, 47, 0.18);
  border-radius: 16px;
  padding: 4px 13px;
  font-size: 0.78em;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s,
    border 0.2s;
  cursor: pointer;
  letter-spacing: 0.1px;
  white-space: nowrap;
}
.nav-pill:hover {
  background: var(--accent-color, #c7cf2f);
  color: #23272f;
  border-color: var(--accent-color, #c7cf2f);
}

.education-minimal {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 28px;
}
.edu-accent {
  width: 4px;
  min-width: 4px;
  height: 70px;
  background: var(--accent-color, #c7cf2f);
  border-radius: 3px;
  margin-top: 2px;
}
.edu-minimal-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.edu-minimal-content .school-name {
  font-weight: bold;
  color: var(--accent-color, #c7cf2f);
  font-size: 1em;
  margin-bottom: 0;
}
.edu-minimal-content .edu-dates {
  color: var(--secondary-text, #8fa1b3);
  font-size: 0.78em;
  margin-bottom: 2px;
  font-style: italic;
  letter-spacing: 0.2px;
}
.edu-minimal-content .gpa {
  color: var(--secondary-text, #8fa1b3);
  font-style: italic;
  font-size: 0.8em;
  margin-top: 2px;
  padding: 2px 7px;
  background: rgba(143, 161, 179, 0.13);
  border-radius: 3px;
  display: inline-block;
  transition:
    color 0.3s ease,
    background 0.3s ease;
}

.edu-label {
  font-size: 0.92em;
  color: var(--accent-color, #c7cf2f);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  text-transform: uppercase;
  opacity: 0.85;
}

.edu-label-underline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2px;
}
.edu-label-underline .edu-label {
  font-size: 0.92em;
  color: var(--accent-color, #c7cf2f);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0;
}
.edu-label-underline-bar {
  width: 38px;
  height: 2px;
  background: var(--accent-color, #c7cf2f);
  opacity: 0.7;
  border-radius: 2px;
  margin-top: 2px;
  margin-bottom: 2px;
}

.sidebar-nav-vertical {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 18px 0 24px 0;
  align-items: flex-start;
}
.sidebar-nav-link {
  color: var(--secondary-text, #8fa1b3);
  font-size: 0.93em;
  font-weight: 500;
  text-decoration: none;
  padding: 4px 12px 4px 8px;
  border-radius: 6px;
  transition:
    background 0.2s,
    color 0.2s;
  position: relative;
  cursor: pointer;
  letter-spacing: 0.1px;
}
.sidebar-nav-link.active,
.sidebar-nav-link:hover {
  background: rgba(199, 207, 47, 0.13);
  color: var(--accent-color, #c7cf2f);
}

.theme-palette-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-left: auto;
  margin-right: 0;
  cursor: pointer;
  z-index: 100;
  background: linear-gradient(
    135deg,
    rgba(199, 207, 47, 0.1),
    rgba(255, 247, 0, 0.05)
  );
  border-radius: 50%;
  border: 1px solid rgba(199, 207, 47, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.theme-palette-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 247, 0, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.theme-palette-wrapper:hover {
  background: linear-gradient(
    135deg,
    rgba(199, 207, 47, 0.2),
    rgba(255, 247, 0, 0.1)
  );
  border-color: rgba(255, 247, 0, 0.6);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 247, 0, 0.3);
}
.theme-palette-wrapper:hover::before {
  opacity: 1;
}
.theme-palette-icon {
  font-size: 2.2em;
  color: #c7cf2f;
  transition:
    color 0.3s,
    transform 0.3s,
    filter 0.3s;
  position: relative;
  z-index: 2;
  transform: scaleX(-1);
}
.theme-palette-wrapper:active .theme-palette-icon,
.theme-palette-wrapper:focus .theme-palette-icon {
  color: #fff700;
  filter: drop-shadow(0 0 15px rgba(255, 247, 0, 0.8));
  animation: lightning-strike 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes lightning-strike {
  0% {
    transform: scale(1) rotate(0deg) scaleX(-1);
    filter: drop-shadow(0 0 0px rgba(255, 247, 0, 0));
  }
  15% {
    transform: scale(1.4) rotate(-15deg) scaleX(-1);
    filter: drop-shadow(0 0 20px rgba(255, 247, 0, 1))
      drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
  }
  30% {
    transform: scale(1.2) rotate(10deg) scaleX(-1);
    filter: drop-shadow(0 0 25px rgba(255, 247, 0, 0.9))
      drop-shadow(0 0 40px rgba(255, 255, 255, 0.6));
  }
  45% {
    transform: scale(1.3) rotate(-8deg) scaleX(-1);
    filter: drop-shadow(0 0 18px rgba(255, 247, 0, 0.8))
      drop-shadow(0 0 25px rgba(255, 255, 255, 0.4));
  }
  60% {
    transform: scale(1.25) rotate(5deg) scaleX(-1);
    filter: drop-shadow(0 0 22px rgba(255, 247, 0, 0.9))
      drop-shadow(0 0 35px rgba(255, 255, 255, 0.5));
  }
  75% {
    transform: scale(1.15) rotate(-3deg) scaleX(-1);
    filter: drop-shadow(0 0 15px rgba(255, 247, 0, 0.7))
      drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
  }
  100% {
    transform: scale(1) rotate(0deg) scaleX(-1);
    filter: drop-shadow(0 0 10px rgba(255, 247, 0, 0.6));
  }
}

@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
    border-right: none;
    border-bottom: 2px solid #343d46;
    padding-bottom: 20px;
    flex-direction: column;
  }

  .main-content {
    margin-left: 0;
    padding: 20px;
  }

  .terminal-header,
  .last-login,
  .last-login-line,
  .top-container,
  .top-section {
    margin-left: 0;
    width: 100%;
  }

  .last-login {
    max-width: 100%;
    padding: 20px 10px 0 10px;
  }

  .last-login-line {
    max-width: 100%;
    padding: 0 10px 5px 10px;
  }

  .top-container {
    max-width: 100%;
    padding: 10px;
    margin-left: 0;
  }

  .top-section {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
  }

  .footer {
    width: 100%;
    left: 0;
    bottom: 0;
    border-top: 1px solid #8b949e;
  }

  .folders-section {
    position: absolute;
    top: 20px;
    right: 20px;
    justify-content: flex-end;
  }

  .typed-name {
    font-size: 1.5em;
    margin-top: 10px;
  }

  .profile-picture-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto;
  }

  .profile-picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .theme-palette-wrapper {
    width: 32px;
    height: 32px;
    position: fixed;
    top: 12px;
    right: 8px;
    z-index: 4000;
    background: linear-gradient(
      135deg,
      rgba(199, 207, 47, 0.15),
      rgba(255, 247, 0, 0.08)
    );
    border: 1px solid rgba(199, 207, 47, 0.4);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  }

  .theme-palette-icon {
    width: 24px;
    height: 24px;
    font-size: 0.6em;
  }

  .theme-palette-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 247, 0, 0.4);
  }

  .theme-palette-wrapper:active .theme-palette-icon,
  .theme-palette-wrapper:focus .theme-palette-icon {
    animation: lightning-strike-mobile 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  @keyframes lightning-strike-mobile {
    0% {
      transform: scale(1) rotate(0deg) scaleX(-1);
      filter: drop-shadow(0 0 0px rgba(255, 247, 0, 0));
    }
    25% {
      transform: scale(1.3) rotate(-10deg) scaleX(-1);
      filter: drop-shadow(0 0 15px rgba(255, 247, 0, 0.9))
        drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
    }
    50% {
      transform: scale(1.2) rotate(8deg) scaleX(-1);
      filter: drop-shadow(0 0 18px rgba(255, 247, 0, 0.8))
        drop-shadow(0 0 25px rgba(255, 255, 255, 0.5));
    }
    75% {
      transform: scale(1.15) rotate(-5deg) scaleX(-1);
      filter: drop-shadow(0 0 12px rgba(255, 247, 0, 0.7))
        drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
    }
    100% {
      transform: scale(1) rotate(0deg) scaleX(-1);
      filter: drop-shadow(0 0 8px rgba(255, 247, 0, 0.6));
    }
  }
}

.accomplishments-section {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}
.accomplishments-accent {
  width: 4px;
  min-width: 4px;
  height: 48px;
  background: var(--accent-color, #c7cf2f);
  border-radius: 3px;
  margin-top: 2px;
}
.accomplishments-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.accomplishments-section h2 {
  font-size: 0.92em;
  color: var(--accent-color, #c7cf2f);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  text-transform: uppercase;
  opacity: 0.85;
  padding: 0;
  border: none;
}
.accomplishments-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.accomplishments-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-color, #c0c5ce);
  font-size: 0.88em;
  line-height: 1.2;
}
.accomplishment-icon {
  display: flex;
  align-items: center;
  font-size: 1.1em;
  color: #7289da;
}
.accomplishments-list li:nth-child(2) .accomplishment-icon {
  color: #c7cf2f;
}
.accomplishments-list li:nth-child(3) .accomplishment-icon {
  color: #8fa1b3;
}
.announcements-page-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: auto;
  background: linear-gradient(135deg, #1f1c2c, #5e2323);
  background-size: cover;
  backdrop-filter: blur(5px);
  padding-top: 30px;
}

.announcements-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  width: 90%;
  max-width: 650px;
  background: linear-gradient(145deg, #3a3b3c, #2b2c2d);
  border: 1px solid #ffaa00;
  border-radius: 15px;
  box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.7);
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: cardIn 0.5s ease-in-out;
  margin: 20px;
}

.announcements-container:hover {
  transform: translateY(-2px);
  box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.8);
}

@keyframes cardIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.announcements-container h1 {
  color: #ffaa00;
  font-size: 2.5em; 
  margin-bottom: 15px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
  text-align: center;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #ffaa00, #ff8800); 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 1.5s infinite alternate;
}

.announcement {
  background: linear-gradient(135deg, #4f3434, #210a0a); 
  color: #fff;
  padding: 15px; 
  margin-bottom: 15px; 
  border-radius: 10px;
  border: 1px solid #ffaa00; 
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
  animation: announcementIn 0.5s ease-in-out;
}

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

.next-button {
  padding: 12px 25px;
  border: none;
  border-radius: 10px;
  background-color: #ffaa00;
  color: #333333;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s ease, transform 0.2s;
}

.next-button:hover {
  background-color: #ff8800;
  transform: translateY(-2px);
}

.next-button:active {
  transform: translateY(1px);
}


.tickets-page-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    overflow: auto;
    background: linear-gradient(135deg, #1f1c2c, #461313);
    background-size: cover;
    backdrop-filter: blur(5px);
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
    width: 100%; 
  }

  .tickets-container,
  .attendees-wrapper {
    width: calc(45% - 40px); 
    box-sizing: border-box;
    background: linear-gradient(145deg, #3a3b3c, #2b2c2d);
    border: 1px solid #ffaa00;
    border-radius: 15px;
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.7);
    padding: 20px;
    margin: 20px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .tickets-container:hover,
  .attendees-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.8);
  }
  
  .tickets-container h1 {
    color: #ffaa00;
    font-size: 2.5em;
    margin-bottom: 15px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
    text-align: center;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ffaa00, #ff8800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 1.5s infinite alternate;
  }
  
  .ticket-details {
    text-align: left;
    margin-bottom: 20px;
    width: 100%;
  }
  
  .ticket-details p {
    margin: 10px 0;
    color: #ffffff;
    font-size: 1.1em;
  }
  
  .ticket-details strong {
    color: #ffaa00;
  }
  
  .ticket-display {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .ticket-iframe {
    width: 100%;
    height: 500px;
    border: none;
  }
  
  .voucher-link-container {
    display: flex;
    justify-content: center;
  }
  
  .voucher-link {
    background-color: #ffaa00;
    color: #333333;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    margin: 10px 0;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease, transform 0.2s;
  }
  
  .voucher-link:hover {
    background-color: #ff8800;
    transform: translateY(-2px);
  }
  
  .voucher-link:active {
    transform: translateY(1px);
  }
  
  @keyframes glow {
    from { text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7); }
    to { text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.9); }
  }
  
  @media (max-width: 1200px) {
    .tickets-page-wrapper {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding-top: 20px;
    }
  
    .tickets-container,
    .attendees-wrapper {
      width: 90%;
    }
  }
  
  @media (max-width: 600px) {
    .tickets-container,
    .attendees-wrapper {
      width: 100%;
      padding: 10px;
    }
  
    .voucher-link {
      padding: 10px 20px;
    }
  }
  .attendees-container {
    overflow-x: auto; 
  }
  
  .attendees-container h2 {
    color: #ffaa00;
    font-size: 2.5em;
    margin-bottom: 15px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
    text-align: center;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ffaa00, #ff8800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 1.5s infinite alternate;
  }
  
  .attendees-container p {
    color: #fff;
    margin: 5px 0;
  }
  
  .filters {
    display: flex;
    flex-wrap: wrap; 
    justify-content: flex-start;
    margin-bottom: 20px;
  }
  
  .filters label {
    margin: 0 10px;
    color: #fff;
    display: flex;
    align-items: center;
  }
  
  .filters input {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 3px;
    margin-right: 5px;
    position: relative;
    cursor: pointer;
    outline: none;
  }
  
  .filters input:checked::before {
    content: '\2714';
    position: absolute;
    top: 0;
    left: 3px;
    font-size: 14px;
    color: #ffaa00;
  }
  
  .attendees-table-container {
    width: 100%;
    overflow-x: auto;
  }
  
  .attendees-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    table-layout: fixed;
  }
  
.attendees-table th,
.attendees-table td {
  padding: 9px;
  border: 1px solid #fff;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
  
  .attendees-table th {
    background-color: #ffaa00;
    color: #1c1f24;
  }
  
  .attendees-table .signed {
    background-color: #d4edda;
    color: #155724;
  }
  
  .attendees-table .unsigned {
    background-color: #f8d7da;
    color: #721c24;
  }
  
  .pagination {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  
  .pagination button {
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background-color: #ffaa00;
    color: #1c1f24;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease, transform 0.2s;
  }
  
  .pagination button:hover {
    background-color: #ff8800;
    transform: translateY(-2px);
  }
  
  .pagination button:disabled {
    background-color: #ddd;
    color: #888;
    cursor: not-allowed;
  }
  .six-flags-page-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1f1c2c, #5e2323);
    background-size: cover;
    backdrop-filter: blur(5px);
    padding: 20px;
}

.six-flags-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 500px;
    padding: 20px; 
    box-sizing: border-box;
}

.six-flags-heading {
    color: #c7cf2f;
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
    text-align: center;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f8ff00, #3ad59f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 1.5s infinite alternate;
}

.six-flags-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    width: 100%;
    max-width: 500px;
    background: linear-gradient(145deg, #3a3b3c, #2b2c2d);
    border-radius: 20px;
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.8);
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: cardIn 0.5s ease-in-out;
}

.six-flags-container:hover {
    transform: translateY(-5px);
    box-shadow: 0px 25px 35px rgba(0, 0, 0, 0.9);
}

@keyframes cardIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.six-flags-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.six-flags-form-group {
    margin-bottom: 20px;
    width: 100%;
}

.six-flags-label {
    font-size: 1.2em;
    margin-bottom: 10px;
    display: block;
    color: #c7cf2f;
}

.six-flags-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #555;
    border-radius: 10px;
    background-color: #333;
    color: #fff;
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.six-flags-input:focus {
    border-color: #c7cf2f;
}

.six-flags-input::placeholder {
    color: #bbb;
}

.six-flags-submit-button {
    padding: 15px;
    border: none;
    border-radius: 10px;
    background-color: #c7cf2f;
    color: #222;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.six-flags-submit-button:disabled {
    background-color: #777;
    cursor: not-allowed;
}

.six-flags-submit-button:hover:enabled {
    background-color: #b5b527;
}

.six-flags-captcha-container {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.g-recaptcha {
    transform: scale(0.9);
    transform-origin: 0 0;
}

.six-flags-back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #c7cf2f;
    color: #1c1f24;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease, transform 0.2s;
}

.six-flags-back-button:hover {
    background-color: #b5b527;
    transform: translateY(-2px);
}

.six-flags-back-button:active {
    transform: translateY(1px);
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    padding: 20px; 
    box-sizing: border-box;
    z-index: 1000; 
    opacity: 0;
    animation: fadeIn 0.3s forwards; 
}

.popup-inner {
    background: linear-gradient(145deg, #3a3b3c, #2b2c2d);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.8);
    width: 100%;
    max-width: 500px;
    animation: popupIn 0.5s ease-in-out;
    box-sizing: border-box;
}

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

@keyframes popupIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.popup-inner h2 {
    margin-bottom: 20px;
    color: #c7cf2f;
    font-family: 'Poppins', sans-serif;
    font-size: 2em;
}

.popup-inner button {
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    background-color: #c7cf2f;
    color: #1c1f24;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease, transform 0.2s;
}

.popup-inner button:hover {
    background-color: #b5b527;
    transform: translateY(-2px);
}

.popup-inner button:active {
    transform: translateY(1px);
}

@media (max-width: 600px) {
    .six-flags-heading {
        font-size: 2em;
    }

    .six-flags-container {
        padding: 20px;
    }

    .six-flags-input {
        padding: 10px; 
    }

    .six-flags-submit-button {
        padding: 10px; 
    }

    .popup-inner {
        padding: 20px;
    }

    .six-flags-page-wrapper {
        padding: 10px;
    }

    .six-flags-back-button {
        padding: 10px 20px; 
        font-size: 0.9em; 
    }
}
#stars {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}