@import url("https://fonts.googleapis[class~="com"]/css2?family=Poppins:wght@500&family=Montserrat:wght@600&display=swap'");
[class~="hidden"] {
  display: none;
}
body {
  font-family: "Roboto", sans-serif;
  margin: 1.25rem;
  padding: 0;
  transition:
    background 0.3s,
    color 0.3s;
}
[class~="dark-mode"] {
  background: linear-gradient(135deg, #1c1f3b 0%, #303a66 100%);
  color: #c8d1dc;
}
[class~="light-mode"] {
  background: linear-gradient(135deg, #eef5fa, #d9e6f2);
  color: #2c3e50;
}
[class~="header"] {
  text-align: center;
  margin-bottom: 1.25rem;
}
[class~="logo-container"] {
  margin-bottom: 0.625rem;
}
[class~="logo"] {
  width: 3.125rem;
  height: auto;
}
[class~="page-title"] {
  font-size: 1.8rem;
  margin: 0;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}
[class~="page-title"] svg {
  margin-left: 0rem;
}
[class~="page-title"]:hover svg {
  fill: red;
}
h1 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow:
    0 0 0.3125rem #ffffff,
    0 0 0.9375rem #00ffff,
    0 0 1.5625rem #00ffff;
  animation: glitch 1.5s infinite alternate;
}
@keyframes glitch {
  0% {
    text-shadow:
      0.125rem 0.125rem 0rem #ff00ff,
      -0.125rem -0.125rem 0rem #00ffff;
  }
  50% {
    text-shadow:
      -0.125rem -0.125rem 0rem #ff00ff,
      0.125rem 0.125rem 0rem #00ffff;
  }
  100% {
    text-shadow:
      0.125rem 0.125rem 0rem #ff00ff,
      -0.125rem -0.125rem 0rem #00ffff;
  }
}
@keyframes changeColor {
  0% {
    fill: #dac5c5d1;
  }
  35% {
    fill: #e9a5a5a1;
  }
  50% {
    fill: #f97171c1;
  }
  100% {
    fill: #ff2828c5;
  }
}
[class~="page-title"] svg path {
  animation: changeColor 1.5s infinite alternate;
}
[class~="page-title"] i {
  margin-right: 0.5rem;
}
[class~="page-subtitle"] {
  font-size: 0.8rem;
  margin-top: 0.9375rem;
  color: inherit;
  align-items: center;
  justify-content: center;
}
[class~="theme-toggle"] {
  padding: 0.375rem 0.75rem;
  margin-top: 0.625rem;
  font-size: 0.8rem;
  cursor: pointer;
  border: 0.0625rem solid #3e5367;
  border-radius: 0.25rem;
  background: transparent;
  color: inherit;
  display: inline-flex;
  align-items: center;
  transition:
    background 0.2s ease,
    border 0.2s ease;
}
[class~="devs-button"] {
  padding: 0.375rem 0.75rem;
  margin-top: 0.625rem;
  font-size: 0.8rem;
  cursor: pointer;
  border: 0.0625rem solid #3e5367;
  border-radius: 0.25rem;
  background: transparent;
  color: inherit;
  display: inline-flex;
  align-items: center;
}
[class~="theme-toggle"]:hover {
  background: rgba(100, 150, 200, 0.15);
  border-color: #669bbc;
}
[class~="theme-toggle"] i {
  margin-right: 0.375rem;
}
[class~="category-section"] {
  text-align: center;
  margin: 0.9375rem 0;
}
[class~="category-label"] {
  font-size: 0.9rem;
  margin-right: 0.5rem;
}
[class~="category-label"] i {
  margin-right: 0.25rem;
}
[class~="category-select"] {
  padding: 0.375rem 0.625rem;
  font-size: 0.9rem;
  border: 0.0625rem solid #5c7a99;
  border-radius: 0.25rem;
  background: inherit;
  color: inherit;
  transition: border 0.2s ease;
}
[class~="category-select"]:hover {
  border-color: #87aacc;
}
#api-container {
  max-width: 50rem;
  margin: 0 auto;
}
[class~="section"] {
  border: 0.0625rem solid #324a5f;
  border-radius: 0.3125rem;
  padding: 0.75rem 1.125rem;
  margin-bottom: 0.9375rem;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.3);
}
[class~="category-title"] {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #66a3d2;
  font-family: "Poppins", sans-serif;
}

.announcement-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.announcement-popup.show {
  opacity: 1;
  visibility: visible;
}

.announcement-content {
  background-color: var(--bg-color, #ffffff);
  color: var(--text-color, #333333);
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #09f;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.announcement-popup.show .announcement-content {
  transform: scale(1);
}

.announcement-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}

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

.announcement-body {
  padding: 20px;
}

.announcement-body p {
  margin-top: 0;
  line-height: 1.5;
}

.announcement-body ul {
  margin-bottom: 20px;
}

.announcement-body li {
  margin-bottom: 8px;
  line-height: 1.4;
}

.announcement-body code {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 2px 5px;
  border-radius: 4px;
  font-family: monospace;
}

.close-button {
  background-color: #f44336;
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.close-button:hover {
  background-color: #d32f2f;
  transform: scale(1.1);
}

.close-button i {
  font-size: 1rem;
}

.announcement-footer {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.hide-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.9rem;
}

.hide-checkbox input {
  margin-right: 8px;
}

/* Pulse animation for the close button */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(244, 67, 54, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(244, 67, 54, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244, 67, 54, 0);
  }
}

.announcement-popup.show .close-button {
  animation: pulse 2s infinite;
}

/* Dark mode adjustments */
.dark-mode .announcement-content {
  background-color: #222;
  color: #eee;
  border-left: 5px solid #09f;
}

.dark-mode .announcement-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-mode .announcement-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-mode .announcement-body code {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Entry animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.announcement-popup.show .announcement-content {
  animation: fadeInUp 0.4s ease-out;
}

[class~="card"] {
  border: 0.0625rem solid #506a87;
  border-radius: 0.3125rem;
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border 0.2s ease;
}
[class~="card"]:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #7faed8;
}
[class~="card-header"] {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
[class~="card-title"] {
  font-size: 1rem;
  font-weight: 500;
}
[class~="card-title"] i {
  margin-right: 0.25rem;
}
[class~="method-label"] {
  background: #66a3d2;
  color: #1e1e1e;
  padding: 0.1875rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  cursor: pointer;
}
[class~="card-description"] {
  font-size: 0.85rem;
  margin: 0.375rem 0;
  line-height: 1.5;
}
[class~="try-api-button"],
[class~="view-endpoint-button"],
[class~="toggle-schema-button"] {
  margin: 0.375rem 0.25rem 0.375rem 0;
  padding: 0.3125rem 0.625rem;
  font-size: 0.8rem;
  cursor: pointer;
  border: 0.0625rem solid #66a3d2;
  border-radius: 0.25rem;
  background: transparent;
  color: inherit;
  transition:
    background 0.2s ease,
    border 0.2s ease;
}
[class~="try-api-button"]:hover,
[class~="view-endpoint-button"]:hover,
[class~="toggle-schema-button"]:hover {
  background: rgba(102, 163, 210, 0.2);
  border-color: #87c2e5;
}
[class~="response-schema"],
[class~="response-box"] {
  font-family: monospace;
  font-size: 0.8rem;
  background: #1c2b3a;
  padding: 0.625rem;
  border-radius: 0.25rem;
  overflow-x: auto;
  margin-top: 0.375rem;
  max-width: 100%;
  white-space: pre-wrap;
}
[class~="response-schema"] {
  background: linear-gradient(90deg, #c5a3ff, #87e8de, #a1cf6b, #f7d86c);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  animation: gradientShift 5s infinite linear;
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
[class~="response-box"] {
  color: #c8d4e0;
}
[class~="error"] {
  color: #ff7070;
  font-weight: bold;
}
[class~="footer"] {
  text-align: center;
  font-size: 0.8rem;
  margin-top: 1.875rem;
}
[class~="overlay"] {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(20, 30, 40, 0.95);
  padding: 0.625rem 0;
  text-align: center;
  z-index: 100;
  transition: opacity 0.5s ease;
  opacity: 1;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
[class~="fade-in"] {
  animation: fadeIn 0.5s ease forwards;
}
.overlay[class~="hidden"] {
  opacity: 0;
  pointer-events: none;
}
[class~="overlay"] iframe {
  width: 90%;
  max-width: 37.5rem;
  height: 2.5rem;
  border: none;
}
[class~="overlay-close"] {
  position: absolute;
  top: 0.125rem;
  right: 0.125rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.125rem;
  cursor: pointer;
}
