@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #304050;
  background: #ffffff;
  min-height: 100vh;
}

main {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 600;
  line-height: 1.25;
}

p {
  margin: 0;
}

a {
  color: #e86197;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #d64d86;
  text-decoration: underline;
}

button {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  overflow: visible;
  text-transform: none;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=url],
input[type=search],
textarea,
select {
  width: 100%;
  padding: 8px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.5;
  transition: all 250ms ease-in-out;
  background: #ffffff;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=search]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #e86197;
  box-shadow: 0 0 0 3px rgba(232, 97, 151, 0.1);
}
input[type=text]:disabled,
input[type=email]:disabled,
input[type=password]:disabled,
input[type=tel]:disabled,
input[type=url]:disabled,
input[type=search]:disabled,
textarea:disabled,
select:disabled {
  background: #f5f5f5;
  cursor: not-allowed;
}

textarea {
  overflow: auto;
  resize: vertical;
  min-height: 100px;
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

img {
  border-style: none;
  max-width: 100%;
  height: auto;
}

svg {
  overflow: hidden;
  vertical-align: middle;
  fill: currentColor;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

blockquote {
  margin: 0;
  padding: 0;
}

pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid #e0e0e0;
  margin: 16px 0;
}

[hidden] {
  display: none;
}

:focus-visible {
  outline: 2px solid #e86197;
  outline-offset: 2px;
}

h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  h4 {
    font-size: 18px;
  }
}

h5 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

h6 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

p {
  margin-bottom: 16px;
  line-height: 1.5;
}
p:last-child {
  margin-bottom: 0;
}

small {
  font-size: 14px;
  color: #808080;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

.text-primary {
  color: #e86197;
}

.text-secondary {
  color: #808080;
}

.text-muted {
  color: #757575;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.loading, .main__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.loading::after, .main__loading::after {
  content: "";
  width: 40px;
  height: 40px;
  border: 4px solid #eeeeee;
  border-top-color: #e86197;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.loading--full::after {
  width: 64px;
  height: 64px;
  border-width: 5px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.error {
  color: #F44336;
  padding: 16px;
  background: rgba(244, 67, 54, 0.1);
  border-radius: 4px;
  margin-bottom: 16px;
}

.success {
  color: #4CAF50;
  padding: 16px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 4px;
  margin-bottom: 16px;
}

.hidden {
  display: none !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.positioned {
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .positioned {
    margin-top: 16px;
    margin: 0 16px;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 1020;
  height: 60px;
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 24px;
}
@media (max-width: 767px) {
  .header__container {
    padding: 0 16px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #e86197;
  font-size: 20px;
  font-weight: 700;
}
.header__logo img {
  height: 32px;
  width: auto;
}
@media (max-width: 767px) {
  .header__logo {
    font-size: 18px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__user {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__username {
  font-size: 14px;
  color: #304050;
  font-weight: 500;
}
.header__logout {
  background: transparent;
  border: none;
  color: #304050;
  font-size: 14px;
  padding: 4px 16px;
  cursor: pointer;
  transition: opacity 250ms ease-in-out;
}
.header__logout:hover {
  opacity: 0.7;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__hamburger {
  display: none;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}
@media (max-width: 767px) {
  .header__hamburger {
    display: flex;
  }
}
.header__hamburger:hover {
  background: #f5f5f5;
  border-radius: 4px;
}
.header__hamburger:active {
  transform: scale(0.95);
}
.header__hamburger-line {
  width: 24px;
  height: 2px;
  background: #304050;
  border-radius: 1px;
  transition: all 250ms ease-in-out;
}
.header__mobile-toggle {
  display: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #304050;
}
@media (max-width: 767px) {
  .header__mobile-toggle {
    display: flex;
  }
}
.header__mobile-toggle svg {
  width: 24px;
  height: 24px;
}
.header__signup-btn {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: 1030;
  padding: 16px;
  overflow-y: auto;
}
@media (max-width: 767px) {
  .mobile-nav--open {
    display: block;
  }
}
.mobile-nav__item {
  display: block;
  padding: 16px;
  color: #304050;
  text-decoration: none;
  border-bottom: 1px solid #e0e0e0;
  transition: background 250ms ease-in-out;
}
.mobile-nav__item:hover {
  background: #fafafa;
}

.footer {
  background: #242424;
  color: #ffffff;
  padding: 0;
  margin-top: auto;
  position: relative;
  padding-bottom: 40px;
}
.footer__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  padding: 48px 0;
}
@media (min-width: 576px) {
  .footer__container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .footer__container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .footer__container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .footer__container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .footer__container {
    max-width: 1320px;
  }
}
.footer__content {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-bottom: 32px;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer__content {
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .footer__content {
    flex-direction: column;
    gap: 24px;
  }
}
.footer__section-title {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
  color: #ffffff;
}
.footer__section-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__section-link {
  color: #7DA1E8;
  text-decoration: underline;
  font-size: 14px;
  transition: color 250ms ease-in-out;
}
.footer__section-link:hover {
  color: #a8c0f0;
}
.footer__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 0;
  background: #000000;
  text-align: center;
  width: 100%;
}
.footer__bottom-text {
  font-size: 14px;
  color: #BABABA;
  margin: 0;
}
.footer__bottom-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}
.footer__bottom-links a {
  color: #7DA1E8;
  font-size: 14px;
  text-decoration: underline;
  transition: color 250ms ease-in-out;
}
.footer__bottom-links a:hover {
  color: #a8c0f0;
}
.footer__social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #424242;
  border-radius: 9999px;
  color: #bdbdbd;
  transition: all 250ms ease-in-out;
}
.footer__social-link:hover {
  background: #e86197;
  color: #ffffff;
}
.footer__social-link svg {
  width: 16px;
  height: 16px;
}

.sidebar {
  width: 210px;
  flex-shrink: 0;
  transition: transform 250ms ease-in-out;
}
@media (max-width: 767px) {
  .sidebar {
    position: fixed;
    top: 60px;
    right: 0;
    height: calc(100vh - 60px);
    width: 280px;
    transform: translateX(100%);
    z-index: 1000;
    overflow-y: auto;
  }
  .sidebar--open {
    transform: translateX(0);
    animation: slideInFromRight 250ms ease-in-out;
  }
}
.sidebar--home {
  background: #f5f5f5;
  padding: 24px 16px;
}
.sidebar__section {
  margin-bottom: 24px;
}
.sidebar__section-title {
  font-size: 14px;
  color: #e86197;
  margin-bottom: 8px;
  padding-left: 4px;
}
.sidebar__points-value {
  font-size: 18px;
  font-weight: 700;
  color: #304050;
  text-align: right;
  padding: 8px 16px;
  background: #ffffff;
  margin-bottom: 4px;
}
.sidebar__consumption-item {
  padding: 8px 16px;
  background: #ffffff;
  margin-bottom: 4px;
  border-left: 2px solid #e86197;
  font-size: 12px;
}
.sidebar__consumption-item:last-child {
  margin-bottom: 0;
}
.sidebar__consumption-name {
  color: #e86197;
  display: block;
  margin-bottom: 4px;
}
.sidebar__consumption-price {
  color: #304050;
  font-weight: 500;
  text-align: right;
  display: block;
}
.sidebar__consumption-price--free {
  color: #304050;
}
.sidebar__charge-button {
  margin-top: 16px;
  margin-bottom: 24px;
  padding: 8px 24px !important;
}
.sidebar__banners {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sidebar__banner {
  display: block;
  border-radius: 8px;
  overflow: hidden;
}
.sidebar__banner img {
  width: 100%;
  height: auto;
  display: block;
}

.main {
  flex: 1;
  display: flex;
}
@media (max-width: 767px) {
  .main {
    flex-direction: column;
  }
}
.main__container {
  flex: 1;
  padding: 24px;
  background: #fafafa;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #bdbdbd #f5f5f5;
}
.main__container::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.main__container::-webkit-scrollbar-track {
  background: #f5f5f5;
}
.main__container::-webkit-scrollbar-thumb {
  background: #bdbdbd;
  border-radius: 9999px;
}
.main__container::-webkit-scrollbar-thumb:hover {
  background: #9e9e9e;
}
@media (max-width: 767px) {
  .main__container {
    padding: 16px;
  }
}
.main__container--with-sidebar {
  display: flex;
  gap: 0;
  background: #FFF5F9;
  padding: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .main__container--with-sidebar {
    flex-direction: column;
  }
}
.main__content {
  flex: 1;
  min-width: 0;
  padding: 24px;
  box-sizing: border-box;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  .main__content {
    padding: 16px;
    width: 100%;
  }
}
.main__header {
  margin-bottom: 24px;
}
.main__header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.main__header-title {
  font-size: 24px;
  font-weight: 700;
  color: #304050;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .main__header-title {
    font-size: 20px;
  }
}
.main__header-stats {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #808080;
  font-size: 14px;
}
.main__header-stats .badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  background: #f4b5d0;
  color: #c94577;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  font-size: 12px;
}
.main__header-controls {
  display: flex;
  gap: 16px;
  align-items: center;
}
@media (max-width: 767px) {
  .main__header-controls {
    flex-wrap: wrap;
    gap: 8px;
  }
}
.main__filters {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: #bdbdbd #f5f5f5;
}
.main__filters::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.main__filters::-webkit-scrollbar-track {
  background: #f5f5f5;
}
.main__filters::-webkit-scrollbar-thumb {
  background: #bdbdbd;
  border-radius: 9999px;
}
.main__filters::-webkit-scrollbar-thumb:hover {
  background: #9e9e9e;
}
@media (max-width: 767px) {
  .main__filters {
    gap: 8px;
  }
}
.main__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 64px 24px;
  text-align: center;
}
.main__empty-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
  color: #bdbdbd;
}
.main__empty-text {
  color: #808080;
  margin-bottom: 24px;
}
.main__loading {
  min-height: 400px;
}
.main--full {
  width: 100%;
  max-width: none;
  padding: 0;
}

.page--centered {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.page--auth {
  background: linear-gradient(135deg, #f4b5d0 0%, #e86197 100%);
}
.page--auth .auth-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 16px;
  transition: box-shadow 250ms ease-in-out;
  width: 100%;
  max-width: 400px;
  padding: 32px;
}
.page--auth .auth-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.page--streaming {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  height: calc(100vh - 60px);
  padding: 24px;
}
@media (max-width: 767px) {
  .page--streaming {
    grid-template-columns: 1fr;
    height: auto;
  }
}

.grid {
  display: grid;
  gap: 16px;
}
.grid--cards {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
@media (max-width: 767px) {
  .grid--cards {
    grid-template-columns: 1fr;
  }
}
.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .grid--2-cols {
    grid-template-columns: 1fr;
  }
}
.grid--3-cols, .grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 768px) and (max-width: 991px) {
  .grid--3-cols, .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .grid--3-cols, .grid--3 {
    grid-template-columns: 1fr;
  }
}
.grid--4-cols {
  grid-template-columns: repeat(4, 1fr);
}
@media (min-width: 992px) {
  .grid--4-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .grid--4-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .grid--4-cols {
    grid-template-columns: 1fr;
  }
}
.grid--with-sidebar {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: calc(100vh - 60px);
}
@media (max-width: 767px) {
  .grid--with-sidebar {
    grid-template-columns: 1fr;
  }
}
.grid--auto-fit {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.grid--masonry {
  column-count: 4;
  column-gap: 16px;
}
@media (min-width: 992px) {
  .grid--masonry {
    column-count: 3;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .grid--masonry {
    column-count: 2;
  }
}
@media (max-width: 767px) {
  .grid--masonry {
    column-count: 1;
  }
}
.grid--masonry > * {
  break-inside: avoid;
  margin-bottom: 16px;
}
.grid--split-view {
  display: flex;
  gap: 24px;
  padding: 24px 32px;
  width: 100%;
  box-sizing: border-box;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .grid--split-view {
    flex-direction: column;
    padding: 0;
    gap: 0;
  }
}
.grid--asymmetric {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .grid--asymmetric {
    grid-template-columns: 1fr;
  }
}
.grid--main-aside {
  display: flex;
  gap: 24px;
  padding: 24px 32px;
  width: 100%;
  box-sizing: border-box;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .grid--main-aside {
    flex-direction: column;
    padding: 0;
    gap: 0;
  }
}

.flex-grid {
  display: flex;
  flex-wrap: wrap;
  margin: -8px;
}
.flex-grid__item {
  padding: 8px;
}
.flex-grid__item--full {
  flex: 0 0 100%;
}
.flex-grid__item--half {
  flex: 0 0 50%;
}
@media (max-width: 767px) {
  .flex-grid__item--half {
    flex: 0 0 100%;
  }
}
.flex-grid__item--third {
  flex: 0 0 33.333333%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .flex-grid__item--third {
    flex: 0 0 50%;
  }
}
@media (max-width: 767px) {
  .flex-grid__item--third {
    flex: 0 0 100%;
  }
}
.flex-grid__item--quarter {
  flex: 0 0 25%;
}
@media (min-width: 992px) {
  .flex-grid__item--quarter {
    flex: 0 0 33.333333%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .flex-grid__item--quarter {
    flex: 0 0 50%;
  }
}
@media (max-width: 767px) {
  .flex-grid__item--quarter {
    flex: 0 0 100%;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 16px;
  border: none;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #304050;
  cursor: pointer;
  transition: all 250ms ease-in-out;
  text-decoration: none;
  white-space: nowrap;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn--primary {
  background: #e86197;
  color: #ffffff;
}
.btn--primary:hover:not(:disabled) {
  background: #d64d86;
}
.btn--primary:active {
  background: #c94577;
}
.btn--secondary {
  background: #bdbdbd;
  color: #ffffff;
}
.btn--secondary:hover:not(:disabled) {
  background: #9e9e9e;
}
.btn--outline {
  background: transparent;
  color: #e86197;
  border: 2px solid #e86197;
}
.btn--outline:hover:not(:disabled) {
  background: #e86197;
  color: #ffffff;
}
.btn--outline-secondary {
  background: transparent;
  color: #808080;
  border: 2px solid #bdbdbd;
}
.btn--outline-secondary:hover:not(:disabled) {
  background: #f5f5f5;
  border-color: #9e9e9e;
  color: #304050;
}
.btn--ghost {
  background: transparent;
  color: #304050;
}
.btn--ghost:hover:not(:disabled) {
  background: #f5f5f5;
}
.btn--danger {
  background: #F44336;
  color: #ffffff;
}
.btn--danger:hover:not(:disabled) {
  background: #c3362b;
}
.btn--success {
  background: #4CAF50;
  color: #ffffff;
}
.btn--success:hover:not(:disabled) {
  background: #3d8c40;
}
.btn--pink-white {
  background: #ffffff;
  color: #e86197;
  border: 2px solid transparent;
}
.btn--pink-white:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.9);
}
.btn--xs {
  padding: 2px 4px;
  font-size: 12px;
}
.btn--sm {
  padding: 4px 8px;
  font-size: 14px;
}
.btn--lg {
  padding: 16px 24px;
  font-size: 18px;
}
.btn--full {
  width: 100%;
}
.btn--icon {
  padding: 8px;
  width: 40px;
  height: 40px;
}
.btn--icon.btn--sm {
  width: 32px;
  height: 32px;
  padding: 4px;
}
.btn--icon.btn--lg {
  width: 48px;
  height: 48px;
  padding: 16px;
}
.btn__icon {
  width: 20px;
  height: 20px;
}
.btn__icon--left {
  margin-right: 8px;
}
.btn__icon--right {
  margin-left: 8px;
}
.btn-group {
  display: inline-flex;
  border-radius: 9999px;
  overflow: hidden;
}
.btn-group .btn {
  border-radius: 0;
  margin-right: -1px;
}
.btn-group .btn:first-child {
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
}
.btn-group .btn:last-child {
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
  margin-right: 0;
}
.btn-group .btn:focus {
  z-index: 1;
}

.tabs {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #bdbdbd #f5f5f5;
}
.tabs::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.tabs::-webkit-scrollbar-track {
  background: #f5f5f5;
}
.tabs::-webkit-scrollbar-thumb {
  background: #bdbdbd;
  border-radius: 9999px;
}
.tabs::-webkit-scrollbar-thumb:hover {
  background: #9e9e9e;
}
.tabs__item {
  padding: 8px 16px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: #808080;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 250ms ease-in-out;
  white-space: nowrap;
  margin-bottom: -2px;
}
.tabs__item:hover {
  color: #304050;
  background: #fafafa;
}
.tabs__item--active {
  color: #e86197;
  border-bottom-color: #e86197;
}

.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-pills__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 16px;
  border: none;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #304050;
  cursor: pointer;
  transition: all 250ms ease-in-out;
  text-decoration: none;
  white-space: nowrap;
  padding: 4px 16px;
  background: #ffffff;
  color: #304050;
  border: 1px solid #e0e0e0;
  font-size: 14px;
}
.filter-pills__item:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.filter-pills__item:hover {
  border-color: #e86197;
  color: #e86197;
}
.filter-pills__item--active {
  background: #e86197;
  color: #ffffff;
  border-color: #e86197;
}

.card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 16px;
  transition: box-shadow 250ms ease-in-out;
  position: relative;
  overflow: hidden;
}
.card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.card--clickable, .card--hover {
  cursor: pointer;
  transition: all 250ms ease-in-out;
}
.card--clickable:hover, .card--hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.card--flat {
  box-shadow: none;
  border: 1px solid #e0e0e0;
}
.card--dark {
  background: #212121;
  color: #ffffff;
}
.card--transparent {
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
}
.card--full-height {
  height: 100%;
}
.card--profile {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .card--profile {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    margin: 0 16px 16px;
    padding: 16px;
    border-radius: 8px;
    box-shadow: none;
    background: #ffffff;
    border: 1px solid #eeeeee;
  }
}
.card__header {
  padding: 16px;
  border-bottom: 1px solid #e0e0e0;
}
.card__header--no-border {
  border-bottom: none;
}
.card__header--xl-padding {
  padding: 16px 32px;
}
.card__title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.card__subtitle {
  font-size: 14px;
  color: #808080;
  margin-top: 4px;
}
.card__body {
  padding: 16px;
}
.card__body--flush {
  padding: 0;
}
.card__footer {
  padding: 16px;
  border-top: 1px solid #e0e0e0;
  background: #fafafa;
}
.card__image {
  width: 100%;
  height: auto;
  display: block;
}
.card__image--top {
  border-radius: 8px 8px 0 0;
}
.card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  background: #e86197;
  color: #ffffff;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  z-index: 1;
}

.card--narrow {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 32px;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .card--narrow {
    padding: 24px;
    box-shadow: none;
    border-radius: 0;
  }
}
.card--narrow .card__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.card--narrow .card__logo img {
  height: 40px;
  width: auto;
}
.card--narrow .card__title {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  color: #e86197;
  margin: 0 0 16px;
}
.card--narrow .card__subtitle {
  font-size: 16px;
  color: #808080;
  text-align: center;
  margin-bottom: 24px;
}
.card--narrow .card__divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 24px 0;
}
.card--narrow .card__footer {
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
  font-size: 14px;
  color: #304050;
  background: transparent;
}
.card--narrow .card__footer span {
  margin-right: 4px;
}
.card--narrow .card__link {
  color: #7DA1E8;
  text-decoration: none;
}
.card--narrow .card__link:hover {
  text-decoration: underline;
}

.user-card {
  display: block;
  text-decoration: none;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 250ms ease-in-out, box-shadow 250ms ease-in-out;
}
.user-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.user-card:hover .user-card__image img {
  transform: scale(1.05);
}
.user-card__image {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  background: #eeeeee;
}
.user-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease-in-out;
}
.user-card__image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #bdbdbd;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}
.user-card__status-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #e86197;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
}
.user-card__info {
  padding: 8px;
}
.user-card__name {
  font-size: 14px;
  font-weight: 500;
  color: #e86197;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.user-card__tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.user-card__tag {
  font-size: 12px;
  color: #757575;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 2px 6px;
  border-radius: 4px;
}

.grid--user-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, 192px);
  gap: 16px;
  margin-bottom: 24px;
  list-style: none;
  padding: 0;
  margin-top: 0;
  width: 100%;
  box-sizing: border-box;
  justify-content: start;
}
@media (min-width: 1300px) {
  .grid--user-cards {
    max-width: calc(1152px + 16px * 5);
    margin-left: 0;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .grid--user-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
}

.stat-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 16px;
  transition: box-shadow 250ms ease-in-out;
  padding: 24px;
}
.stat-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.stat-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 97, 151, 0.1);
  color: #e86197;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.stat-card__icon svg {
  width: 24px;
  height: 24px;
}
.stat-card__label {
  font-size: 14px;
  color: #808080;
  margin-bottom: 4px;
}
.stat-card__value {
  font-size: 24px;
  font-weight: 700;
  color: #304050;
}
.stat-card__change {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-size: 14px;
}
.stat-card__change--up {
  color: #4CAF50;
}
.stat-card__change--down {
  color: #F44336;
}

.form--vertical {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form__group, .form-group {
  margin-bottom: 16px;
}
.form__group:last-child, .form-group:last-child {
  margin-bottom: 0;
}
.form__label, .form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #304050;
  margin-bottom: 4px;
}
.form__label--required::after {
  content: " *";
  color: #F44336;
}
.form__input, .form-input {
  width: 100%;
  padding: 8px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.5;
  transition: all 250ms ease-in-out;
  background: #ffffff;
}
.form__input:focus, .form-input:focus {
  outline: none;
  border-color: #e86197;
  box-shadow: 0 0 0 3px rgba(232, 97, 151, 0.1);
}
.form__input:disabled, .form-input:disabled {
  background: #f5f5f5;
  cursor: not-allowed;
}
.form__input--error {
  border-color: #F44336;
}
.form__input--error:focus {
  border-color: #F44336;
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1);
}
.form__input--success {
  border-color: #4CAF50;
}
.form__input--success:focus {
  border-color: #4CAF50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}
.form__textarea, .form-textarea {
  width: 100%;
  padding: 8px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.5;
  transition: all 250ms ease-in-out;
  background: #ffffff;
  resize: vertical;
  min-height: 100px;
}
.form__textarea:focus, .form-textarea:focus {
  outline: none;
  border-color: #e86197;
  box-shadow: 0 0 0 3px rgba(232, 97, 151, 0.1);
}
.form__textarea:disabled, .form-textarea:disabled {
  background: #f5f5f5;
  cursor: not-allowed;
}
.form__select, .form-select {
  width: 100%;
  padding: 8px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.5;
  transition: all 250ms ease-in-out;
  background: #ffffff;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 20px;
  padding-right: 48px;
}
.form__select:focus, .form-select:focus {
  outline: none;
  border-color: #e86197;
  box-shadow: 0 0 0 3px rgba(232, 97, 151, 0.1);
}
.form__select:disabled, .form-select:disabled {
  background: #f5f5f5;
  cursor: not-allowed;
}
.form__help {
  font-size: 14px;
  color: #808080;
  margin-top: 4px;
}
.form__error {
  font-size: 14px;
  color: #F44336;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.form__error svg {
  width: 16px;
  height: 16px;
}
.form__success {
  font-size: 14px;
  color: #4CAF50;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.form__success svg {
  width: 16px;
  height: 16px;
}
.form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 767px) {
  .form__row {
    grid-template-columns: 1fr;
  }
}
.form__input-wrapper {
  position: relative;
}
.form__input-wrapper .form-input {
  padding-right: 48px;
}
.form__input-wrapper .form__input-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #808080;
}
.form__input-wrapper .form__input-icon:hover {
  color: #304050;
}
.form__input-wrapper .form__input-icon svg {
  width: 20px;
  height: 14px;
}
.form__input-wrapper .form__input-icon svg path {
  fill: currentColor;
}
.form__actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
.form__actions--right {
  justify-content: flex-end;
}
.form__actions--center {
  justify-content: center;
}
.form__actions--between {
  justify-content: space-between;
}
.form__actions--bordered {
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
}
@media (max-width: 767px) {
  .form__actions {
    margin-top: 24px;
  }
}
.form__message, .form-message {
  padding: 16px;
  border-radius: 4px;
  margin-bottom: 16px;
  font-size: 14px;
}
.form__message--error, .form-message--error {
  background: rgba(244, 67, 54, 0.1);
  color: #F44336;
  border: 1px solid rgba(244, 67, 54, 0.2);
}
.form__message--success, .form-message--success {
  background: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
  border: 1px solid rgba(76, 175, 80, 0.2);
}
.form__link {
  display: inline-block;
  font-size: 14px;
  color: #7DA1E8;
  text-decoration: none;
  margin-bottom: 24px;
}
.form__link:hover {
  text-decoration: underline;
}

.checkbox,
.radio {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.checkbox__input,
.radio__input {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  cursor: pointer;
}
.checkbox__input:checked,
.radio__input:checked {
  accent-color: #e86197;
}
.checkbox__label,
.radio__label {
  font-size: 16px;
  color: #304050;
  user-select: none;
}
.checkbox--disabled,
.radio--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.checkbox--disabled .checkbox__input,
.checkbox--disabled .radio__input,
.checkbox--disabled .checkbox__label,
.checkbox--disabled .radio__label,
.radio--disabled .checkbox__input,
.radio--disabled .radio__input,
.radio--disabled .checkbox__label,
.radio--disabled .radio__label {
  cursor: not-allowed;
}

.switch {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.switch__input {
  position: absolute;
  opacity: 0;
}
.switch__input:checked + .switch__slider {
  background: #e86197;
}
.switch__input:checked + .switch__slider::before {
  transform: translateX(20px);
}
.switch__input:focus + .switch__slider {
  box-shadow: 0 0 0 3px rgba(232, 97, 151, 0.1);
}
.switch__input:disabled + .switch__slider {
  opacity: 0.5;
  cursor: not-allowed;
}
.switch__slider {
  position: relative;
  width: 44px;
  height: 24px;
  background: #bdbdbd;
  border-radius: 9999px;
  transition: background 250ms ease-in-out;
}
.switch__slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border-radius: 9999px;
  top: 3px;
  left: 3px;
  transition: transform 250ms ease-in-out;
}
.switch__label {
  margin-left: 8px;
  font-size: 16px;
  color: #304050;
  user-select: none;
}

.search {
  position: relative;
}
.search__input {
  width: 100%;
  padding: 8px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.5;
  transition: all 250ms ease-in-out;
  background: #ffffff;
  padding-left: 56px;
}
.search__input:focus {
  outline: none;
  border-color: #e86197;
  box-shadow: 0 0 0 3px rgba(232, 97, 151, 0.1);
}
.search__input:disabled {
  background: #f5f5f5;
  cursor: not-allowed;
}
.search__icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #9e9e9e;
  pointer-events: none;
}
.search__clear {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #9e9e9e;
  cursor: pointer;
  transition: color 250ms ease-in-out;
}
.search__clear:hover {
  color: #304050;
}
.search__clear svg {
  width: 16px;
  height: 16px;
}

.contact-form {
  max-width: 400px;
  margin: 0 auto;
  padding: 16px 0;
}

.form-submit {
  background: linear-gradient(135deg, #FE7E4E 0%, #FE1892 100%);
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 48px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(254, 24, 146, 0.3);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 200px;
  display: block;
  margin: 24px auto;
}
.form-submit:hover {
  box-shadow: 0 6px 16px rgba(254, 24, 146, 0.4);
  transform: translateY(-2px);
}
.form-submit:active {
  transform: translateY(0);
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: #808080;
  line-height: 1.7;
  margin-top: 24px;
  padding: 0 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 8px;
  }
}

.gallery-item {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gallery-item__image-wrapper {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
}
.gallery-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 8px;
  text-align: center;
  font-size: 14px;
  color: #808080;
  word-break: break-all;
}
.gallery-item__actions {
  display: flex;
  gap: 4px;
  padding: 4px;
  justify-content: center;
}
.gallery-item__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 28px;
  padding: 0 4px;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  color: #304050;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  transition: all 250ms ease-in-out;
}
.gallery-item__btn:hover:not(:disabled) {
  background: #f5f5f5;
  border-color: #e86197;
  color: #e86197;
}
.gallery-item__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.gallery-item__btn--delete {
  background: #ffffff;
  color: rgb(244, 67, 54);
  border-color: rgb(244, 67, 54);
}
.gallery-item__btn--delete:hover:not(:disabled) {
  background: rgb(244, 67, 54);
  color: #ffffff;
}
.gallery-item--new .gallery-item__image-wrapper {
  border-style: dashed;
  background: rgba(232, 97, 151, 0.05);
}
.gallery-item--add {
  cursor: pointer;
}
.gallery-item__add-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  cursor: pointer;
  border: 2px dashed #bdbdbd;
  border-radius: 8px;
  background: transparent;
  transition: all 250ms ease-in-out;
}
.gallery-item__add-label:hover {
  border-color: #e86197;
  background: rgba(232, 97, 151, 0.05);
}
.gallery-item__add-label:hover .gallery-item__add-icon {
  color: #e86197;
  transform: scale(1.2);
}
.gallery-item__file-input {
  display: none;
}
.gallery-item__add-icon {
  font-size: 48px;
  color: #9e9e9e;
  transition: all 250ms ease-in-out;
  font-weight: 300;
  line-height: 1;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 250ms ease-in-out;
}
.modal__overlay--age-check {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(0, 0, 0, 0.7);
}
.modal__overlay--nested {
  z-index: 1060;
}
.modal__container {
  position: relative;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow: hidden;
  animation: slideUp 250ms ease-in-out;
}
.modal__container--sm {
  max-width: 400px;
}
.modal__container--lg {
  max-width: 800px;
}
.modal__container--xl {
  max-width: 1200px;
}
.modal__container--fullscreen {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  border-radius: 0;
}
.modal__header {
  padding: 24px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal__title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
.modal__close, .drawer__close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #9e9e9e;
  cursor: pointer;
  transition: all 250ms ease-in-out;
  border-radius: 4px;
}
.modal__close:hover, .drawer__close:hover {
  background: #f5f5f5;
  color: #304050;
}
.modal__close svg, .drawer__close svg {
  width: 20px;
  height: 20px;
}
.modal__body {
  padding: 24px;
  overflow-y: auto;
  max-height: calc(90vh - 140px);
  scrollbar-width: thin;
  scrollbar-color: #bdbdbd #f5f5f5;
}
.modal__body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.modal__body::-webkit-scrollbar-track {
  background: #f5f5f5;
}
.modal__body::-webkit-scrollbar-thumb {
  background: #bdbdbd;
  border-radius: 9999px;
}
.modal__body::-webkit-scrollbar-thumb:hover {
  background: #9e9e9e;
}
.modal__footer {
  padding: 24px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: center;
  gap: 16px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.drawer__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
}
.drawer__container {
  position: fixed;
  top: 0;
  bottom: 0;
  background: #ffffff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  z-index: 1050;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.drawer__container--left {
  left: 0;
  width: 320px;
  animation: slideInLeft 250ms ease-in-out;
}
.drawer__container--right {
  right: 0;
  width: 320px;
  animation: slideInRight 250ms ease-in-out;
}
.drawer__container--top {
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  max-height: 80vh;
  animation: slideInTop 250ms ease-in-out;
}
.drawer__container--bottom {
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  max-height: 80vh;
  animation: slideInBottom 250ms ease-in-out;
}
@media (max-width: 767px) {
  .drawer__container {
    width: 100%;
    max-width: 100%;
  }
}
.drawer__header {
  padding: 24px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.drawer__title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.drawer__body {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #bdbdbd #f5f5f5;
}
.drawer__body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.drawer__body::-webkit-scrollbar-track {
  background: #f5f5f5;
}
.drawer__body::-webkit-scrollbar-thumb {
  background: #bdbdbd;
  border-radius: 9999px;
}
.drawer__body::-webkit-scrollbar-thumb:hover {
  background: #9e9e9e;
}
.drawer__footer {
  padding: 24px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slideInTop {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slideInBottom {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.modal__container--payment-form {
  max-width: 600px;
}
@media (max-width: 767px) {
  .modal__container--payment-form {
    max-width: 95%;
  }
}
.modal__close, .drawer__close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 36px;
  line-height: 1;
  color: #9e9e9e;
  z-index: 1;
}
.modal__title {
  text-align: center;
  margin-bottom: 32px;
  font-size: 20px;
  font-weight: 600;
  color: #304050;
}

.payment-form__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .payment-form__buttons {
    grid-template-columns: 1fr;
  }
}
.payment-form__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #e86197;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: all 250ms ease-in-out;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.payment-form__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  background: #d64d86;
}
.payment-form__button:active {
  transform: translateY(0);
}
.payment-form__arrow {
  font-size: 24px;
  line-height: 1;
}
.payment-form__input-section {
  margin-bottom: 24px;
}
.payment-form__label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #304050;
}
.payment-form__input-group {
  display: flex;
  gap: 16px;
}
@media (max-width: 767px) {
  .payment-form__input-group {
    flex-direction: column;
  }
}
.payment-form__input {
  flex: 1;
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 250ms ease-in-out;
}
.payment-form__input:focus {
  outline: none;
  border-color: #e86197;
}
.payment-form__input::placeholder {
  color: #bdbdbd;
}
.payment-form__purchase-btn {
  min-width: 120px;
}
@media (max-width: 767px) {
  .payment-form__purchase-btn {
    width: 100%;
  }
}
.payment-form__footer {
  text-align: center;
  margin-top: 24px;
}
.payment-form__cancel {
  background: none;
  border: none;
  color: #757575;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
  transition: color 250ms ease-in-out;
}
.payment-form__cancel:hover {
  color: #304050;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  background: #e86197;
  color: #ffffff;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}
.badge--primary {
  background: #e86197;
  color: #ffffff;
}
.badge--secondary {
  background: #bdbdbd;
  color: #ffffff;
}
.badge--success {
  background: #4CAF50;
  color: #ffffff;
}
.badge--danger {
  background: #F44336;
  color: #ffffff;
}
.badge--warning {
  background: #FF9800;
  color: #ffffff;
}
.badge--info {
  background: #2196F3;
  color: #ffffff;
}
.badge--light {
  background: #f5f5f5;
  color: #304050;
}
.badge--dark {
  background: #212121;
  color: #ffffff;
}
.badge--outline {
  background: transparent;
  border: 1px solid currentColor;
}
.badge--outline.badge--primary {
  color: #e86197;
}
.badge--outline.badge--success {
  color: #4CAF50;
}
.badge--outline.badge--danger {
  color: #F44336;
}
.badge--sm {
  padding: 2px 6px;
  font-size: 12px;
}
.badge--lg {
  padding: 8px 16px;
  font-size: 14px;
}
.badge--pill {
  border-radius: 9999px;
}
.badge--square {
  border-radius: 4px;
}
.badge--dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 9999px;
}
.badge__icon {
  width: 14px;
  height: 14px;
  margin-right: 4px;
}
.badge__close {
  margin-left: 4px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 250ms ease-in-out;
}
.badge__close:hover {
  opacity: 1;
}
.badge__close svg {
  width: 12px;
  height: 12px;
}
.badge--with-icon {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.badge--with-icon svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 767px) {
  .badge--with-icon svg {
    width: 12px;
    height: 12px;
  }
}
.badge--transparent {
  background: transparent;
  border: none;
  padding: 0;
}
.badge--transparent.badge--outline {
  border: 1px solid #ffffff;
  border-radius: 9999px;
  padding: 4px 10px;
  height: 24px;
  color: #ffffff;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  background: #f5f5f5;
  color: #304050;
  border-radius: 9999px;
  font-size: 14px;
  line-height: 1;
  transition: all 250ms ease-in-out;
}
.tag--clickable {
  cursor: pointer;
}
.tag--clickable:hover {
  background: #eeeeee;
}
.tag--primary {
  background: rgba(232, 97, 151, 0.1);
  color: #e86197;
}
.tag--success {
  background: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
}
.tag--warning {
  background: rgba(255, 152, 0, 0.1);
  color: #FF9800;
}
.tag--danger {
  background: rgba(244, 67, 54, 0.1);
  color: #F44336;
}
.tag--outline {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  color: #304050;
  border-radius: 9999px;
}
.tag--outline-primary {
  background: #ffffff;
  border: 1px solid #e86197;
  color: #e86197;
  border-radius: 9999px;
  padding: 4px 16px;
  font-size: 12px;
}
.tag__icon {
  width: 14px;
  height: 14px;
  margin-right: 4px;
}
.tag__remove {
  margin-left: 4px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 250ms ease-in-out;
}
.tag__remove:hover {
  opacity: 1;
}
.tag__remove svg {
  width: 12px;
  height: 12px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.status__dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  animation: pulse 2s infinite;
}
.status__dot--online {
  background: #4CAF50;
}
.status__dot--offline {
  background: #bdbdbd;
  animation: none;
}
.status__dot--busy {
  background: #FF9800;
}
.status__dot--away {
  background: #2196F3;
}
.status__dot--error {
  background: #F44336;
}
.status__text {
  font-size: 14px;
  color: #808080;
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: #F44336;
  color: #ffffff;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.counter--sm {
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  font-size: 12px;
}
.counter--lg {
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  font-size: 12px;
}
.counter--primary {
  background: #e86197;
}
.counter--secondary {
  background: #bdbdbd;
}
.counter--success {
  background: #4CAF50;
}

.nav {
  display: flex;
}
.nav--vertical {
  flex-direction: column;
}
.nav__item {
  position: relative;
}
.nav__link {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  color: #304050;
  text-decoration: none;
  transition: all 250ms ease-in-out;
  white-space: nowrap;
}
.nav__link:hover {
  background: #fafafa;
  color: #e86197;
}
.nav__link--active {
  color: #e86197;
  font-weight: 500;
  background: rgba(232, 97, 151, 0.1);
}
.nav__link--disabled {
  color: #bdbdbd;
  cursor: not-allowed;
  pointer-events: none;
}
.nav__icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.nav__badge {
  margin-left: auto;
}
.nav__dropdown {
  position: relative;
}
.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__dropdown-toggle::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 250ms ease-in-out;
}
.nav__dropdown-toggle--open::after {
  transform: rotate(180deg);
}
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  padding: 4px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 250ms ease-in-out;
}
.nav__dropdown-menu--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-menu--right {
  left: auto;
  right: 0;
}
.nav__dropdown-item {
  display: block;
  padding: 8px 16px;
  color: #304050;
  text-decoration: none;
  transition: background 250ms ease-in-out;
}
.nav__dropdown-item:hover {
  background: #fafafa;
}
.nav__dropdown-item--active {
  background: rgba(232, 97, 151, 0.1);
  color: #e86197;
}
.nav__dropdown-item--disabled {
  color: #bdbdbd;
  cursor: not-allowed;
  pointer-events: none;
}
.nav__dropdown-divider {
  height: 1px;
  background: #e0e0e0;
  margin: 4px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
}
.breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin: 0 8px;
  color: #bdbdbd;
}
.breadcrumb__item a {
  color: #808080;
  text-decoration: none;
  transition: color 250ms ease-in-out;
}
.breadcrumb__item a:hover {
  color: #e86197;
}
.breadcrumb__item--active {
  color: #304050;
  font-weight: 500;
}
.breadcrumb--chevron .breadcrumb__item:not(:last-child)::after {
  content: "›";
  font-size: 18px;
}
.breadcrumb--arrow .breadcrumb__item:not(:last-child)::after {
  content: "→";
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 16px;
  border: none;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #304050;
  cursor: pointer;
  transition: all 250ms ease-in-out;
  text-decoration: none;
  white-space: nowrap;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  color: #304050;
  font-size: 14px;
  border-radius: 4px;
}
.pagination__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pagination__btn:hover:not(.pagination__btn--active) {
  background: #fafafa;
}
.pagination__btn--active {
  background: #f5f5f5;
  border-color: #bdbdbd;
}
.pagination__btn--prev, .pagination__btn--next {
  font-weight: 700;
}
.pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  color: #304050;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  transition: all 250ms ease-in-out;
}
.pagination__item:hover:not(.pagination__item--disabled):not(.pagination__item--active) {
  border-color: #e86197;
  color: #e86197;
}
.pagination__item--active {
  background: #e86197;
  border-color: #e86197;
  color: #ffffff;
}
.pagination__item--disabled {
  color: #bdbdbd;
  cursor: not-allowed;
  opacity: 0.5;
}
.pagination__item--ellipsis {
  border: none;
  cursor: default;
  pointer-events: none;
}
.pagination__prev svg, .pagination__next svg {
  width: 16px;
  height: 16px;
}
.pagination--rounded .pagination__item {
  border-radius: 9999px;
}
.pagination--sm .pagination__item {
  min-width: 24px;
  height: 24px;
  font-size: 12px;
}
.pagination--lg .pagination__item {
  min-width: 40px;
  height: 40px;
  font-size: 16px;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.steps__item {
  flex: 1;
  position: relative;
  text-align: center;
}
.steps__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #e0e0e0;
  z-index: -1;
}
.steps__item--completed::after {
  background: #e86197;
}
.steps__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}
.steps__item--active .steps__number {
  background: #e86197;
  border-color: #e86197;
  color: #ffffff;
}
.steps__item--completed .steps__number {
  background: #e86197;
  border-color: #e86197;
  color: #ffffff;
}
.steps__item--completed .steps__number::before {
  content: "✓";
}
.steps__label {
  font-size: 14px;
  color: #808080;
}
.steps__item--active .steps__label, .steps__item--completed .steps__label {
  color: #304050;
  font-weight: 500;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  width: 100%;
}
@media (min-width: 1300px) {
  .section-header {
    max-width: calc(1152px + 16px * 5);
  }
}
.section-header__title {
  font-size: 24px;
  font-weight: 700;
  color: #304050;
  margin: 0;
}
.section-header__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 9999px;
}
.section-header__badge-dot {
  color: #e86197;
  font-size: 12px;
  line-height: 1;
}
.section-header__badge-count {
  font-size: 14px;
  font-weight: 700;
  color: #304050;
}
.section-header__badge-label {
  font-size: 12px;
  color: #757575;
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  width: 100%;
}
@media (min-width: 1300px) {
  .filter-bar {
    max-width: calc(1152px + 16px * 5);
  }
}
@media (max-width: 767px) {
  .filter-bar {
    flex-wrap: wrap;
    gap: 16px;
  }
}
.filter-bar__tabs {
  display: flex;
  gap: 8px;
}
.filter-bar__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 16px;
  border: none;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #304050;
  cursor: pointer;
  transition: all 250ms ease-in-out;
  text-decoration: none;
  white-space: nowrap;
  padding: 4px 16px;
  background: #f5f5f5;
  color: #304050;
  font-size: 14px;
  border-radius: 9999px;
}
.filter-bar__tab:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.filter-bar__tab:hover {
  background: #eeeeee;
}
.filter-bar__tab--active {
  background: #e86197;
  color: #ffffff;
}
.filter-bar__tab--active:hover {
  background: #d64d86;
}
.filter-bar__sort {
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-bar__select {
  padding: 4px 16px;
  padding-right: 24px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #bdbdbd;
  font-size: 14px;
  color: #304050;
  cursor: pointer;
  appearance: none;
}
.filter-bar__select:focus {
  outline: none;
  border-bottom-color: #e86197;
}
.filter-bar__select-wrapper {
  position: relative;
  display: inline-block;
}
.filter-bar__select-wrapper::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #757575;
  pointer-events: none;
}
.filter-bar__refresh {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 16px;
  border: none;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #304050;
  cursor: pointer;
  transition: all 250ms ease-in-out;
  text-decoration: none;
  white-space: nowrap;
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #757575;
}
.filter-bar__refresh:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.filter-bar__refresh:hover {
  color: #e86197;
}
.filter-bar__refresh svg {
  width: 16px;
  height: 16px;
}

.sidebar-overlay {
  display: none;
}
@media (max-width: 767px) {
  .sidebar-overlay {
    display: block;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    animation: fadeIn 250ms ease-in-out;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 24px;
  margin-bottom: 24px;
  width: 100%;
}
@media (min-width: 1300px) {
  .pagination {
    max-width: calc(1152px + 16px * 5);
  }
}
.pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 16px;
  border: none;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #304050;
  cursor: pointer;
  transition: all 250ms ease-in-out;
  text-decoration: none;
  white-space: nowrap;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  color: #304050;
  font-size: 14px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pagination__btn:hover {
  background: #fafafa;
  border-color: #e86197;
  color: #e86197;
}
.pagination__btn--active {
  background: #e86197;
  color: #ffffff;
  border-color: #e86197;
}
.pagination__btn--active:hover {
  background: #d64d86;
  border-color: #d64d86;
}
.pagination__btn--prev, .pagination__btn--next {
  font-weight: 700;
}
.pagination__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pagination__btn:disabled:hover {
  background: #ffffff;
  border-color: #e0e0e0;
  color: #304050;
}
@media (max-width: 767px) {
  .pagination {
    gap: 2px;
  }
  .pagination__btn {
    min-width: 28px;
    height: 28px;
    font-size: 12px;
  }
}

.snackbar {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1070;
  display: flex;
  flex-direction: column;
  gap: 16px;
  pointer-events: none;
}
@media (max-width: 767px) {
  .snackbar {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}
.snackbar__item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 300px;
  max-width: 500px;
  padding: 16px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  pointer-events: auto;
  animation: slideInRight 0.3s ease-out;
}
@media (max-width: 767px) {
  .snackbar__item {
    min-width: auto;
    max-width: none;
  }
}
.snackbar__item--success {
  border-left: 4px solid #4CAF50;
}
.snackbar__item--success .snackbar__icon {
  color: #4CAF50;
}
.snackbar__item--error {
  border-left: 4px solid #F44336;
}
.snackbar__item--error .snackbar__icon {
  color: #F44336;
}
.snackbar__item--warning {
  border-left: 4px solid #FF9800;
}
.snackbar__item--warning .snackbar__icon {
  color: #FF9800;
}
.snackbar__item--info {
  border-left: 4px solid #2196F3;
}
.snackbar__item--info .snackbar__icon {
  color: #2196F3;
}
.snackbar__item--exiting {
  animation: slideOutRight 0.3s ease-in forwards;
}
.snackbar__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.snackbar__icon svg {
  width: 100%;
  height: 100%;
}
.snackbar__content {
  flex: 1;
  min-width: 0;
}
.snackbar__title {
  font-size: 16px;
  font-weight: 500;
  color: #304050;
  margin-bottom: 4px;
}
.snackbar__message {
  font-size: 14px;
  color: #808080;
  line-height: 1.5;
}
.snackbar__close {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #9e9e9e;
  cursor: pointer;
  border-radius: 4px;
  transition: all 250ms ease-in-out;
}
.snackbar__close:hover {
  background: #f5f5f5;
  color: #304050;
}
.snackbar__close svg {
  width: 16px;
  height: 16px;
}
.snackbar__actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.snackbar__action {
  padding: 4px 8px;
  background: transparent;
  border: none;
  color: #e86197;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 250ms ease-in-out;
}
.snackbar__action:hover {
  opacity: 0.8;
}
.snackbar__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #eeeeee;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}
.snackbar__progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: currentColor;
  animation: progress 5s linear forwards;
}
.snackbar--top-left {
  top: 24px;
  bottom: auto;
  left: 24px;
  right: auto;
}
.snackbar--top-left .snackbar__item {
  animation: slideInLeft 0.3s ease-out;
}
.snackbar--top-left .snackbar__item--exiting {
  animation: slideOutLeft 0.3s ease-in forwards;
}
.snackbar--top-center {
  top: 24px;
  bottom: auto;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}
.snackbar--top-center .snackbar__item {
  animation: slideInTop 0.3s ease-out;
}
.snackbar--top-center .snackbar__item--exiting {
  animation: slideOutTop 0.3s ease-in forwards;
}
.snackbar--top-right {
  top: 24px;
  bottom: auto;
}
.snackbar--bottom-left {
  bottom: 24px;
  left: 24px;
  right: auto;
}
.snackbar--bottom-left .snackbar__item {
  animation: slideInLeft 0.3s ease-out;
}
.snackbar--bottom-left .snackbar__item--exiting {
  animation: slideOutLeft 0.3s ease-in forwards;
}
.snackbar--bottom-center {
  bottom: 24px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}
.snackbar--bottom-center .snackbar__item {
  animation: slideInBottom 0.3s ease-out;
}
.snackbar--bottom-center .snackbar__item--exiting {
  animation: slideOutBottom 0.3s ease-in forwards;
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOutLeft {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}
@keyframes slideInTop {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideOutTop {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}
@keyframes slideInBottom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideOutBottom {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}
@keyframes progress {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
}
.spinner__circle {
  width: 100%;
  height: 100%;
  border: 3px solid #eeeeee;
  border-top-color: #e86197;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.spinner--sm {
  width: 24px;
  height: 24px;
}
.spinner--sm .spinner__circle {
  border-width: 2px;
}
.spinner--lg {
  width: 56px;
  height: 56px;
}
.spinner--lg .spinner__circle {
  border-width: 4px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loading, .main__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
}
.loading__message {
  color: #808080;
  font-size: 16px;
  margin: 0;
}
.loading--full {
  height: 100%;
}
.loading--dark {
  background: #000;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #FFF5F9;
}
.page__container {
  flex: 1;
  padding: 32px 16px;
}
@media (max-width: 767px) {
  .page__container {
    padding: 24px 16px;
  }
}
.page__content {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.page__title {
  font-size: 24px;
  font-weight: 700;
  color: #304050;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .page__title {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
.page__panel {
  background: #ffffff;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  .page__panel {
    padding: 24px 16px;
  }
}
.page__panel--tall {
  min-height: 400px;
}
@media (max-width: 767px) {
  .page__panel--tall {
    min-height: 300px;
  }
}
.page__section {
  margin-bottom: 48px;
}
.page__section:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .page__section {
    margin-bottom: 32px;
  }
}
.page__section-title {
  font-size: 18px;
  font-weight: 600;
  color: #304050;
  margin-bottom: 16px;
  padding-bottom: 8px;
}
@media (max-width: 767px) {
  .page__section-title {
    font-size: 16px;
  }
}
.page__section-title--underline {
  border-bottom: 1px solid #eeeeee;
}
.page__section-title--primary {
  border-bottom: 2px solid #e86197;
}
.page__section-text {
  font-size: 16px;
  color: #304050;
  line-height: 1.75;
  margin-bottom: 8px;
}
.page__section-text:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .page__section-text {
    font-size: 14px;
  }
}
.page--centered .page__container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page--centered .page__content {
  max-width: 400px;
}
.page--centered .page__panel {
  text-align: center;
}
@media (max-width: 767px) {
  .page--centered .page__panel {
    box-shadow: none;
    border-radius: 0;
  }
}
.page--account .page__container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}
@media (max-width: 767px) {
  .page--account .page__container {
    padding: 24px 8px;
  }
}
.page--full {
  width: 100%;
  max-width: none;
}
.page--full .page__container {
  max-width: none;
  width: 100%;
  padding: 0;
}
.page--full .page__content {
  max-width: none;
  width: 100%;
}
.page--tabbed {
  background: #ffffff;
}
.page--tabbed .page__container {
  flex: 1;
  background: #ffffff;
}
.page--tabbed .page__content {
  max-width: 768px;
}
.page--performer {
  background: #EEFBFF;
}
.page--performer .page__container {
  background: #EEFBFF;
}
.page--performer .main__container {
  background: #EEFBFF;
}

.page__info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page__info-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eeeeee;
}
.page__info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .page__info-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.page__info-label {
  font-size: 14px;
  font-weight: 600;
  color: #808080;
}
@media (max-width: 767px) {
  .page__info-label {
    font-size: 12px;
    color: #e86197;
  }
}

.page__info-value {
  font-size: 16px;
  color: #304050;
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 767px) {
  .page__info-value {
    font-size: 14px;
  }
}

.page__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page__list-item {
  font-size: 16px;
  color: #304050;
  line-height: 1.75;
  padding-left: 24px;
  margin-bottom: 8px;
  position: relative;
}
.page__list-item::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: #e86197;
  font-weight: 700;
}
.page__list-item:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .page__list-item {
    font-size: 14px;
  }
}

.page__notice {
  padding: 16px;
  background: #fafafa;
  border-radius: 4px;
}

.page__notice-text {
  font-size: 16px;
  color: #304050;
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 767px) {
  .page__notice-text {
    font-size: 14px;
  }
}

.page__notice-detail {
  display: inline-block;
  margin-top: 4px;
  font-size: 14px;
  color: #808080;
}
@media (max-width: 767px) {
  .page__notice-detail {
    font-size: 12px;
  }
}

.page__timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page__timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding-left: 16px;
  border-left: 3px solid #e86197;
}
@media (max-width: 767px) {
  .page__timeline-item {
    grid-template-columns: 100px 1fr;
    gap: 8px;
    padding-left: 8px;
  }
}

.page__timeline-label {
  font-size: 14px;
  font-weight: 600;
  color: #e86197;
}
@media (max-width: 767px) {
  .page__timeline-label {
    font-size: 12px;
  }
}

.page__timeline-content {
  font-size: 16px;
  color: #304050;
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 767px) {
  .page__timeline-content {
    font-size: 14px;
  }
}

.recruitment-content,
.form-content {
  padding-top: 16px;
}

.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  border-bottom: 1px solid #e0e0e0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar {
  display: none;
}
@media (max-width: 767px) {
  .tabs {
    margin-bottom: 24px;
  }
}
.tabs__item {
  padding: 8px 16px;
  background: #eeeeee;
  border: none;
  border-radius: 8px 8px 0 0;
  color: #808080;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 250ms ease-in-out;
  white-space: nowrap;
  min-width: 120px;
  text-decoration: none;
}
.tabs__item:hover {
  background: #e0e0e0;
}
.tabs__item--active {
  background: #e86197;
  color: #ffffff;
}
.tabs__item--active:hover {
  background: #d64d86;
}
@media (max-width: 767px) {
  .tabs__item {
    font-size: 12px;
    padding: 8px;
    min-width: 100px;
  }
}
.tabs--underline {
  border-bottom: 2px solid #e0e0e0;
  gap: 48px;
}
.tabs--underline .tabs__item {
  padding: 16px 24px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: #808080;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: -2px;
  border-radius: 0;
  min-width: auto;
}
.tabs--underline .tabs__item:hover {
  background: none;
  color: #304050;
}
.tabs--underline .tabs__item--active {
  color: #e86197;
  background: none;
  border-bottom: 5px solid #e86197;
  font-weight: 700;
}
.tabs--underline .tabs__item--active:hover {
  background: none;
}
.tabs--pill {
  border-bottom: none;
  gap: 8px;
  margin-bottom: 24px;
}
.tabs--pill .tabs__item {
  padding: 8px 16px;
  background: #eeeeee;
  border: none;
  border-radius: 50px;
  color: #808080;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: auto;
}
.tabs--pill .tabs__item:hover {
  background: #e0e0e0;
}
.tabs--pill .tabs__item--active {
  background: linear-gradient(135deg, #FE7E4E 0%, #FE1892 100%);
  color: #ffffff;
}
.tabs--pill .tabs__item--active:hover {
  background: linear-gradient(135deg, #FE7E4E 0%, #FE1892 100%);
}

.table {
  width: 100%;
  border-collapse: collapse;
}
.table__wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #bdbdbd #f5f5f5;
}
.table__wrapper::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.table__wrapper::-webkit-scrollbar-track {
  background: #f5f5f5;
}
.table__wrapper::-webkit-scrollbar-thumb {
  background: #bdbdbd;
  border-radius: 9999px;
}
.table__wrapper::-webkit-scrollbar-thumb:hover {
  background: #9e9e9e;
}
.table thead tr {
  border-bottom: 2px solid #e0e0e0;
}
.table thead th {
  padding: 8px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: #304050;
}
@media (max-width: 767px) {
  .table thead th {
    font-size: 12px;
    padding: 4px 8px;
  }
}
.table tbody tr {
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 250ms ease-in-out;
}
.table tbody tr:last-child {
  border-bottom: none;
}
.table tbody tr:hover {
  background-color: #fafafa;
}
.table tbody td {
  padding: 16px 8px;
  font-size: 14px;
  color: #304050;
}
@media (max-width: 767px) {
  .table tbody td {
    font-size: 12px;
    padding: 8px;
  }
}
.table--striped tbody tr:nth-child(even) {
  background-color: #fafafa;
}
.table--striped tbody tr:hover {
  background-color: #f5f5f5;
}
.table--bordered {
  border: 1px solid #e0e0e0;
}
.table--bordered thead th,
.table--bordered tbody td {
  border: 1px solid #e0e0e0;
}
.table--compact thead th {
  padding: 4px 8px;
}
.table--compact tbody td {
  padding: 8px;
}
.table--xs-compact thead th,
.table--xs-compact tbody td {
  padding: 4px 8px;
}
.table--centered thead th,
.table--centered tbody td {
  text-align: center;
}
.table-wrapper {
  overflow-x: auto;
  max-height: 500px;
  overflow-y: auto;
}
@media (max-width: 767px) {
  .table-wrapper {
    max-height: none;
  }
}
.table-wrapper--flush {
  padding: 0 32px;
}
.table-wrapper--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 0 32px;
  overflow-x: visible;
}
@media (max-width: 767px) {
  .table-wrapper--split {
    grid-template-columns: 1fr;
  }
}
.table-wrapper--split .table {
  width: 100%;
}

.table--flush-align thead th:first-child,
.table--flush-align tbody td:first-child {
  padding-left: 32px;
}
.table--flush-align thead th:last-child,
.table--flush-align tbody td:last-child {
  padding-right: 32px;
}

.cell--wide {
  min-width: 180px;
}

.hero {
  text-align: center;
  margin-bottom: 32px;
}
.hero__text {
  margin-bottom: 24px;
}
.hero__title {
  font-size: 30px;
  font-weight: 700;
  color: #e86197;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.hero__subtitle {
  font-size: 12px;
  color: #304050;
  line-height: 1.8;
}
.hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}
.hero__image img {
  max-width: 268px;
  width: 100%;
  height: auto;
}

.feature-section {
  margin-bottom: 32px;
  margin-top: 32px;
}
.feature-section__title {
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 24px;
  color: #304050;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-item__icon {
  flex-shrink: 0;
  width: 56px;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FE7E4E 0%, #FE1892 100%);
  border-radius: 50%;
}
.feature-item__icon svg {
  display: block;
  width: 56px;
  height: 57px;
}
.feature-item__icon svg g {
  clip-path: none !important;
}
.feature-item__icon svg path:first-child {
  display: none;
}
.feature-item__icon svg path:not(:first-child) {
  fill: white !important;
}
.feature-item__content {
  flex: 1;
  padding-top: 4px;
}
.feature-item__title {
  font-size: 16px;
  font-weight: 700;
  color: #304050;
  margin-bottom: 4px;
  line-height: 1.4;
}
.feature-item__text {
  font-size: 12px;
  color: #808080;
  line-height: 1.7;
}

.cta-section {
  text-align: center;
  margin-bottom: 32px;
  margin-top: 32px;
}

.cta-button {
  background: linear-gradient(135deg, #FE7E4E 0%, #FE1892 100%);
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 48px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(254, 24, 146, 0.3);
  transition: all 0.3s ease;
  width: auto;
  min-width: 200px;
  display: inline-block;
  text-decoration: none;
}
.cta-button:hover {
  box-shadow: 0 6px 16px rgba(254, 24, 146, 0.4);
  transform: translateY(-2px);
}
.cta-button:active {
  transform: translateY(0);
}

.image-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.image-placeholder {
  background-color: #E8E8E8;
  border-radius: 8px;
  padding: 48px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
}
.image-placeholder svg {
  width: 100px;
  height: 100px;
  opacity: 0.3;
}

.menu-overlay {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
}

.menu-sidebar {
  width: 280px;
  max-width: 80vw;
  background: #ffffff;
  height: 100%;
  overflow-y: auto;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
}

.menu-nav {
  display: flex;
  flex-direction: column;
  padding: 24px 0;
}
.menu-nav__item {
  padding: 16px 24px;
  text-decoration: none;
  color: #304050;
  font-size: 16px;
  font-weight: 500;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  transition: background-color 250ms ease-in-out;
  width: 100%;
}
.menu-nav__item:hover {
  background: #f5f5f5;
}
.menu-nav__logout {
  color: #F44336;
  margin-top: 16px;
  border-top: 1px solid #eeeeee;
  padding-top: 24px;
}

.video-player {
  position: relative;
  background: #212121;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .video-player {
    border-radius: 0;
    box-shadow: none;
  }
}
.video-player__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #212121;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .video-player__frame {
    border-radius: 8px;
  }
}
.video-player__placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-player__placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-player__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-player__overlay-text {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}
.video-player__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}
.video-player__video--contain {
  object-fit: contain;
}
.video-player__video--auto {
  position: static;
  width: 100%;
  height: auto;
}
.video-player__video--mirrored {
  transform: scaleX(-1);
}

.panel-wrapper {
  display: flex;
  flex-direction: column;
  width: 360px;
  height: calc((100vw - 480px) * 9 / 16 + 131px);
}
@media (max-width: 767px) {
  .panel-wrapper {
    height: auto;
    width: 100%;
    margin-top: 16px;
  }
}

.message-panel {
  width: 360px;
  min-width: 360px;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(232, 97, 151, 0.2);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
@media (max-width: 767px) {
  .message-panel {
    width: calc(100% - 32px);
    min-width: auto;
    height: 40vh;
    margin: 0 16px;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    box-shadow: none;
    background: #ffffff;
    transition: height 0.3s ease;
  }
  .message-panel--collapsed {
    height: 0;
    overflow: hidden;
    border: none;
  }
}
.message-panel__toggle {
  display: none;
  width: calc(100% - 32px);
  padding: 16px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .message-panel__toggle {
    display: flex;
    margin: 0 16px 8px;
  }
}
.message-panel__toggle-title {
  font-size: 16px;
  font-weight: 500;
  color: #304050;
}
.message-panel__toggle-icon {
  transition: transform 0.2s ease;
  color: #9e9e9e;
}
.message-panel__toggle-icon--collapsed {
  transform: rotate(180deg);
}
.message-panel__container {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}
.message-panel__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: inherit;
}
.message-panel__overlay-message {
  color: #ffffff;
  text-align: center;
  padding: 16px;
}
.message-panel__messages {
  flex: 1;
  overflow: hidden;
  border-bottom: 1px solid #eeeeee;
  min-height: 0;
}
.message-panel__scroll {
  height: 100%;
  overflow-y: auto;
  padding: 16px;
}
@media (max-width: 767px) {
  .message-panel__scroll {
    padding: 8px;
  }
}
.message-panel__message {
  margin-bottom: 8px;
  word-break: break-word;
}
.message-panel__message .badge {
  font-family: monospace;
}
.message-panel__user {
  font-weight: 500;
  color: #e86197;
  font-size: 14px;
  margin-right: 4px;
}
.message-panel__text {
  font-size: 14px;
  color: #304050;
  line-height: 1.75;
}
.message-panel__input {
  display: flex;
  align-items: center;
  padding: 8px;
  gap: 4px;
  border-bottom: 1px solid #eeeeee;
}
.message-panel__field {
  flex: 1;
  padding: 4px 8px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
}
.message-panel__field:focus {
  border-color: #e86197;
}
.message-panel__field::placeholder {
  color: #bdbdbd;
}
.message-panel__actions {
  padding: 8px;
  display: flex;
  gap: 4px;
}
@media (max-width: 767px) {
  .message-panel__actions {
    border-top: 1px solid #eeeeee;
  }
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.detail-list__item {
  display: flex;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
}
.detail-list__item:last-child {
  border-bottom: none;
}
.detail-list__label {
  font-weight: 500;
  color: #808080;
  font-size: 14px;
  min-width: 100px;
}
.detail-list__colon {
  color: #bdbdbd;
  margin: 0 4px;
}
.detail-list__value {
  flex: 1;
  color: #304050;
  font-size: 14px;
}
.detail-list--columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 767px) {
  .detail-list--columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.media-controls {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(232, 97, 151, 0.2);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .media-controls {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 16px 0;
    border-radius: 0;
  }
}
.media-controls--broadcaster {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 16px 0;
  margin: 0;
  border-bottom: 1px solid #e0e0e0;
}
.media-controls__buttons {
  display: flex;
  gap: 8px;
}
.media-controls__buttons--broadcaster {
  display: flex;
  gap: 4px;
  justify-content: flex-end;
}
.media-controls__device {
  display: flex;
  gap: 16px;
}
@media (max-width: 767px) {
  .media-controls__device {
    margin: 0 16px;
    padding: 16px 0;
  }
}
.media-controls__device-group {
  display: flex;
  gap: 8px;
}
.media-controls__volume {
  display: flex;
  align-items: center;
  gap: 4px;
}
.media-controls__volume-slider {
  width: 100px;
  height: 4px;
  background: #eeeeee;
  border-radius: 9999px;
  position: relative;
  cursor: pointer;
}
.media-controls__volume-fill {
  height: 100%;
  background: #e86197;
  border-radius: 9999px;
}
.media-controls__volume-handle {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #ffffff;
  border: 2px solid #e86197;
  border-radius: 9999px;
}

.device-selector__button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
  padding: 4px 8px;
}
.device-selector__icon {
  display: flex;
  align-items: center;
}
.device-selector__dropdown {
  border: none;
  background: transparent;
  color: inherit;
  pointer-events: auto;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(232, 97, 151, 0.2);
  border-radius: 8px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .status-bar {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
}
.status-bar__indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}
.status-bar__label {
  font-size: 14px;
  font-weight: 500;
  color: #808080;
}
.status-bar__value {
  font-size: 14px;
  font-weight: 700;
  color: #e86197;
}
.status-bar__controls {
  display: flex;
  gap: 8px;
}
@media (max-width: 767px) {
  .status-bar__controls {
    flex-direction: column;
  }
}
.status-bar--warning {
  background: #fff0f0;
  border: 1px solid #ffcccc;
}
@media (max-width: 767px) {
  .status-bar--warning {
    border-radius: 0;
  }
}
.status-bar__warning-header {
  font-size: 12px;
  font-weight: 500;
  color: #808080;
  margin-bottom: 4px;
}
.status-bar__warning-content {
  display: flex;
  gap: 8px;
}
.status-bar__warning-body {
  flex: 1;
}
.status-bar__warning-message {
  display: flex;
  align-items: center;
  gap: 8px;
}
.status-bar__warning-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.status-bar__warning-icon svg {
  width: 100%;
  height: 100%;
}
.status-bar__warning-text {
  font-size: 14px;
  color: #cc0000;
  font-weight: 500;
}

.comment-box {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .comment-box {
    background: #ffffff;
    border-radius: 0;
    box-shadow: none;
    padding: 16px;
    margin: 0 16px;
    border: 1px solid #eeeeee;
    height: auto;
  }
}
.comment-box__title {
  font-size: 16px;
  font-weight: 700;
  color: #304050;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eeeeee;
}
.comment-box__content {
  flex: 1;
  overflow-y: auto;
  max-height: 400px;
}
.comment-box__content p {
  font-size: 14px;
  color: #808080;
  line-height: 1.75;
  white-space: pre-wrap;
}

.top-bar {
  background: #e86197;
  width: 100%;
  padding: 4px 32px;
}
@media (max-width: 767px) {
  .top-bar {
    padding: 0;
    background: #e86197;
  }
}
.top-bar__content {
  display: flex;
  gap: 8px;
  align-items: center;
  height: 40px;
}
@media (max-width: 767px) {
  .top-bar__content {
    width: 100%;
    padding: 0 16px;
    gap: 16px;
  }
}
.top-bar__actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
}
@media (max-width: 767px) {
  .top-bar__actions {
    gap: 4px;
  }
}

.broadcast-main {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .broadcast-main {
    gap: 0;
  }
}

.media-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
  position: relative;
}
@media (max-width: 767px) {
  .media-container {
    gap: 0;
    width: calc(100% - 32px);
    margin: 16px 16px 0;
    border-radius: 8px;
  }
}
.media-container--broadcaster {
  border-radius: 8px;
  overflow: hidden;
  gap: 0;
}

.action-group {
  display: flex;
  gap: 8px;
}
@media (max-width: 767px) {
  .action-group {
    width: calc(100% - 32px);
    margin: 0 16px;
    padding: 16px 0;
    gap: 4px;
  }
}
.action-group__item {
  flex: 1;
}

.section {
  background: transparent;
  padding: 0 0 48px 0;
}
@media (max-width: 767px) {
  .section {
    padding: 16px 0;
  }
}
.section__container {
  width: 100%;
  padding: 0 32px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .section__container {
    padding: 0;
  }
}
.section__title {
  font-size: 20px;
  font-weight: 700;
  color: #304050;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e86197;
}
@media (max-width: 767px) {
  .section__title {
    font-size: 18px;
    margin: 0 16px 16px;
    padding-bottom: 8px;
  }
}
.section__header {
  padding: 24px 32px;
  border-bottom: 1px solid rgba(232, 97, 151, 0.2);
  background: rgba(255, 255, 255, 0.95);
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .section__header--desktop {
    display: none;
  }
}
.section__header--mobile {
  display: none;
  border-bottom: none;
  padding: 16px;
  background: #ffffff;
}
@media (max-width: 767px) {
  .section__header--mobile {
    display: block;
    width: 100%;
  }
}
.section__header-content {
  width: 100%;
}
.section__mobile-title {
  font-size: 20px;
  font-weight: 700;
  color: #304050;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .section__mobile-title {
    font-size: 18px;
  }
}
.section__description {
  font-size: 14px;
  color: #808080;
  line-height: 1.75;
}

.profile-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .profile-image {
    width: 60px;
    height: 60px;
    border-radius: 4px;
  }
}
.profile-image__wrapper {
  flex: 1;
}
.profile-image__name {
  font-size: 18px;
  font-weight: 700;
  color: #304050;
  margin-bottom: 8px;
}
.profile-image__tags {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .profile-image__tags {
    justify-content: center;
  }
}
.profile-image__description {
  font-size: 14px;
  color: #808080;
  line-height: 1.75;
}

.input-area {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.input-area__display {
  font-size: 20px;
  font-weight: 700;
  color: #304050;
}
@media (max-width: 767px) {
  .input-area__display {
    font-size: 18px;
  }
}
.input-area__wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
}
.input-area__field {
  flex: 1;
  padding: 8px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
}
.input-area__field:focus {
  border-color: #e86197;
}
.input-area__field::placeholder {
  color: #bdbdbd;
}

.profile-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 16px;
  transition: box-shadow 250ms ease-in-out;
  margin-bottom: 32px;
}
.profile-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.profile-card__cover {
  height: 200px;
  background: linear-gradient(135deg, #f4b5d0 0%, #e86197 100%);
  border-radius: 8px 8px 0 0;
  position: relative;
}
.profile-card__cover-upload {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 16px;
  border: none;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #304050;
  cursor: pointer;
  transition: all 250ms ease-in-out;
  text-decoration: none;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.9);
  color: #304050;
  padding: 4px 16px;
  font-size: 14px;
}
.profile-card__cover-upload:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.profile-card__info {
  padding: 24px;
  display: flex;
  gap: 24px;
}
@media (max-width: 767px) {
  .profile-card__info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.profile-card__avatar {
  position: relative;
  margin-top: -50px;
}
.profile-card__avatar img {
  width: 100px;
  height: 100px;
  border-radius: 9999px;
  border: 4px solid #ffffff;
  object-fit: cover;
}
.profile-card__avatar-upload {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e86197;
  color: #ffffff;
  border-radius: 9999px;
  border: 2px solid #ffffff;
  cursor: pointer;
}
.profile-card__avatar-upload svg {
  width: 16px;
  height: 16px;
}
.profile-card__details {
  flex: 1;
}
.profile-card__details-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}
.profile-card__details-username {
  color: #808080;
  margin-bottom: 8px;
}
.profile-card__details-bio {
  font-size: 14px;
  line-height: 1.75;
  color: #808080;
}
.profile-card__stats {
  display: flex;
  gap: 32px;
}
@media (max-width: 767px) {
  .profile-card__stats {
    justify-content: center;
  }
}
.profile-card__stats-item {
  text-align: center;
}
.profile-card__stats-item-value {
  font-size: 20px;
  font-weight: 700;
  color: #304050;
}
.profile-card__stats-item-label {
  font-size: 14px;
  color: #808080;
}

.content-header {
  padding: 24px 32px;
  background: #ffffff;
}
@media (max-width: 767px) {
  .content-header {
    padding: 16px;
  }
}
.content-header--desktop {
  display: block;
}
@media (max-width: 767px) {
  .content-header--desktop {
    display: none;
  }
}
.content-header--mobile {
  display: none;
}
@media (max-width: 767px) {
  .content-header--mobile {
    display: block;
  }
}
.content-header__title-area {
  max-width: 1200px;
  margin: 0 auto;
}
.content-header__title-display {
  font-size: 24px;
  font-weight: 700;
  color: #304050;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .content-header__title-display {
    font-size: 20px;
    margin-bottom: 8px;
  }
}
.content-header__description-form {
  display: flex;
  gap: 8px;
  align-items: center;
}
.content-header__description-input {
  flex: 1;
  padding: 8px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
}
.content-header__description-input:focus {
  outline: none;
  border-color: #e86197;
}
.content-header__description-input::placeholder {
  color: #bdbdbd;
}
@media (max-width: 767px) {
  .content-header__description-input {
    font-size: 12px;
  }
}
.content-header__description-submit {
  padding: 8px 24px;
  background: #e86197;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}
.content-header__description-submit:hover {
  background: #d64d86;
}
@media (max-width: 767px) {
  .content-header__description-submit {
    padding: 8px 16px;
    font-size: 12px;
  }
}

.broadcast-status {
  padding: 16px;
  background: #fafafa;
  border-bottom: 1px solid #eeeeee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 767px) {
  .broadcast-status {
    flex-direction: column;
    align-items: stretch;
  }
}
.broadcast-status__indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}
.broadcast-status__label {
  font-size: 14px;
  color: #808080;
  font-weight: 500;
}
.broadcast-status__value {
  font-size: 14px;
  color: #304050;
  font-weight: 600;
}
.broadcast-status__controls {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .broadcast-status__controls {
    width: 100%;
    flex-direction: column;
  }
}
.broadcast-status__btn {
  padding: 8px 16px;
  border: 1px solid #e86197;
  background: #ffffff;
  color: #e86197;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 250ms ease-in-out;
  white-space: nowrap;
}
.broadcast-status__btn:hover:not(:disabled) {
  background: #e86197;
  color: #ffffff;
}
.broadcast-status__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: #e0e0e0;
  color: #bdbdbd;
}
@media (max-width: 767px) {
  .broadcast-status__btn {
    width: 100%;
  }
}

.warning-bar {
  border-bottom: 1px solid #eeeeee;
}
.warning-bar__header {
  padding: 8px 16px;
  background: #FFF3E0;
  font-size: 14px;
  font-weight: 600;
  color: #304050;
}
.warning-bar__content {
  background: #FFFBF5;
}
.warning-bar__body {
  padding: 16px;
}
.warning-bar__message {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.warning-bar__icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.warning-bar__text {
  flex: 1;
  font-size: 14px;
  color: #304050;
  line-height: 1.75;
}

.alert {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(232, 97, 151, 0.2);
  border-radius: 8px;
  padding: 8px;
  margin: 0 32px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .alert {
    margin: 0 16px 16px;
  }
}
.alert--warning {
  border-color: rgba(244, 67, 54, 0.3);
  background: rgba(244, 67, 54, 0.05);
}
.alert--admin {
  background: #000000;
  border: none;
  padding: 8px 16px;
  margin: 0;
  border-radius: 0;
}
.alert__header {
  font-size: 14px;
  font-weight: 500;
  color: #304050;
  margin-bottom: 4px;
}
.alert__content {
  display: flex;
  align-items: center;
  gap: 8px;
}
.alert__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.alert__message {
  font-size: 14px;
  color: #304050;
  line-height: 1.75;
}
.alert__message--white {
  color: #ffffff;
}
.alert__message--gray {
  color: #bdbdbd;
}
.alert__divider {
  color: #757575;
  margin: 0 4px;
}

.stat-display {
  background: rgba(232, 97, 151, 0.1);
  border-radius: 4px;
  padding: 8px 16px;
  text-align: right;
}
.stat-display__label {
  font-size: 12px;
  color: #808080;
  margin: 0 0 4px;
}
.stat-display__value {
  font-size: 20px;
  font-weight: 700;
  color: #e86197;
  margin: 0;
}
.stat-display__unit {
  font-size: 14px;
  font-weight: 400;
}
.stat-display--floating {
  position: absolute;
  top: 16px;
  right: 32px;
  margin: 0;
  padding: 0;
  z-index: 10;
  background: transparent;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 8px;
}
.stat-display--floating .stat-display__label {
  color: #e86197;
  font-size: 16px;
  margin: 0;
}
.stat-display--floating .stat-display__value {
  color: #304050;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.inline-edit {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
}
.inline-edit__text {
  font-size: 12px;
  color: #808080;
  line-height: 1.5;
  margin: 0 0 4px;
  word-wrap: break-word;
}
.inline-edit input.inline-edit__input {
  flex: 1;
  padding: 4px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 0;
  font-size: 12px;
  outline: none;
}
.inline-edit input.inline-edit__input:focus {
  border-bottom-color: #e86197;
  box-shadow: none;
}
.inline-edit input.inline-edit__input::placeholder {
  color: #bdbdbd;
}
.inline-edit__actions {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

.title-bar {
  background: #FFF5F9;
  width: 100%;
  padding: 16px 32px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .title-bar {
    display: none;
  }
}
.title-bar__content {
  display: flex;
  align-items: center;
  gap: 24px;
}
.title-bar__title {
  font-size: 20px;
  font-weight: 700;
  color: #304050;
  margin: 0;
}
.title-bar__text {
  font-size: 16px;
  color: #304050;
  margin: 0;
}

.maintenance-banner {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: #212121;
  color: #ffffff;
  padding: 12px 16px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  z-index: 1030;
}
@media (max-width: 767px) {
  .maintenance-banner {
    padding: 10px 12px;
    font-size: 12px;
  }
}
.maintenance-banner__content {
  max-width: 1200px;
  margin: 0 auto;
}

body:has(.maintenance-banner) .main,
body:has(.maintenance-banner) .page--streaming {
  padding-top: 45px;
}
@media (max-width: 767px) {
  body:has(.maintenance-banner) .main,
  body:has(.maintenance-banner) .page--streaming {
    padding-top: 41px;
  }
}

.not-found__icon {
  font-size: 6rem;
  font-weight: 700;
  color: #e86197;
  margin-bottom: 24px;
  line-height: 1;
}
@media (max-width: 767px) {
  .not-found__icon {
    font-size: 4rem;
  }
}
.not-found__title {
  font-size: 20px;
  font-weight: 600;
  color: #304050;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .not-found__title {
    font-size: 18px;
  }
}
.not-found__timer {
  color: #808080;
  font-size: 14px;
}
@media (max-width: 767px) {
  .not-found__timer {
    font-size: 12px;
  }
}

.forbidden {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: 48px;
}
.forbidden__container {
  text-align: center;
  max-width: 400px;
}
.forbidden__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  width: 80px;
  height: 80px;
  color: #e86197;
  opacity: 0.5;
}
.forbidden__title {
  font-size: 24px;
  font-weight: 700;
  color: #304050;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .forbidden__title {
    font-size: 20px;
  }
}
.forbidden__message {
  font-size: 16px;
  color: #808080;
  margin-bottom: 24px;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .forbidden__message {
    font-size: 14px;
  }
}
.forbidden__redirect {
  font-size: 14px;
  color: #e86197;
  font-weight: 500;
}

.performer-dashboard {
  padding: 32px;
}
@media (max-width: 767px) {
  .performer-dashboard {
    padding: 16px;
  }
}
.performer-profile {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
}
@media (max-width: 767px) {
  .performer-profile {
    padding: 16px;
  }
}
.performer-stream {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  height: calc(100vh - 60px);
  padding: 24px;
}
@media (max-width: 767px) {
  .performer-stream {
    grid-template-columns: 1fr;
    height: auto;
    padding: 16px;
  }
}

.streaming-page {
  flex: 1;
}

.performer-streaming-page {
  flex: 1;
}
.performer-streaming-page .positioned {
  margin-top: 0;
  margin-bottom: 48px;
}
.performer-streaming-page .grid--main-aside {
  padding-top: 0;
  padding-bottom: 0;
}
.performer-streaming-page .stat-display--floating {
  right: calc(32px + 360px + 24px);
  top: 0;
}
@media (max-width: 767px) {
  .performer-streaming-page .stat-display--floating {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin: 0 16px;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
  }
}
.performer-streaming-page .video-player__frame {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.performer-streaming-page .title-bar {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .performer-streaming-page .positioned {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .performer-streaming-page .positioned .card__header--xl-padding {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 767px) {
  .performer-streaming-page .positioned .table-wrapper--split {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.viewer-streaming {
  flex: 1;
  background: #FFEEF5;
}

.profile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 767px) {
  .profile-actions {
    display: flex;
    flex-direction: column;
    margin: 16px;
    gap: 8px;
  }
}

.guide-wrapper {
  display: none;
}
@media (max-width: 767px) {
  .guide-wrapper {
    display: block;
    margin: 0 16px;
    padding: 16px 0;
  }
}

.performer-streaming {
  min-height: 100vh;
  background: #FFEEF5;
  display: flex;
  flex-direction: column;
}
.performer-streaming__main {
  flex: 1;
  padding: 24px;
}
@media (max-width: 767px) {
  .performer-streaming__main {
    padding: 8px;
  }
}
.performer-streaming__layout {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
}
@media (max-width: 767px) {
  .performer-streaming__layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.performer-streaming__main-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.m-0 {
  margin: 0 !important;
}

.m-xs {
  margin: 4px !important;
}

.m-sm {
  margin: 8px !important;
}

.m-md {
  margin: 16px !important;
}

.m-lg {
  margin: 24px !important;
}

.m-xl {
  margin: 32px !important;
}

.m-2xl {
  margin: 48px !important;
}

.m-3xl {
  margin: 64px !important;
}

.m-auto {
  margin: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-xs {
  margin-top: 4px !important;
}

.mt-sm {
  margin-top: 8px !important;
}

.mt-md {
  margin-top: 16px !important;
}

.mt-lg {
  margin-top: 24px !important;
}

.mt-xl {
  margin-top: 32px !important;
}

.mt-2xl {
  margin-top: 48px !important;
}

.mt-3xl {
  margin-top: 64px !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-xs {
  margin-right: 4px !important;
}

.mr-sm {
  margin-right: 8px !important;
}

.mr-md {
  margin-right: 16px !important;
}

.mr-lg {
  margin-right: 24px !important;
}

.mr-xl {
  margin-right: 32px !important;
}

.mr-2xl {
  margin-right: 48px !important;
}

.mr-3xl {
  margin-right: 64px !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-xs {
  margin-bottom: 4px !important;
}

.mb-sm {
  margin-bottom: 8px !important;
}

.mb-md {
  margin-bottom: 16px !important;
}

.mb-lg {
  margin-bottom: 24px !important;
}

.mb-xl {
  margin-bottom: 32px !important;
}

.mb-2xl {
  margin-bottom: 48px !important;
}

.mb-3xl {
  margin-bottom: 64px !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-xs {
  margin-left: 4px !important;
}

.ml-sm {
  margin-left: 8px !important;
}

.ml-md {
  margin-left: 16px !important;
}

.ml-lg {
  margin-left: 24px !important;
}

.ml-xl {
  margin-left: 32px !important;
}

.ml-2xl {
  margin-left: 48px !important;
}

.ml-3xl {
  margin-left: 64px !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mx-xs {
  margin-left: 4px !important;
  margin-right: 4px !important;
}

.mx-sm {
  margin-left: 8px !important;
  margin-right: 8px !important;
}

.mx-md {
  margin-left: 16px !important;
  margin-right: 16px !important;
}

.mx-lg {
  margin-left: 24px !important;
  margin-right: 24px !important;
}

.mx-xl {
  margin-left: 32px !important;
  margin-right: 32px !important;
}

.mx-2xl {
  margin-left: 48px !important;
  margin-right: 48px !important;
}

.mx-3xl {
  margin-left: 64px !important;
  margin-right: 64px !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-xs {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

.my-sm {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.my-md {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.my-lg {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.my-xl {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.my-2xl {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

.my-3xl {
  margin-top: 64px !important;
  margin-bottom: 64px !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-xs {
  padding: 4px !important;
}

.p-sm {
  padding: 8px !important;
}

.p-md {
  padding: 16px !important;
}

.p-lg {
  padding: 24px !important;
}

.p-xl {
  padding: 32px !important;
}

.p-2xl {
  padding: 48px !important;
}

.p-3xl {
  padding: 64px !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-xs {
  padding-top: 4px !important;
}

.pt-sm {
  padding-top: 8px !important;
}

.pt-md {
  padding-top: 16px !important;
}

.pt-lg {
  padding-top: 24px !important;
}

.pt-xl {
  padding-top: 32px !important;
}

.pt-2xl {
  padding-top: 48px !important;
}

.pt-3xl {
  padding-top: 64px !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pr-xs {
  padding-right: 4px !important;
}

.pr-sm {
  padding-right: 8px !important;
}

.pr-md {
  padding-right: 16px !important;
}

.pr-lg {
  padding-right: 24px !important;
}

.pr-xl {
  padding-right: 32px !important;
}

.pr-2xl {
  padding-right: 48px !important;
}

.pr-3xl {
  padding-right: 64px !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-xs {
  padding-bottom: 4px !important;
}

.pb-sm {
  padding-bottom: 8px !important;
}

.pb-md {
  padding-bottom: 16px !important;
}

.pb-lg {
  padding-bottom: 24px !important;
}

.pb-xl {
  padding-bottom: 32px !important;
}

.pb-2xl {
  padding-bottom: 48px !important;
}

.pb-3xl {
  padding-bottom: 64px !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-xs {
  padding-left: 4px !important;
}

.pl-sm {
  padding-left: 8px !important;
}

.pl-md {
  padding-left: 16px !important;
}

.pl-lg {
  padding-left: 24px !important;
}

.pl-xl {
  padding-left: 32px !important;
}

.pl-2xl {
  padding-left: 48px !important;
}

.pl-3xl {
  padding-left: 64px !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.px-xs {
  padding-left: 4px !important;
  padding-right: 4px !important;
}

.px-sm {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.px-md {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.px-lg {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.px-xl {
  padding-left: 32px !important;
  padding-right: 32px !important;
}

.px-2xl {
  padding-left: 48px !important;
  padding-right: 48px !important;
}

.px-3xl {
  padding-left: 64px !important;
  padding-right: 64px !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-xs {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.py-sm {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.py-md {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.py-lg {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.py-xl {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.py-2xl {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.py-3xl {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-xs {
  gap: 4px !important;
}

.gap-sm {
  gap: 8px !important;
}

.gap-md {
  gap: 16px !important;
}

.gap-lg {
  gap: 24px !important;
}

.gap-xl {
  gap: 32px !important;
}

.gap-2xl {
  gap: 48px !important;
}

.gap-3xl {
  gap: 64px !important;
}

.text-xs {
  font-size: 12px !important;
}

.text-sm {
  font-size: 14px !important;
}

.text-base {
  font-size: 16px !important;
}

.text-lg {
  font-size: 18px !important;
}

.text-xl {
  font-size: 20px !important;
}

.text-2xl {
  font-size: 24px !important;
}

.text-3xl {
  font-size: 30px !important;
}

.text-4xl {
  font-size: 36px !important;
}

.text-5xl {
  font-size: 48px !important;
}

.text-6xl {
  font-size: 64px !important;
}

.font-light {
  font-weight: 300 !important;
}

.font-normal {
  font-weight: 400 !important;
}

.font-medium {
  font-weight: 500 !important;
}

.font-semibold {
  font-weight: 600 !important;
}

.font-bold {
  font-weight: 700 !important;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify !important;
}

.uppercase {
  text-transform: uppercase !important;
}

.lowercase {
  text-transform: lowercase !important;
}

.capitalize {
  text-transform: capitalize !important;
}

.normal-case {
  text-transform: none !important;
}

.underline {
  text-decoration: underline !important;
}

.line-through {
  text-decoration: line-through !important;
}

.no-underline {
  text-decoration: none !important;
}

.text-primary {
  color: #e86197 !important;
}

.text-secondary {
  color: #808080 !important;
}

.text-success {
  color: #4CAF50 !important;
}

.text-danger {
  color: #F44336 !important;
}

.text-warning {
  color: #FF9800 !important;
}

.text-info {
  color: #2196F3 !important;
}

.text-light {
  color: #bdbdbd !important;
}

.text-dark {
  color: #212121 !important;
}

.text-white {
  color: #ffffff !important;
}

.text-black {
  color: #000000 !important;
}

.text-muted {
  color: #757575 !important;
}

.text-gray-50 {
  color: #fafafa !important;
}

.text-gray-100 {
  color: #f5f5f5 !important;
}

.text-gray-200 {
  color: #eeeeee !important;
}

.text-gray-300 {
  color: #e0e0e0 !important;
}

.text-gray-400 {
  color: #bdbdbd !important;
}

.text-gray-500 {
  color: #9e9e9e !important;
}

.text-gray-600 {
  color: #757575 !important;
}

.text-gray-700 {
  color: #616161 !important;
}

.text-gray-800 {
  color: #424242 !important;
}

.text-gray-900 {
  color: #212121 !important;
}

.leading-none {
  line-height: 1 !important;
}

.leading-tight {
  line-height: 1.25 !important;
}

.leading-normal {
  line-height: 1.5 !important;
}

.leading-relaxed {
  line-height: 1.75 !important;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.whitespace-normal {
  white-space: normal !important;
}

.whitespace-nowrap {
  white-space: nowrap !important;
}

.whitespace-pre {
  white-space: pre !important;
}

.whitespace-pre-line {
  white-space: pre-line !important;
}

.whitespace-pre-wrap {
  white-space: pre-wrap !important;
}

.break-normal {
  word-break: normal !important;
  overflow-wrap: normal !important;
}

.break-words {
  overflow-wrap: break-word !important;
}

.break-all {
  word-break: break-all !important;
}

.italic {
  font-style: italic !important;
}

.not-italic {
  font-style: normal !important;
}

.list-none {
  list-style: none !important;
}

.list-disc {
  list-style-type: disc !important;
}

.list-decimal {
  list-style-type: decimal !important;
}

.list-inside {
  list-style-position: inside !important;
}

.list-outside {
  list-style-position: outside !important;
}

.tracking-tighter {
  letter-spacing: -0.05em !important;
}

.tracking-tight {
  letter-spacing: -0.025em !important;
}

.tracking-normal {
  letter-spacing: 0 !important;
}

.tracking-wide {
  letter-spacing: 0.025em !important;
}

.tracking-wider {
  letter-spacing: 0.05em !important;
}

.tracking-widest {
  letter-spacing: 0.1em !important;
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-table-row {
  display: table-row !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-grid {
  display: grid !important;
}

@media (max-width: 767px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .w-sm-100 {
    width: 100% !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-grid {
    display: grid !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
}
.flex-row {
  flex-direction: row !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-start {
  justify-content: flex-start !important;
}

.justify-end {
  justify-content: flex-end !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-between {
  justify-content: space-between !important;
}

.justify-around {
  justify-content: space-around !important;
}

.justify-evenly {
  justify-content: space-evenly !important;
}

.items-start {
  align-items: flex-start !important;
}

.items-end {
  align-items: flex-end !important;
}

.items-center {
  align-items: center !important;
}

.items-baseline {
  align-items: baseline !important;
}

.items-stretch {
  align-items: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.flex-1 {
  flex: 1 1 0% !important;
}

.flex-auto {
  flex: 1 1 auto !important;
}

.flex-initial {
  flex: 0 1 auto !important;
}

.flex-none {
  flex: none !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink {
  flex-shrink: 1 !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.right-0 {
  right: 0 !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.left-0 {
  left: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.right-50 {
  right: 50% !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.left-50 {
  left: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.right-100 {
  right: 100% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.left-100 {
  left: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.overflow-x-auto {
  overflow-x: auto !important;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-x-visible {
  overflow-x: visible !important;
}

.overflow-x-scroll {
  overflow-x: scroll !important;
}

.overflow-y-auto {
  overflow-y: auto !important;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.overflow-y-visible {
  overflow-y: visible !important;
}

.overflow-y-scroll {
  overflow-y: scroll !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.w-full {
  width: 100% !important;
}

.w-screen {
  width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.h-full {
  height: 100% !important;
}

.h-screen {
  height: 100vh !important;
}

.min-w-0 {
  min-width: 0 !important;
}

.min-w-full {
  min-width: 100% !important;
}

.max-w-none {
  max-width: none !important;
}

.max-w-full {
  max-width: 100% !important;
}

.max-w-screen-sm {
  max-width: 576px !important;
}

.max-w-screen-md {
  max-width: 768px !important;
}

.max-w-screen-lg {
  max-width: 992px !important;
}

.max-w-screen-xl {
  max-width: 1200px !important;
}

.min-h-0 {
  min-height: 0 !important;
}

.min-h-full {
  min-height: 100% !important;
}

.min-h-screen {
  min-height: 100vh !important;
}

.max-h-none {
  max-height: none !important;
}

.max-h-full {
  max-height: 100% !important;
}

.max-h-screen {
  max-height: 100vh !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-10 {
  z-index: 10 !important;
}

.z-20 {
  z-index: 20 !important;
}

.z-30 {
  z-index: 30 !important;
}

.z-40 {
  z-index: 40 !important;
}

.z-50 {
  z-index: 50 !important;
}

.z-auto {
  z-index: auto !important;
}

.cursor-auto {
  cursor: auto !important;
}

.cursor-default {
  cursor: default !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.cursor-wait {
  cursor: wait !important;
}

.cursor-text {
  cursor: text !important;
}

.cursor-move {
  cursor: move !important;
}

.cursor-not-allowed {
  cursor: not-allowed !important;
}

.cursor-help {
  cursor: help !important;
}

.user-select-auto {
  user-select: auto !important;
}

.user-select-none {
  user-select: none !important;
}

.user-select-text {
  user-select: text !important;
}

.user-select-all {
  user-select: all !important;
}

.pointer-events-none {
  pointer-events: none !important;
}

.pointer-events-auto {
  pointer-events: auto !important;
}

.border-0 {
  border: 0 !important;
}

.border {
  border: 1px solid #e0e0e0 !important;
}

.border-top {
  border-top: 1px solid #e0e0e0 !important;
}

.border-right {
  border-right: 1px solid #e0e0e0 !important;
}

.border-bottom {
  border-bottom: 1px solid #e0e0e0 !important;
}

.border-left {
  border-left: 1px solid #e0e0e0 !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-sm {
  border-radius: 4px !important;
}

.rounded {
  border-radius: 8px !important;
}

.rounded-lg {
  border-radius: 12px !important;
}

.rounded-xl {
  border-radius: 16px !important;
}

.rounded-full {
  border-radius: 9999px !important;
}

.rounded-top {
  border-top-left-radius: 8px !important;
  border-top-right-radius: 8px !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.shadow-none {
  box-shadow: none !important;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}

.shadow {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

.bg-pink {
  background-color: #FFF5F9 !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-gray-50 {
  background-color: #fafafa !important;
}

.bg-gray-100 {
  background-color: #f5f5f5 !important;
}

.bg-primary {
  background-color: #e86197 !important;
}

.bg-secondary {
  background-color: #bdbdbd !important;
}

.hover-bg-gray-100:hover {
  background-color: #f5f5f5 !important;
}

.object-contain {
  object-fit: contain !important;
}

.object-cover {
  object-fit: cover !important;
}

.object-fill {
  object-fit: fill !important;
}

.object-none {
  object-fit: none !important;
}

.object-scale-down {
  object-fit: scale-down !important;
}
