.sidebar-notice-box {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 280px;
  background: rgba(26, 27, 38, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 2px solid var(--border);
  z-index: 150;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
}
.sidebar-notice-content {
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  text-align: center;
}
.sidebar-notice-title {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(125, 207, 255, 0.4);
  text-transform: uppercase;
  font-family: "Orbitron", "Poppins", sans-serif;
  line-height: 1.4;
}
.sidebar-notice-text {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 220px;
}

body {
  padding-left: 0 !important;
}
header {
  padding-left: 0 !important;
  width: 100% !important;
  margin-left: 0 !important;
  position: relative;
  background: rgba(26, 27, 38, 0) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 250;
}
header .container {
  max-width: 100% !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}
header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #7dcfff, #bb9af7, #7dcfff);
  box-shadow: 0 0 16px rgba(125, 207, 255, 0.55),
    0 0 24px rgba(187, 154, 247, 0.45);
  pointer-events: none;
}

footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid var(--border);
  padding: 20px 0;
  margin-top: 80px;
  color: var(--muted);
  font-size: 14px;
  background: rgba(26, 27, 38, 0.95);
  z-index: 150;
  width: 100%;
}
footer .container {
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 100%;
}
footer .row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
footer .tag {
  display: inline-block;
  background: #2b3045;
  color: var(--fg);
  border: 1px solid var(--border);
  padding: 2px 6px;
  border-radius: 999px;
  font-size: 12px;
}

.application-section {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 900;
  margin: 0 0 28px;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(125, 207, 255, 0.4);
  text-transform: uppercase;
  font-family: "Orbitron", "Poppins", sans-serif;
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 12px;
}

.section-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 22, 34, 0.6);
  border-radius: 12px;
  z-index: -1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.application-card {
  width: 100%;
  max-width: 900px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  position: relative;
  margin: 0 auto;
  text-align: left;
}

.application-intro {
  color: var(--fg);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 24px;
  text-align: left;
}

.application-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.application-list > li {
  color: var(--fg);
  font-size: 15px;
  line-height: 1.8;
  padding-left: 28px;
  position: relative;
}

.application-list > li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
}

.application-sublist {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.application-sublist li {
  padding-left: 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.application-sublist li strong {
  color: var(--accent-2);
  font-weight: 600;
}

.support-info {
  margin: 32px 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.support-info h3 {
  color: var(--accent-2);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 20px;
}

.support-goal {
  margin: 32px 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.support-goal h3 {
  color: var(--accent-2);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 16px;
}

.support-goal p {
  color: var(--fg);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.support-community {
  margin: 32px 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.support-community h3 {
  color: var(--accent-2);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 16px;
}

.support-community p {
  color: var(--fg);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 20px;
}

.support-legal {
  margin: 32px 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.support-legal h3 {
  color: var(--accent-2);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 16px;
}

.support-legal p {
  color: var(--fg);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.support-legal a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.support-legal a:hover {
  color: var(--accent-2);
  text-decoration: underline;
}

.support-transparency {
  margin: 32px 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.support-transparency h3 {
  color: var(--accent-2);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 16px;
}

.support-transparency p {
  color: var(--fg);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 12px;
}

.support-transparency .application-sublist li {
  padding-left: 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.support-transparency .application-sublist li a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.support-transparency .application-sublist li a:hover {
  color: var(--accent-2);
  text-decoration: underline;
}

.support-video-info {
  margin: 32px 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.support-video-info h3 {
  color: var(--accent-2);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 16px;
}

.support-video-info p {
  color: var(--fg);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.discord-join-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b0f16;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(125, 207, 255, 0.3);
}

.discord-join-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(125, 207, 255, 0.4);
}


.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copyright {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.footer-links a {
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-2);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-2);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-copyright {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 720px) {
  .section-title {
    font-size: 24px;
  }

  .application-card {
    padding: 24px 20px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    gap: 12px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-copyright {
    flex-direction: column;
    gap: 8px;
  }
}
footer a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
  margin: 0 4px;
}
footer a:hover {
  color: var(--accent-2);
}

.nav-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 0;
}
.brand-logo-center {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
}
.brand-logo-center .brand-logo-img {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.brand-logo-center .brand-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(125, 207, 255, 0.3));
}
.brand-center {
  text-align: center;
}
.brand-center .brand {
  font-family: "Orbitron", sans-serif;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 0.8px;
  background: linear-gradient(90deg, #bb9af7, #7dcfff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
}

body {
  background-image: url("img/bglogo.png");
  background-position: center center;
  background-repeat: no-repeat;
  overflow-x: hidden;
}
html {
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@keyframes bgFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}
main.container {
  padding-bottom: 20px;
}

.video-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.video-title {
  font-size: 36px;
  font-weight: 900;
  margin: 0 0 28px;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(125, 207, 255, 0.4);
  text-transform: uppercase;
  font-family: "Orbitron", "Poppins", sans-serif;
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 12px;
}
.video-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 22, 34, 0.6);
  border-radius: 12px;
  z-index: -1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.video-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.video-frame {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.player-box {
  position: relative;
  aspect-ratio: 16/9;
  max-height: calc(125vh - 200px);
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(125, 207, 255, 0.2),
    0 0 20px rgba(125, 207, 255, 0.15), 0 0 40px rgba(187, 154, 247, 0.1);
  overflow: hidden;
}
.player-box video {
  width: 100%;
  height: 100%;
  display: block;
  background: #0b0f16;
  object-fit: contain;
}
.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(
    closest-side,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0) 70%
  );
  border: none;
  cursor: pointer;
  z-index: 2;
}
.play-overlay:focus {
  outline: none;
}
.play-overlay .triangle {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    145deg,
    rgba(187, 154, 247, 0.35),
    rgba(125, 207, 255, 0.35)
  );
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 2px 12px rgba(255, 255, 255, 0.08),
    0 10px 30px rgba(0, 0, 0, 0.35);
  transform: scale(1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.play-overlay .triangle::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 22px solid #0b0f16;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.25));
}
.play-overlay .triangle::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 2px solid rgba(187, 154, 247, 0.35);
  opacity: 0;
  animation: pulseRing 1.4s ease-out infinite;
}
.play-overlay:hover .triangle {
  transform: scale(1.06);
  box-shadow: inset 0 2px 16px rgba(255, 255, 255, 0.1),
    0 14px 40px rgba(125, 207, 255, 0.25);
}
@keyframes pulseRing {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
.player-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: linear-gradient(
    180deg,
    rgba(10, 12, 20, 0) 0%,
    rgba(10, 12, 20, 0.65) 70%
  );
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 3;
}
.player-box:hover .player-controls,
.player-controls:focus-within {
  opacity: 1;
  transform: translateY(0);
}
.pc-btn {
  background: rgba(36, 40, 59, 0.75);
  color: var(--fg);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
}
.pc-btn:hover {
  background: rgba(44, 50, 74, 0.9);
  border-color: #3a4060;
}
.pc-time {
  color: var(--muted);
  font-size: 12px;
  padding: 0 4px;
  white-space: nowrap;
}
.pc-seek {
  flex: 1;
  min-width: 120px;
}
.pc-seek,
.pc-vol {
  appearance: none;
  height: 6px;
  background: #1e2336;
  border-radius: 999px;
  outline: none;
  border: 1px solid var(--border);
}
.pc-seek::-webkit-slider-thumb,
.pc-vol::-webkit-slider-thumb {
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-2);
  border: 1px solid #8a72d8;
  box-shadow: 0 0 0 3px rgba(187, 154, 247, 0.18);
  cursor: pointer;
}
.pc-seek::-moz-range-thumb,
.pc-vol::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-2);
  border: 1px solid #8a72d8;
  box-shadow: 0 0 0 3px rgba(187, 154, 247, 0.18);
  cursor: pointer;
}
@media (max-width: 720px) {
  .player-controls {
    flex-wrap: wrap;
    gap: 6px;
  }
  .pc-time {
    order: 5;
  }
}

.donation-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.donation-title {
  font-size: 36px;
  font-weight: 900;
  margin: 0 0 28px;
  text-align: center;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(125, 207, 255, 0.4);
  text-transform: uppercase;
  font-family: "Orbitron", "Poppins", sans-serif;
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 12px;
}
.donation-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 22, 34, 0.6);
  border-radius: 12px;
  z-index: -1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.donation-card {
  width: 100%;
  max-width: 650px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  position: relative;
}
.donation-card.offline {
  opacity: 0.6;
  pointer-events: none;
  user-select: none;
}
.offline-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 10;
  background: rgba(11, 15, 22, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 16px;
}
.offline-badge {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b0f16;
  font-size: 32px;
  font-weight: 900;
  padding: 16px 32px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(125, 207, 255, 0.4),
    0 0 0 4px rgba(11, 15, 22, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Orbitron", "Poppins", sans-serif;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(125, 207, 255, 0.4),
      0 0 0 4px rgba(11, 15, 22, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(125, 207, 255, 0.6),
      0 0 0 6px rgba(11, 15, 22, 0.4);
  }
}
.donation-controls {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.amount-display {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(20, 22, 34, 0.6);
  border-radius: 12px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.amount-display::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(125, 207, 255, 0.08),
    transparent
  );
  animation: shimmer 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}
.amount-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--fg);
  font-weight: 700;
  font-size: 32px;
  padding: 0;
  text-align: left;
  cursor: text;
  transition: all 0.3s ease;
  appearance: textfield;
  -moz-appearance: textfield;
}
.amount-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.amount-input::-webkit-outer-spin-button,
.amount-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.amount-input:focus {
  outline: none;
  color: var(--accent);
}
.currency-fixed {
  color: var(--muted);
  font-size: 24px;
  font-weight: 700;
  min-width: 40px;
  text-align: right;
}
.slider-wrap {
  position: relative;
  height: 12px;
  background: rgba(20, 22, 34, 0.6);
  border-radius: 999px;
  overflow: visible;
  padding: 0;
  margin: 0;
}
.slider-wrap input[type="range"] {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 12px;
  background: transparent;
  border-radius: 999px;
  outline: none;
  position: relative;
  z-index: 2;
  cursor: pointer;
  margin: 0;
  padding: 0;
}
.slider-wrap input[type="range"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.slider-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 4px 16px rgba(125, 207, 255, 0.4),
    0 0 0 4px rgba(11, 15, 22, 0.9);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  z-index: 3;
  margin-top: -6px;
}
.slider-wrap input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(125, 207, 255, 0.5),
    0 0 0 4px rgba(11, 15, 22, 0.9);
}
.slider-wrap input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 4px 16px rgba(125, 207, 255, 0.4),
    0 0 0 4px rgba(11, 15, 22, 0.9);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.slider-wrap input[type="range"]::-moz-range-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(125, 207, 255, 0.5),
    0 0 0 4px rgba(11, 15, 22, 0.9);
}
.slider-wrap input[type="range"]::-moz-range-track {
  height: 12px;
  background: rgba(20, 22, 34, 0.6);
  border-radius: 999px;
}
.range-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 12px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  pointer-events: none;
  z-index: 1;
  transition: none;
  will-change: width;
  box-shadow: 0 0 12px rgba(125, 207, 255, 0.3);
}
.donate-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.donate-btn {
  width: 100%;
  max-width: 400px;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b0f16;
  border: none;
  box-shadow: 0 8px 24px rgba(125, 207, 255, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transition: box-shadow 0.2s ease;
  cursor: pointer;
  position: relative;
  overflow: visible;
}
.donate-btn:hover {
  box-shadow: 0 8px 28px rgba(125, 207, 255, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}
.donate-btn:active {
  transform: scale(0.98);
}
.donate-btn,
.donate-btn * {
  position: relative;
  z-index: 1;
}
.payment-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.payment-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}
.payment-modal-content {
  position: relative;
  width: min(600px, 100%);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  overflow: hidden;
}
.payment-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}
.payment-modal-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}
.close-btn {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}
.close-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--fg);
}
.payment-modal-body {
  padding: 20px;
  overflow-y: auto;
}
.payment-summary {
  background: rgba(20, 22, 34, 0.6);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
}
.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.summary-label {
  color: var(--muted);
  font-size: 14px;
}
.summary-value {
  color: var(--fg);
  font-size: 20px;
  font-weight: 700;
}
.payment-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.payment-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.payment-form .field label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
.payment-form .field input {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.payment-form .field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(125, 207, 255, 0.15);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ssl-protection-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 8px;
  margin-top: 8px;
  margin-bottom: 8px;
  color: rgba(34, 197, 94, 0.9);
  font-size: 13px;
  line-height: 1.5;
  width: 100%;
  box-sizing: border-box;
}
.ssl-protection-notice svg {
  color: rgba(34, 197, 94, 0.9);
  flex-shrink: 0;
}
.ssl-protection-notice span {
  color: rgba(34, 197, 94, 0.9);
}
.payment-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.payment-actions .btn {
  flex: 1;
  padding: 10px 16px;
  font-weight: 600;
}
.payment-actions .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.pay-loader {
  display: inline-block;
}
.payment-error {
  margin-top: 12px;
  padding: 12px;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 8px;
  color: #dc3545;
  font-size: 14px;
  text-align: center;
}

.btn.primary {
  box-shadow: 0 4px 12px rgba(125, 207, 255, 0.15),
    0 0 8px rgba(187, 154, 247, 0.08);
}

.contact-invite {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-title {
  font-size: 36px;
  font-weight: 900;
  margin: 0 0 28px;
  text-align: center;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(125, 207, 255, 0.4);
  text-transform: uppercase;
  font-family: "Orbitron", "Poppins", sans-serif;
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 12px;
}
.contact-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 22, 34, 0.6);
  border-radius: 12px;
  z-index: -1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.contact-card {
  width: 100%;
  max-width: 650px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(125, 207, 255, 0.05),
    rgba(187, 154, 247, 0.05)
  );
  pointer-events: none;
}
.contact-info {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 24px;
  text-align: center;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: rgba(20, 22, 34, 0.6);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--fg);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.contact-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.contact-link:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(125, 207, 255, 0.2),
    0 0 0 1px rgba(125, 207, 255, 0.1) inset;
}
.contact-link:hover::before {
  opacity: 0.1;
}
.email-link:hover {
  box-shadow: 0 8px 24px rgba(125, 207, 255, 0.25),
    0 0 0 1px rgba(125, 207, 255, 0.15) inset;
}
.discord-link:hover {
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.25),
    0 0 0 1px rgba(88, 101, 242, 0.15) inset;
}
.contact-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(125, 207, 255, 0.1);
  border-radius: 10px;
  color: var(--accent);
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.contact-link:hover .contact-icon {
  background: rgba(125, 207, 255, 0.2);
  transform: scale(1.1);
  color: var(--accent);
}
.discord-link .contact-icon {
  background: rgba(88, 101, 242, 0.1);
  color: #5865f2;
}
.discord-link:hover .contact-icon {
  background: rgba(88, 101, 242, 0.2);
  color: #7289da;
}
.contact-link svg {
  width: 24px;
  height: 24px;
}
.contact-text {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  flex: 1;
}

@media (max-width: 720px) {
  .sidebar-notice-box {
    width: 100%;
    position: relative;
    height: auto;
    min-height: 200px;
  }
  body {
    padding-left: 0 !important;
  }
  .brand-center .brand {
    font-size: 22px;
  }
  .video-title {
    font-size: 20px;
  }
  .donation-content {
    max-width: 100%;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .payment-modal-content {
    width: 100%;
    max-height: 100vh;
    border-radius: 16px 16px 0 0;
  }
  .player-controls {
    flex-wrap: wrap !important;
    gap: clamp(4px, 1vw, 6px) !important;
    padding: clamp(6px, 1.5vw, 8px) !important;
  }
  .pc-seek {
    flex: 1 !important;
    min-width: clamp(60px, 15vw, 100px) !important;
    max-width: 100% !important;
    height: clamp(4px, 1vw, 6px) !important;
  }
  .pc-btn {
    padding: clamp(6px, 1.5vw, 8px) clamp(8px, 2vw, 10px) !important;
    font-size: clamp(11px, 2.8vw, 13px) !important;
    border-radius: clamp(8px, 2vw, 10px) !important;
    flex-shrink: 0 !important;
    min-width: clamp(36px, 9vw, 42px) !important;
    height: clamp(36px, 9vw, 42px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .pc-time {
    font-size: clamp(11px, 2.8vw, 13px) !important;
    padding: 0 clamp(4px, 1vw, 6px) !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    min-width: fit-content !important;
  }
  .pc-vol {
    height: clamp(5px, 1.2vw, 7px) !important;
    width: clamp(50px, 12vw, 70px) !important;
    flex-shrink: 0 !important;
  }
  .pc-seek::-webkit-slider-thumb,
  .pc-vol::-webkit-slider-thumb {
    width: clamp(10px, 2.5vw, 14px) !important;
    height: clamp(10px, 2.5vw, 14px) !important;
  }
  .play-overlay .triangle {
    width: clamp(56px, 14vw, 72px) !important;
    height: clamp(56px, 14vw, 72px) !important;
  }
  .play-overlay .triangle::before {
    border-left: clamp(16px, 4vw, 20px) solid #0b0f16 !important;
    border-top: clamp(10px, 2.5vw, 13px) solid transparent !important;
    border-bottom: clamp(10px, 2.5vw, 13px) solid transparent !important;
    margin-left: clamp(4px, 1vw, 6px) !important;
  }
}

@media (max-width: 480px) {
  .video-title {
    font-size: clamp(16px, 4vw, 20px) !important;
    padding: clamp(5px, 1.2vw, 7px) clamp(12px, 3vw, 18px) !important;
  }
  .player-box {
    border-radius: clamp(8px, 2vw, 12px) !important;
    max-height: calc(100vh - 150px) !important;
  }
  .player-controls {
    flex-wrap: wrap !important;
    gap: clamp(3px, 0.8vw, 5px) !important;
    padding: clamp(5px, 1.2vw, 7px) !important;
  }
  .pc-seek {
    flex: 1 !important;
    min-width: clamp(50px, 12vw, 80px) !important;
    max-width: 100% !important;
    height: clamp(3px, 0.8vw, 5px) !important;
  }
  .pc-btn {
    padding: clamp(5px, 1.2vw, 7px) clamp(7px, 1.8vw, 9px) !important;
    font-size: clamp(10px, 2.5vw, 12px) !important;
    border-radius: clamp(7px, 1.8vw, 9px) !important;
    min-width: clamp(32px, 8vw, 38px) !important;
    height: clamp(32px, 8vw, 38px) !important;
  }
  .pc-time {
    font-size: clamp(10px, 2.5vw, 12px) !important;
    padding: 0 clamp(3px, 0.8vw, 5px) !important;
  }
  .pc-vol {
    height: clamp(4px, 1vw, 6px) !important;
    width: clamp(45px, 11vw, 65px) !important;
  }
  .pc-seek::-webkit-slider-thumb,
  .pc-vol::-webkit-slider-thumb {
    width: clamp(9px, 2.2vw, 12px) !important;
    height: clamp(9px, 2.2vw, 12px) !important;
  }
  .play-overlay .triangle {
    width: clamp(48px, 12vw, 64px) !important;
    height: clamp(48px, 12vw, 64px) !important;
  }
  .play-overlay .triangle::before {
    border-left: clamp(14px, 3.5vw, 18px) solid #0b0f16 !important;
    border-top: clamp(9px, 2.2vw, 12px) solid transparent !important;
    border-bottom: clamp(9px, 2.2vw, 12px) solid transparent !important;
    margin-left: clamp(3px, 0.8vw, 5px) !important;
  }
}

@media (max-width: 360px) {
  .video-title {
    font-size: clamp(14px, 3.5vw, 18px) !important;
    padding: clamp(4px, 1vw, 6px) clamp(10px, 2.5vw, 16px) !important;
  }
  .player-box {
    border-radius: clamp(6px, 1.5vw, 10px) !important;
    max-height: calc(100vh - 140px) !important;
  }
  .player-controls {
    flex-wrap: wrap !important;
    gap: clamp(2px, 0.6vw, 4px) !important;
    padding: clamp(4px, 1vw, 6px) !important;
  }
  .pc-seek {
    flex: 1 !important;
    min-width: clamp(40px, 10vw, 70px) !important;
    max-width: 100% !important;
    height: clamp(3px, 0.8vw, 4px) !important;
  }
  .pc-btn {
    padding: clamp(4px, 1vw, 6px) clamp(6px, 1.5vw, 8px) !important;
    font-size: clamp(9px, 2.2vw, 11px) !important;
    border-radius: clamp(6px, 1.5vw, 8px) !important;
    min-width: clamp(30px, 7.5vw, 36px) !important;
    height: clamp(30px, 7.5vw, 36px) !important;
  }
  .pc-time {
    font-size: clamp(9px, 2.2vw, 11px) !important;
    padding: 0 clamp(2px, 0.6vw, 4px) !important;
  }
  .pc-vol {
    height: clamp(3px, 0.8vw, 5px) !important;
    width: clamp(40px, 10vw, 60px) !important;
  }
  .pc-seek::-webkit-slider-thumb,
  .pc-vol::-webkit-slider-thumb {
    width: clamp(8px, 2vw, 11px) !important;
    height: clamp(8px, 2vw, 11px) !important;
  }
  .play-overlay .triangle {
    width: clamp(40px, 10vw, 56px) !important;
    height: clamp(40px, 10vw, 56px) !important;
  }
  .play-overlay .triangle::before {
    border-left: clamp(12px, 3vw, 16px) solid #0b0f16 !important;
    border-top: clamp(7px, 1.8vw, 10px) solid transparent !important;
    border-bottom: clamp(7px, 1.8vw, 10px) solid transparent !important;
    margin-left: clamp(3px, 0.8vw, 4px) !important;
  }
}

@media (max-width: 320px) {
  .video-title {
    font-size: clamp(12px, 3vw, 16px) !important;
    padding: clamp(3px, 0.8vw, 5px) clamp(8px, 2vw, 14px) !important;
  }
  .player-box {
    border-radius: clamp(4px, 1.2vw, 8px) !important;
    max-height: calc(100vh - 130px) !important;
  }
  .player-controls {
    flex-wrap: wrap !important;
    gap: clamp(2px, 0.5vw, 3px) !important;
    padding: clamp(3px, 0.8vw, 5px) !important;
  }
  .pc-seek {
    flex: 1 !important;
    min-width: clamp(35px, 8vw, 60px) !important;
    max-width: 100% !important;
    height: clamp(2px, 0.6vw, 3px) !important;
  }
  .pc-btn {
    padding: clamp(3px, 0.8vw, 5px) clamp(5px, 1.2vw, 7px) !important;
    font-size: clamp(8px, 2vw, 10px) !important;
    border-radius: clamp(5px, 1.2vw, 7px) !important;
    min-width: clamp(28px, 7vw, 34px) !important;
    height: clamp(28px, 7vw, 34px) !important;
  }
  .pc-time {
    font-size: clamp(8px, 2vw, 10px) !important;
    padding: 0 clamp(2px, 0.5vw, 3px) !important;
  }
  .pc-vol {
    height: clamp(3px, 0.8vw, 4px) !important;
    width: clamp(35px, 8.5vw, 55px) !important;
  }
  .pc-seek::-webkit-slider-thumb,
  .pc-vol::-webkit-slider-thumb {
    width: clamp(7px, 1.8vw, 10px) !important;
    height: clamp(7px, 1.8vw, 10px) !important;
  }
  .play-overlay .triangle {
    width: clamp(36px, 9vw, 48px) !important;
    height: clamp(36px, 9vw, 48px) !important;
  }
  .play-overlay .triangle::before {
    border-left: clamp(10px, 2.5vw, 14px) solid #0b0f16 !important;
    border-top: clamp(6px, 1.5vw, 9px) solid transparent !important;
    border-bottom: clamp(6px, 1.5vw, 9px) solid transparent !important;
    margin-left: clamp(2px, 0.6vw, 3px) !important;
  }
}
