/*!*****************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./client/main.scss ***!
  \*****************************************************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap);
/*!*********************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./client/main.scss (1) ***!
  \*********************************************************************************************************************************************************/
:root {
  font-family: "Lato", sans-serif;
}

body,
html {
  height: 100%;
  width: 100%;
  overflow: hidden;
  margin: 0;
  background: linear-gradient(135deg, #1a1f2e 0%, #2a2f3e 25%, var(--primary-color) 50%, #252a38 75%, var(--secondary-color) 100%);
  color: var(--primary-text-color);
  font-family: "Montserrat", sans-serif;
}

#app {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: auto;
  scrollbar-width: none;
}
#app::-webkit-scrollbar {
  display: none;
}
#app.scrolled header {
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}

#background {
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

body.loading #main-header::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50%;
  height: 10px;
  z-index: 1;
  background-color: var(--button-color);
  animation: header-loading 1s infinite;
  transform-origin: right;
}
@keyframes header-loading {
  0% {
    transform: translateX(-100%) scaleX(0);
  }
  50% {
    transform: translateX(100%) scaleX(1);
  }
  100% {
    transform: translateX(100%) scaleX(0);
  }
}

header {
  top: 0;
  z-index: 10;
  display: flex;
  position: sticky;
  align-items: center;
  transition: all 1s ease-in-out;
}
header > .icon {
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
  border-radius: 4px;
}
header > .icon:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
header label[for=menu-toggler] {
  display: none;
}
@media screen and (max-width: 600px) {
  header label[for=menu-toggler] {
    display: flex;
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: center;
  }
  header nav:first-of-type a.logo .text {
    display: none;
  }
  header #menu-toggler ~ .mask {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0);
    transition: all 0.3s ease-in-out;
  }
  header #menu-toggler:checked ~ nav:nth-of-type(2) {
    transform: translateX(0);
  }
  header #menu-toggler:checked ~ .mask {
    pointer-events: all;
    background-color: rgba(0, 0, 0, 0.5);
  }
  header nav:nth-of-type(2) {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    width: 40%;
    min-width: 200px;
    max-width: 250px;
    height: 100vh;
    z-index: 1;
    background-color: var(--secondary-color);
    transition: all 0.3s ease-in-out;
  }
  header nav:nth-of-type(2) a {
    margin-left: 0;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
  }
}
header nav {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
header nav:last-of-type {
  margin-left: auto;
}
header nav a {
  color: var(--secondary-text-color);
  display: inline-flex;
  text-decoration: none;
  border-radius: 4px;
  height: 30px;
  padding: 0 10px;
  align-items: center;
  z-index: 1;
}
header nav a .icon {
  height: fit-content;
  width: fit-content;
  margin-right: 10px;
}
header nav a.play-button {
  justify-content: center;
  height: fit-content;
  width: 100%;
  padding: 0;
  margin: 0;
}
header nav a.logo {
  display: flex;
  align-items: center;
}
header nav a.logo img {
  height: 30px;
  margin-right: 10px;
}
header nav a.logo .text {
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 700;
}
header nav a:not(.logo):hover {
  background-color: rgba(0, 0, 0, 0.5);
}
header nav a.get-pro-btn {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 20px;
  padding: 0 14px;
  gap: 4px;
  margin-left: 6px;
  justify-content: center;
}
header nav a.get-pro-btn .icon {
  font-size: 0.9rem;
  margin: 0;
}
header nav a.get-pro-btn:hover {
  background: linear-gradient(135deg, #fbbf24, #fb923c);
}

main {
  width: 100%;
  min-height: 100%;
}
main:empty {
  position: relative;
  height: 100%;
}
main:empty::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "Loading...";
  display: block;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}
main::-webkit-scrollbar {
  width: 0;
}
main .error:only-child {
  width: 100%;
  margin: 40px 0;
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
}
main section {
  width: 90%;
  min-height: calc(100% - 40px);
  height: fit-content;
  max-width: 900px;
  margin: auto;
  padding: 20px 0;
  box-sizing: border-box;
}

img[src="#"] {
  display: none;
}

table {
  margin: 10px auto;
  width: 100%;
  max-width: 600px;
  border-radius: 4px;
  overflow: hidden;
  border-collapse: collapse;
}
table td,
table th,
table tr {
  border-spacing: 0;
}
table tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.5);
}
table tbody:only-child tr:nth-child(even):not(:last-child) {
  border-bottom: solid 1px rgba(255, 255, 255, 0.5);
}
table tbody:only-child tr:nth-child(even) {
  background-color: transparent;
  border-top: solid 1px rgba(255, 255, 255, 0.5);
}
table th {
  background-color: var(--secondary-color);
  color: var(--secondary-text-color);
  padding: 10px;
  text-align: left;
  width: fit-content;
}
table td {
  padding: 10px;
  text-align: left;
  width: 100%;
  border-collapse: collapse;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: auto;
}
form select,
form input {
  height: 40px;
  margin-bottom: 10px;
  padding: 0 10px;
}

select,
input,
button {
  height: 30px;
  border: none;
  border-radius: 4px;
}

input {
  padding: 0 10px;
}

button {
  border: none;
  background-color: var(--button-color);
  color: var(--button-text-color);
  height: 40px;
  border-radius: 20px;
  margin: auto;
  max-width: 200px;
  margin-top: 10px;
  padding: 0 20px;
  white-space: nowrap;
  cursor: pointer;
}
button:disabled, button.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
button:hover {
  background-color: var(--button-hover-color);
}
button.loading {
  background-color: var(--button-color);
  color: var(--button-text-color);
  animation: button-loading 1s infinite;
}
@keyframes button-loading {
  0% {
    background-color: var(--button-color);
    color: var(--button-text-color);
  }
  50% {
    background-color: var(--button-hover-color);
    color: var(--button-text-color);
  }
  100% {
    background-color: var(--button-color);
    color: var(--button-text-color);
  }
}

code {
  background-color: var(--code-bg-color);
  color: var(--secondary-text-color);
  border-radius: 4px;
  font-weight: lighter;
  padding: 0 5px;
  margin: 0 2px;
}
code[class*=language-] {
  display: block;
  border-radius: 0;
  font-size: 1rem;
  font-weight: normal;
  white-space: pre;
  word-wrap: normal;
  overflow: auto;
  max-width: 100%;
  padding: 10px;
}

.pagination {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.pagination .icon {
  background-color: transparent;
  font-size: 1em;
  margin: 0;
}

[role=button] {
  cursor: pointer;
  width: fit-content;
}

footer {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  border-top: 1px solid rgba(51, 153, 255, 0.15);
  position: relative;
  z-index: 0;
  padding: 60px 20px 40px;
  margin-top: 100px;
}
footer .footer-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  footer .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media screen and (max-width: 480px) {
  footer .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
footer .footer-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 480px) {
  footer .footer-section {
    align-items: center;
  }
}
footer .footer-section h4 {
  font-family: "Lexend", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 16px;
}
footer .footer-section.footer-brand .footer-description {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  max-width: 240px;
}
@media screen and (max-width: 480px) {
  footer .footer-section.footer-brand .footer-description {
    margin-left: auto;
    margin-right: auto;
  }
}
footer .footer-section.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  footer .footer-section.footer-brand .footer-logo {
    justify-content: center;
  }
}
footer .footer-section.footer-brand .footer-logo img {
  height: 24px;
}
footer .footer-section.footer-brand .footer-logo span {
  font-family: "Lexend", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #3399ff, #66b3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
footer .footer-section.footer-brand .footer-social {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  footer .footer-section.footer-brand .footer-social {
    justify-content: center;
  }
}
footer .footer-section.footer-brand .footer-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
footer .footer-section.footer-brand .footer-social a:hover {
  background: rgba(51, 153, 255, 0.1);
  border-color: rgba(51, 153, 255, 0.4);
  color: #3399ff;
  transform: translateY(-2px);
}
footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  margin: 0;
}
footer .footer-links a:hover {
  color: #fff;
  padding-left: 2px;
}
footer .digitalocean-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.8rem;
  margin: 0;
}
footer .digitalocean-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
footer .digitalocean-badge img {
  opacity: 0.8;
}
footer .digitalocean-badge span {
  font-weight: 500;
}
footer .footer-bottom {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  footer .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding-top: 24px;
  }
}
footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  margin: 0;
}

.text-center {
  text-align: center;
}
/*!*******************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./client/common.scss ***!
  \*******************************************************************************************************************************************************/
/** contains common classes */
a,
.link,
.error:not(:empty),
.success:not(:empty) {
  font-size: 14px;
  margin: 10px auto;
  display: inline-block;
}

.error:not(:empty) {
  color: var(--error-color);
}

.success:not(:empty) {
  color: var(--success-color);
}

.danger {
  background-color: var(--danger-color) !important;
  color: var(--danger-text-color) !important;
}

.primary {
  background-color: var(--button-color) !important;
  color: var(--button-text-color) !important;
}

a,
.link {
  color: var(--button-color);
  text-decoration: underline;
  cursor: pointer;
}

.link:last-child {
  margin-top: 10px;
}

.row {
  display: flex;
  flex-direction: row;
}

.row > * {
  flex: 1;
}

.icon.danger {
  background-color: transparent !important;
  color: var(--danger-color) !important;
}
.icon.primary {
  background-color: transparent !important;
  color: var(--button-color) !important;
}

.icon-buttons {
  display: flex;
  justify-content: space-around;
  max-width: 200px;
  margin: auto;
}
.icon-buttons .icon {
  text-decoration: none !important;
  display: inline-flex;
  cursor: pointer;
  height: 30px;
  width: 30px;
  align-items: center;
  justify-content: center;
}
.icon-buttons .icon:hover {
  background-color: rgba(0, 0, 0, 0.1) !important;
  border-radius: 50%;
}

.md h1,
.md h2,
.md h3,
.md h4,
.md h5,
.md h6 {
  text-align: left;
}
.md img {
  max-width: 80vw;
  max-height: 60vh;
}

.chips {
  display: flex;
  margin: 10px 0;
}
.chips .chip {
  margin: 0 10px !important;
}

.chip {
  flex-shrink: 0;
  display: flex;
  height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 15px;
  background-color: rgba(0, 0, 0, 0.486);
  margin: 10px 10px 0 0;
  -webkit-user-select: none;
          user-select: none;
}
.chip .icon,
.chip img {
  margin: 0 10px 0 0;
}
.chip img {
  height: 20px;
}

.table-wrapper {
  width: 100%;
  overflow: auto;
}
/*!***************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./client/res/icons/style.css ***!
  \***************************************************************************************************************************************************************/
@font-face {
  font-family: "acode";
  src: url(/acode.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "acode" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon.bullhorn:before {
  content: "\e910";
}

.icon.megaphone:before {
  content: "\e910";
}

.icon.announcement:before {
  content: "\e910";
}

.icon.advertisement:before {
  content: "\e910";
}

.icon.news:before {
  content: "\e910";
}

.icon.mail:before {
  content: "\e902";
}

.icon.earth:before {
  content: "\e900";
}

.icon.code-fork:before {
  content: "\e911";
}

.icon.certificate:before {
  content: "\e90d";
}

.icon.googleplay:before {
  content: "\e90f";
  color: #607d8b;
}

.icon.f-droid:before {
  content: "\e90e";
  color: #1976d2;
}

.icon.bitcoin:before {
  content: "\e90c";
  color: #f7931a;
}

.icon.github:before {
  content: "\e901";
}

.icon.paypal:before {
  content: "\e905";
  color: #00457c;
}

.icon.attach_money:before {
  content: "\e912";
}

.icon.credit_card:before {
  content: "\e913";
}

.icon.payment:before {
  content: "\e913";
}

.icon.info:before {
  content: "\e914";
}

.icon.published_with_changes:before {
  content: "\e915";
}

.icon.color_lens:before {
  content: "\e916";
}

.icon.palette:before {
  content: "\e916";
}

.icon.check_circle:before {
  content: "\e917";
}

.icon.navigate_next:before {
  content: "\e90a";
}

.icon.navigate_before:before {
  content: "\e90b";
}

.icon.chevron_left:before {
  content: "\e90b";
}

.icon.verified:before {
  content: "\e909";
}

.icon.star_outline:before {
  content: "\e906";
}

.icon.star:before {
  content: "\e907";
}

.icon.favorite:before {
  content: "\e908";
}

.icon.account_balance:before {
  content: "\e904";
}

.icon.warning:before {
  content: "\e903";
}

.icon.chat_bubble:before {
  content: "\e96d";
}

.icon.add:before {
  content: "\e992";
}

.icon.clear:before {
  content: "\e999";
}

.icon.content_copy:before {
  content: "\e99a";
}

.icon.create:before {
  content: "\e99d";
}

.icon.flag:before {
  content: "\e9a0";
}

.icon.report:before {
  content: "\e9ab";
}

.icon.outlined_flag:before {
  content: "\e9b9";
}

.icon.access_time:before {
  content: "\e9c7";
}

.icon.publish:before {
  content: "\ea26";
}

.icon.download:before {
  content: "\ea46";
}

.icon.menu:before {
  content: "\eb58";
}

.icon.refresh:before {
  content: "\eb5b";
}

.icon.person:before {
  content: "\ebad";
}

.icon.share:before {
  content: "\ebb3";
}

.icon.delete:before {
  content: "\ebe1";
}

.icon.done:before {
  content: "\ebe4";
}

.icon.done_all:before {
  content: "\ebe5";
}

.icon.thumb_down:before {
  content: "\ec34";
}

.icon.thumb_up:before {
  content: "\ec35";
}

.icon.logout:before {
  content: "\ece8";
}

.icon.thumb_down_alt:before {
  content: "\ed07";
}

.icon.thumb_up_alt:before {
  content: "\ed08";
}
/*!************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./client/components/announcementBanner/style.scss ***!
  \************************************************************************************************************************************************************************************/
.announcement-banner {
  z-index: 100;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  width: 100%;
  padding: 12px 50px 12px 20px;
  box-sizing: border-box;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #1a1a2e 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.5s ease, background-size 0.3s ease;
}
.announcement-banner[data-visible=true] + header {
  top: 60px;
}
.announcement-banner--hangingpiece {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 25%, #1e3a2f 50%, #1a1a1a 100%);
}
.announcement-banner--hangingpiece .announcement-banner__new-badge {
  background: #009966;
  box-shadow: 0 2px 10px rgba(0, 153, 102, 0.4);
}
.announcement-banner--hangingpiece .announcement-banner__cta {
  background: #009966;
  box-shadow: 0 4px 15px rgba(0, 153, 102, 0.3);
}
.announcement-banner--hangingpiece .announcement-banner__logo-wrapper {
  background: rgba(0, 153, 102, 0.15);
}
.announcement-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  animation: shimmer 3s infinite;
}
.announcement-banner:hover {
  background-size: 250% 250%;
}
.announcement-banner:hover .announcement-banner__cta {
  transform: translateX(5px);
}
.announcement-banner:hover .announcement-banner__arrow {
  transform: translateX(3px);
}
.announcement-banner.hidden {
  display: none;
}
.announcement-banner__close {
  position: absolute;
  right: 12px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  padding: 0;
}
.announcement-banner__close .icon {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.announcement-banner__close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.announcement-banner__close:hover .icon {
  color: #fff;
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes slideOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-30px);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.announcement-banner__content {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.announcement-banner__content.slide-out {
  animation: slideOutLeft 0.3s ease forwards;
}
.announcement-banner__content.slide-in {
  animation: slideInRight 0.3s ease forwards;
}
.announcement-banner__content {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1200px;
  z-index: 1;
}
.announcement-banner__logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.announcement-banner__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}
.announcement-banner__text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.announcement-banner__new-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: linear-gradient(135deg, #e94560, #ff6b6b);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(233, 69, 96, 0.4);
}
.announcement-banner__title {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.announcement-banner__subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 400;
}
.announcement-banner__cta {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #00d2d3, #54a0ff);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 210, 211, 0.3);
  white-space: nowrap;
}
.announcement-banner__cta-text {
  letter-spacing: 0.5px;
}
.announcement-banner__arrow {
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.announcement-banner__indicators {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.announcement-banner__indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}
.announcement-banner__indicator.active {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.2);
}
@media screen and (max-width: 768px) {
  .announcement-banner {
    padding: 10px 16px;
  }
  .announcement-banner[data-visible=true] + header {
    top: 50px;
  }
  .announcement-banner__content {
    gap: 12px;
  }
  .announcement-banner__logo-wrapper {
    width: 32px;
    height: 32px;
  }
  .announcement-banner__logo {
    width: 24px;
    height: 24px;
  }
  .announcement-banner__text {
    gap: 8px;
  }
  .announcement-banner__new-badge {
    padding: 3px 8px;
    font-size: 0.6rem;
  }
  .announcement-banner__title {
    font-size: 0.85rem;
  }
  .announcement-banner__subtitle {
    display: none;
  }
  .announcement-banner__cta {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 480px) {
  .announcement-banner {
    padding: 8px 12px;
  }
  .announcement-banner__content {
    gap: 8px;
  }
  .announcement-banner__logo-wrapper {
    width: 28px;
    height: 28px;
    padding: 3px;
  }
  .announcement-banner__logo {
    width: 100%;
    height: 100%;
  }
  .announcement-banner__new-badge {
    display: none;
  }
  .announcement-banner__title {
    font-size: 0.8rem;
  }
  .announcement-banner__cta {
    padding: 5px 10px;
    font-size: 0.7rem;
    gap: 4px;
  }
  .announcement-banner__arrow {
    font-size: 0.85rem;
  }
}
