a:link,
a:visited,
a:hover,
a:active {
  color: rgb(57, 192, 255);
  background-color: transparent;
  text-decoration: none;
}

.announcement {
  max-width: 800px;
  margin: 50px auto;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
  font-family: Arial, sans-serif;
  line-height: 1.8;
}

.announcement h1 {
  text-align: center;
  margin-bottom: 30px;
}

.announcement p {
  margin-bottom: 20px; 
  font-size: 1rem;
}

:root {
  --header-height: 3rem;
  --nav-width: 68px;

  --first-color: #192132;
  --first-color-light: #ffffff;
  --white-color: #0D121C;
  --body-font: 'Poppins', sans-serif;
  --normal-font-size: .6rem;

  --z-fixed: 100;
}


*,
::before,
::after {
  box-sizing: border-box;
}


h1,
h2,
h3,
h4,
h5,
h6,
p,
li {
  font-size: var(--normal-font-size);
  color: #FFFFFF
}



body {
  position: relative;
  margin: var(--header-height) 0 0 0;
  padding: 0 1rem;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  transition: .5s;
  text-decoration: none;
  background-color: #0D121C;

}

.tombstone-year {
  position: fixed;
  font-size: 8rem;
  font-weight: bold;
  color: rgba(226, 205, 18, 0.15);
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  font-family: Georgia, serif;
  letter-spacing: 5px;
}

.tombstone-year.left {
  left: 20px;
}


.tombstone-year.right {
  right: 20px;
}

@media screen and (max-width: 768px) {
  .tombstone-year {
    top: auto;
    bottom: 20px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    font-size: 4rem;
    letter-spacing: 2px;
    white-space: nowrap;
  }

  .tombstone-year.left,
  .tombstone-year.right {
    position: relative;
    display: inline-block;
    transform: none;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    font-size: 3rem;
    letter-spacing: 2px;
  }

  .tombstone-year.left {
    margin-right: 10px;
  }

  .tombstone-year.right {
    margin-left: 10px;
  }

  .tombstone-year,
  .tombstone-container {
    display: none;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("https://cdn.ourcord.com/brand/OC-TRANS.png") center/cover no-repeat;
  background-size: 50%;
  opacity: 0.2;
  z-index: -1;
}

.botc .botc-list a.collapsed {
  text-decoration: none;
}

.botc .botc-list a {
  text-decoration: none;
}


.header {
  width: 100%;
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: var(--z-fixed);
  transition: .5s;

}

.header__toggle {
  color: #e2cd12;
  font-size: 1.5rem;
  cursor: pointer;

}

.header__img {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
}

.header__img img {
  width: 40px;
}


.l-navbar {
  position: fixed;
  top: 0;
  left: -30%;
  width: var(--nav-width);
  height: 100vh;
  background-color: var(--first-color);
  padding: .5rem 1rem 0 0;
  transition: .5s;
  z-index: var(--z-fixed);

}

.nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-x: hidden;
  overflow-y: visible;
}

.nav__logo,
.nav__link {
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: center;
  column-gap: 1rem;
  padding: .5rem 0 .5rem 1.5rem;
}

.nav__logo {
  margin-bottom: 2rem;
  width: 50px;
}

.nav__logo img {
  width: 60px;
  margin-left: -23px;
  animation: rotation 2s infinite linear normal;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

.nav__logo-icon {
  font-size: 2.25rem;
  color: var(--white-color);
}

.nav__logo-name {
  color: #fff;
  font-weight: 700;
  font-size: 19px;
}

.nav__link {
  position: relative;
  color: #fff;
  margin-bottom: 1.5rem;
  transition: .3s;
}

.nav__link:hover {
  color: #e2cd12;
}

.nav__icon {
  font-size: 1.25rem;
}

.show {
  left: 0;
}

.wrap {
  display: flex;
  justify-content: space-around;
}

.block {
  display: inline-block;
  width: auto;
  height: auto;
  padding: 10px;
  box-shadow: 0 0 5px #9ecaed;
  margin: 13px;
  min-width: 320px;
  max-width: 400px;
  border-radius: 16px;
  background: var(--first-color);
}

.block h5 {
  text-align: left;
}

.block h4 {
  color: rgb(57, 192, 255);
}

.block span {
  color: white;
}

.block:hover {
  box-shadow: 0 0 15px #9ecaed;
}


.body-pd {
  padding-left: calc(var(--nav-width) + 1rem);
}

.active {
  color: #e2cd12;
}

.active::before {
  content: '';
  position: absolute;
  left: 0;
  width: 2px;
  height: 32px;
  background-color: var(--white-color);
}

@media screen and (min-width: 768px) {
  body {
    margin: calc(var(--header-height) + 1rem) 0 0 0;
    padding-left: calc(var(--nav-width) + 2rem);
  }

  .header {
    height: calc(var(--header-height) + 1rem);
    padding: 0 2rem 0 calc(var(--nav-width) + 2rem);
  }

  .header__img {
    width: 40px;
    height: 40px;
  }

  .header__img img {
    width: 45px;
  }

  .l-navbar {
    left: 0;
    padding: 1rem 1rem 0 0;
  }

  .show {
    width: calc(var(--nav-width) + 156px);
  }

  .body-pd {
    padding-left: calc(var(--nav-width) + 188px);
    background: #0D121C;
  }
}

section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 25px 0;
  z-index: 1000;
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #cfd8c5;
}

.section-title h3 {
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  top: calc(65px);
  right: 65px;
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #e2cd12;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
  color: #fff;
}


::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #FF0000;
}





input[type=submit] {
  margin-right: 20px;
  border: none;
  background: #084cdf;
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  transition: background .2s ease-in-out;
}


input[type=submit]:disabled {
  opacity: 50%;
  margin-right: 20px;
  border: none;
  background: #084cdf;
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
  cursor: default;
  transition: background .2s ease-in-out;
}

input[type=submit]:hover:disabled {
  cursor: default;
}

input[type=submit]:hover {
  background: #0d45a5;
}

ul {
  margin: 1em 0;
  padding-left: 1.5em;
}

li {
  margin: 0.5em 0;
}

.container {
  max-width: 800px;
  margin: 2em auto;
  padding: 1em;
  background: #111722;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 2vw;
}


/*This is just sad andrew.*/


.toggle-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background-color: #2F3136;
  border-radius: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 22px;
  height: 22px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.toggle-switch input:checked+.toggle-slider {
  transform: translateX(24px);
  background-color: #3BA55D;
}

.toggle-switch input:checked~.toggle-switch-label::after {
  content: '✓';
}

.toggle-switch input:not(:checked)~.toggle-switch-label::after {
  content: '✗'
}

.toggle-switch-label {
  position: relative;
  margin-left: 10px;
  font-size: 18px;
  transition: color 0.3s ease;
}

.toggle-switch input:checked~.toggle-switch-label {
  color: #3BA55D;
}

.toggle-switch input:not(:checked)~.toggle-switch-label {
  color: #ED4245;
}

.toggle-switch input:disabled+.toggle-slider {
  background-color: #555;
  cursor: not-allowed;
}

.toggle-switch input:disabled~.toggle-switch-label {
  color: #777;
}

.alert {
  padding: 20px;
  background-color: #f44336;
  color: white;
  width: 50%;
  border-radius: 50px
}

.external-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.external-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #192132;
  color: rgb(57, 192, 255);
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  box-shadow: 0 0 8px #9ecaed;
  transition: all 0.3s ease;
}

.external-button:hover {
  box-shadow: 0 0 15px #9ecaed;
  background-color: #0d1a2b;
  color: #e2cd12;
}


#countdown {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.time-box {
  background: #1f2937;
  border-radius: 15px;
  padding: 20px;
  min-width: 120px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .3);
}

.time-box .value {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
}

.time-box .label {
  margin-top: 10px;
  font-size: .9rem;
  text-transform: uppercase;
  color: #9ca3af;
  letter-spacing: 2px;
}

.gallery-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  max-width: 600px;
  margin: 0 auto;
}

.gallery-nav {
  background: none;
  border: none;
  color: #39c0ff;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  transition: color 0.3s ease;
}

.gallery-nav:hover {
  color: #e2cd12;
}

.gallery-display {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  min-height: 350px;
}

.gallery-display img {
  max-width: 100%;
  max-height: 300px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .3);
  transition: transform 0.3s ease, max-height 0.3s ease;
  cursor: pointer;
}

.gallery-display img:hover {
  transform: scale(1.2);
  max-height: 500px;
}

@media screen and (max-width: 768px) {
  .gallery-container img:hover {
    transform: scale(3);
    max-width: 85%;
  }

  .gallery-container {
    transition: max-width 0.3s ease;
  }
}

#imageCaption {
  text-align: center;
  font-size: 0.9rem;
  color: #9ca3af;
  word-break: break-all;
  margin: 0;
  max-width: 300px;
}