.events-container.container__upcoming-events {
  margin-bottom: 4rem;
}
.events-container.container__events-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #d4be98, #d8a657);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.events-header {
  text-align: center;
  margin-bottom: 4rem;
}
.events-header .events-intro {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: rgba(212, 190, 152, 0.7);
  font-size: 1.2rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
}
@media (max-width: 400px) {
  .events-grid {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}

.event-card {
  background: rgba(40, 40, 40, 0.4);
  border: 1px solid rgba(212, 190, 152, 0.1);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.event-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 166, 87, 0.3);
  background: rgba(50, 48, 47, 0.6);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.container.event-single {
  max-width: 900px !important;
}

.event-single-header {
  margin-bottom: 3rem;
}
.event-single-header .event-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.event-single-header .event-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #d8a657;
}

.event-hero {
  width: 100%;
  background: rgba(40, 40, 40, 0.4);
  border-radius: 12px;
  padding: 3rem;
  margin-bottom: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(212, 190, 152, 0.05);
}
.event-hero .event-hero-img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
}

.event-single-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  margin-bottom: 5rem;
}
@media (max-width: 850px) {
  .event-single-content {
    grid-template-columns: 1fr;
  }
}

.event-main-info .event-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(212, 190, 152, 0.9);
}
.event-main-info .event-description p {
  margin-bottom: 1.5rem;
}

.resources-title {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #d8a657;
  border-bottom: 1px solid rgba(216, 166, 87, 0.2);
  padding-bottom: 0.5rem;
}

.event-back {
  margin-top: 4rem;
  border-top: 1px solid rgba(212, 190, 152, 0.1);
  padding-top: 2rem;
}
.event-back .back-link {
  color: #ea6962;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: transform 0.3s ease;
  display: inline-block;
}
.event-back .back-link:hover {
  transform: translateX(-5px);
  text-decoration: underline;
}

.event-image-wrapper {
  height: 200px;
  background: rgba(50, 48, 47, 0.3);
  overflow: hidden;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-image-wrapper .event-image {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.event-card:hover .event-image {
  transform: scale(1.05);
}

.event-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.event-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.event-meta .event-date-label {
  font-size: 0.9rem;
  color: #d8a657;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}
.event-meta .event-social {
  display: flex;
  gap: 0.8rem;
}
.event-meta .event-social a {
  color: rgba(212, 190, 152, 0.5);
  font-size: 1.1rem;
  transition: color 0.3s ease;
}
.event-meta .event-social a:hover {
  color: #d8a657;
}

.event-title {
  font-size: 1.6rem;
  margin: 0 0 1rem 0;
  color: #d4be98;
}

.event-description {
  font-size: 1rem;
  color: rgba(212, 190, 152, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  flex-grow: 1;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.event-tags .event-tag {
  font-size: 0.8rem;
  background: rgba(234, 105, 98, 0.1);
  color: #ea6962;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  border: 1px solid rgba(234, 105, 98, 0.2);
}

.event-pdfs-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: rgba(212, 190, 152, 0.4);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.event-pdfs-container {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 1rem;
  max-height: 180px;
  overflow: hidden;
  position: relative;
}

.pdf-scrollbox {
  max-height: 160px;
  overflow-y: auto;
  padding-right: 0.5rem;
  /* Custom Scrollbar */
}
.pdf-scrollbox::-webkit-scrollbar {
  width: 6px;
}
.pdf-scrollbox::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}
.pdf-scrollbox::-webkit-scrollbar-thumb {
  background: rgba(216, 166, 87, 0.2);
  border-radius: 10px;
}
.pdf-scrollbox::-webkit-scrollbar-thumb:hover {
  background: rgba(216, 166, 87, 0.4);
}

.pdf-button {
  display: flex;
  align-items: center;
  background: rgba(60, 56, 54, 0.6);
  border: 1px solid rgba(212, 190, 152, 0.1);
  padding: 0.8rem 1rem;
  border-radius: 6px;
  margin-bottom: 0.6rem;
  text-decoration: none;
  color: #d4be98;
  transition: all 0.2s ease;
}
.pdf-button:last-child {
  margin-bottom: 0;
}
.pdf-button:hover {
  background: rgba(216, 166, 87, 0.1);
  border-color: rgba(216, 166, 87, 0.3);
  text-decoration: none;
  transform: translateX(4px);
}
.pdf-button:hover .pdf-icon {
  color: #ea6962;
}
.pdf-button:hover .download-icon {
  color: #d8a657;
}
.pdf-button .pdf-icon {
  font-size: 1.2rem;
  color: rgba(234, 105, 98, 0.7);
  margin-right: 1rem;
  transition: color 0.2s ease;
}
.pdf-button .pdf-name {
  flex-grow: 1;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 0.5rem;
}
.pdf-button .download-icon {
  font-size: 0.9rem;
  color: rgba(212, 190, 152, 0.3);
  transition: color 0.2s ease;
}

.no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem;
  color: rgba(212, 190, 152, 0.4);
  font-size: 1.2rem;
  border: 2px dashed rgba(212, 190, 152, 0.1);
  border-radius: 12px;
}

@media (max-width: 600px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
  .events-header h1 {
    font-size: 2.5rem;
  }
}
.past-events-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  background: rgba(40, 40, 40, 0.2);
  border: 1px solid rgba(212, 190, 152, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
}

.past-event-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  background: rgba(50, 48, 47, 0.3);
  border: 1px solid rgba(212, 190, 152, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
}
.past-event-item:hover {
  background: rgba(216, 166, 87, 0.05);
  border-color: rgba(216, 166, 87, 0.2);
  transform: translateX(4px);
}
.past-event-item:hover .past-event-title {
  color: rgb(225.6086956522, 187.9275362319, 128.3913043478);
  text-decoration: underline;
}
.past-event-item .past-event-date {
  font-family: inherit;
  font-size: 0.95rem;
  color: rgba(212, 190, 152, 0.6);
  flex-shrink: 0;
}
.past-event-item .past-event-title {
  font-size: 1.15rem;
  font-weight: 500;
  color: #d8a657;
  text-decoration: none;
  transition: color 0.2s ease;
  text-align: left;
  margin-right: 2rem;
  max-width: 500px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}

@media (max-width: 600px) {
  .past-event-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem;
  }
  .past-event-item .past-event-title {
    text-align: left;
    margin-right: 0;
    max-width: 100%;
  }
}
.staff-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.staff-card {
  flex: 1 1 180px;
  max-width: 220px;
  min-width: 160px;
  text-align: center;
  background: rgba(40, 40, 40, 0.4);
  border: 1px solid rgba(216, 166, 87, 0.1);
  padding: 1.5rem 1rem;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.staff-card:hover {
  transform: translateY(-10px);
  border-color: rgba(216, 166, 87, 0.4);
  background: rgba(50, 48, 47, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.staff-card:hover .staff-image-wrapper {
  border-color: #d8a657;
  box-shadow: 0 0 20px rgba(216, 166, 87, 0.3);
  transform: scale(1.05);
}
.staff-card:hover .staff-name {
  color: #d4be98;
}
.staff-card .staff-image-wrapper {
  width: 120px;
  height: 120px;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(216, 166, 87, 0.3);
  transition: all 0.4s ease;
  background: #32302f;
}
.staff-card .staff-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.staff-card .staff-info .staff-name {
  margin: 0 0 0.5rem 0;
  color: #d8a657;
  font-size: 1.25rem;
  font-weight: 700;
  transition: color 0.3s ease;
}
.staff-card .staff-info .staff-status {
  font-size: 0.95rem;
  color: rgba(212, 190, 152, 0.6);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.staff-grid.plain .staff-card {
  background: rgba(40, 40, 40, 0.2);
  border: 1px solid rgba(212, 190, 152, 0.15);
}
.staff-grid.plain .staff-card:hover {
  border-color: rgba(212, 190, 152, 0.4);
  background: rgba(50, 48, 47, 0.4);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.staff-grid.plain .staff-card:hover .staff-image-wrapper {
  border-color: #d4be98;
  box-shadow: none;
}
.staff-grid.plain .staff-card:hover .staff-name {
  color: #d4be98;
}
.staff-grid.plain .staff-card .staff-image-wrapper {
  border: 3px solid rgba(212, 190, 152, 0.2);
}
.staff-grid.plain .staff-card .staff-info .staff-name {
  color: #d4be98;
}
.staff-grid.plain .staff-card .staff-info .staff-status {
  color: rgba(212, 190, 152, 0.5);
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #3c3836;
  padding: 1rem 2rem;
  z-index: 1;
  position: relative;
}
.footer .social-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.footer .social-links a {
  transition: transform 0.2s ease, color 0.2s ease;
  display: flex;
  align-items: center;
}
.footer .social-links a:hover {
  transform: translateY(-3px);
  color: #d8a657;
}
.footer .social-links a svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.footer p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
}
.footer p a {
  color: inherit;
  text-decoration: underline;
}
.footer p a:hover {
  color: #d8a657;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #3c3836;
  flex-direction: row-reverse;
  z-index: 1000;
  position: relative;
  padding: 1rem 2rem;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: #d8a657;
  height: 2px;
  width: 25px;
  border-radius: 2px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
}

.nav-toggle-label span::before {
  bottom: 8px;
}

.nav-toggle-label span::after {
  top: 8px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.brackets::before {
  content: "[ ";
}
.brackets::after {
  content: " ]";
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: row;
    padding: 1rem;
  }
  .nav-toggle-label {
    display: block;
    z-index: 1001;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #3c3836;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    border-bottom: 2px solid transparent;
  }
  .nav-links .brackets {
    margin: 1rem 0;
    width: 100%;
    text-align: center;
  }
  .nav-toggle:checked ~ .nav-links {
    max-height: 300px;
    border-bottom-color: #d8a657;
  }
  .nav-toggle:checked ~ .nav-toggle-label span {
    background: transparent;
  }
  .nav-toggle:checked ~ .nav-toggle-label span::before {
    transform: rotate(45deg);
    bottom: 0;
  }
  .nav-toggle:checked ~ .nav-toggle-label span::after {
    transform: rotate(-45deg);
    top: 0;
  }
}
.pagination {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

.pagination-list {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 0.8rem;
  align-items: center;
}

.pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.5rem;
  border: 1px solid rgba(212, 190, 152, 0.2);
  color: #d4be98;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
  font-family: inherit;
}

.pagination-link:hover, .pagination-link.active {
  border-color: #d8a657;
  color: #d8a657;
  background: rgba(216, 166, 87, 0.1);
  transform: translateY(-2px);
}

.jump-box {
  display: flex;
  align-items: center;
}

.page-input {
  width: 60px;
  height: 40px;
  background: rgba(60, 56, 54, 0.5);
  border: 1px solid rgba(212, 190, 152, 0.4);
  color: #d8a657;
  border-radius: 4px;
  text-align: center;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.page-input:focus {
  outline: none;
  border-color: #d8a657;
  box-shadow: 0 0 10px rgba(216, 166, 87, 0.2);
}

/* Hide spin buttons */
.page-input::-webkit-outer-spin-button,
.page-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.blog-container {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
}
.blog-container.container {
  max-width: 1200px;
}
@media (max-width: 768px) {
  .blog-container {
    grid-template-columns: 1fr;
  }
}

.blog-sidebar h3 {
  border-bottom: 2px solid #d8a657;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}
.blog-sidebar ul {
  list-style: none;
  padding: 0;
}
.blog-sidebar ul li {
  margin-bottom: 0.8rem;
}
.blog-sidebar ul li a {
  color: #d4be98;
}
.blog-sidebar ul li a:hover {
  color: #d8a657;
}

.search-wrapper {
  margin-bottom: 2rem;
  width: 100%;
  max-width: 100%;
}
.search-wrapper .search-input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: rgba(50, 48, 47, 0.5);
  border: 1px solid rgba(212, 190, 152, 0.3);
  color: #d4be98;
  padding: 0.8rem 1.2rem;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}
.search-wrapper .search-input:focus {
  outline: none;
  border-color: #d8a657;
  box-shadow: 0 0 10px rgba(216, 166, 87, 0.2);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}
@media (max-width: 400px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}

.blog-card {
  background: rgba(60, 56, 54, 0.5);
  border: 1px solid rgba(212, 190, 152, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #d4be98;
}
.blog-card:hover {
  transform: translateY(-5px);
  border-color: #d8a657;
  text-decoration: none;
}
.blog-card .card-img {
  width: auto;
  height: 180px;
  object-fit: contain;
  background: rgba(50, 48, 47, 0.3);
  padding: 1rem;
}
.blog-card .card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-card .card-content .card-date {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-bottom: 0.5rem;
}
.blog-card .card-content .card-title {
  font-size: 1.4rem;
  margin: 0 0 1rem 0;
  color: #d8a657;
}
.blog-card .card-content .card-description {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  color: #d4be98;
}
.blog-card .card-content .tag {
  font-size: 0.8rem;
  color: #ea6962;
  margin-right: 0.5rem;
}

.blog-single {
  max-width: 800px !important;
}
.blog-single .post-header {
  margin-bottom: 3rem;
  text-align: center;
}
.blog-single .post-header .post-meta {
  opacity: 0.6;
  margin-bottom: 1rem;
}
.blog-single .post-header .post-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.blog-single .post-hero-img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  margin-bottom: 3rem;
  background: rgba(60, 56, 54, 0.5);
  border-radius: 8px;
}
.blog-single .post-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

body {
  background-color: #32302f;
  color: #d4be98;
  font-family: "Hack", "Monaco", "Menlo", "Courier New", monospace;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  padding-bottom: 4rem;
}

main:not(.home-main) {
  padding-top: 2.35rem;
}

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

h1,
h2,
h3 {
  color: #d8a657;
}

.container > h1,
article.container > h1,
.post-title,
h1.event-title,
.events-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #d4be98, #d8a657);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-top: 0;
}

@media (max-width: 600px) {
  .container > h1,
  article.container > h1,
  .post-title,
  h1.event-title {
    font-size: 2.5rem;
  }
}
a {
  color: #ea6962;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.logo-container {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  justify-content: center;
  height: 500px;
  flex-direction: column;
  background: linear-gradient(rgb(60, 56, 54), rgba(50, 48, 47, 0.3)), url(/images/hackerlablogo.svg) no-repeat center 64%;
}
@media (max-width: 600px) {
  .logo-container {
    height: 400px;
    background-size: cover;
  }
}
.logo-container .hero-subtitle {
  color: rgba(212, 190, 152, 0.7);
  font-size: 1.2rem;
  letter-spacing: 0.5rem;
  margin-bottom: 0.5rem;
  z-index: 1;
}
@media (max-width: 600px) {
  .logo-container .hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.3rem;
  }
}
.logo-container .hero-title {
  margin: 0;
  z-index: 1;
  font-size: 5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .logo-container .hero-title {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .logo-container .hero-title {
    font-size: 2.2rem;
  }
}
.logo-container .hero-title .typing-text {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  background: linear-gradient(90deg, #d4be98, #d8a657);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(216, 166, 87, 0.2);
  animation: typing 1.5s steps(14) forwards;
}
.logo-container .hero-title .cursor {
  color: #d8a657;
  animation: blink 1s step-end infinite;
  margin-left: 0.2rem;
}
.logo-container__logo {
  position: absolute;
  z-index: 0;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 14ch;
  }
}
@keyframes blink {
  from, to {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.btn-getting-started {
  display: inline-block;
  background: rgba(216, 166, 87, 0.1);
  border: 1px solid #d8a657;
  color: #d8a657 !important;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none !important;
  transition: all 0.3s ease;
  vertical-align: middle;
}
.btn-getting-started:hover {
  background: #d8a657;
  color: #282828 !important;
  box-shadow: 0 0 10px rgba(216, 166, 87, 0.4);
  transform: translateY(-1px);
}

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

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(216, 166, 87, 0.4);
  border-radius: 10px;
  border: 3px solid #32302f;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(216, 166, 87, 0.7);
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(216, 166, 87, 0.5) transparent;
}

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