.custom-select {
  position: relative;
  width: 100%;
  min-width: 120px;
}
.custom-select__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 45px;
  padding: 0 15px;
  gap: 10px;
  font-family: "Caveat Brush", cursive;
  font-size: 16px;
  font-weight: 400;
  color: #FFF5DD;
  text-align: left;
  background-color: #2a2a2a;
  border: 2px solid #FFB300;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}
.custom-select__btn:hover {
  background-color: rgba(255, 179, 0, 0.05);
}
.custom-select__btn.open {
  background-color: rgba(255, 179, 0, 0.1);
}
.custom-select__btn.open .custom-select__arrow {
  transform: rotate(180deg);
}
.custom-select__text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.custom-select__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #FFB300;
  transition: transform 0.3s ease;
}
.custom-select__dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  z-index: 1000;
  width: 100%;
  max-height: 250px;
  padding: 5px;
  background-color: #2a2a2a;
  border: 2px solid #FFB300;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(255, 179, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s ease;
  overflow-y: auto;
}
.custom-select__dropdown::-webkit-scrollbar {
  width: 8px;
}
.custom-select__dropdown::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 6px;
}
.custom-select__dropdown::-webkit-scrollbar-thumb {
  background: #FFB300;
  border-radius: 6px;
}
.custom-select__dropdown::-webkit-scrollbar-thumb:hover {
  background: #F5701E;
}
.custom-select__dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.custom-select__option {
  position: relative;
  padding: 10px 15px;
  font-size: 16px;
  color: #FFF5DD;
  background-color: transparent;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}
.custom-select__option::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background-color: #FFB300;
  border-radius: 6px;
  transition: width 0.3s ease;
}
.custom-select__option:hover {
  background-color: rgba(255, 179, 0, 0.1);
  padding-left: 25px;
}
.custom-select__option:hover::before {
  width: 10px;
}
.custom-select__option--active, .custom-select__option.active {
  background-color: rgba(255, 179, 0, 0.15);
  color: #FFB300;
  font-weight: 600;
  border-radius: 8px;
  margin: 5px 0;
}
.custom-select__option--active::before, .custom-select__option.active::before {
  width: 10px;
}

.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.loader-overlay.fade-out {
  animation: fadeOut 1s ease-out forwards;
}

.loader-container {
  position: relative;
  width: 400px;
  height: 500px;
}
@media (max-width: 480px) {
  .loader-container {
    width: 300px;
    height: 400px;
  }
}
.loader-container #coinSvg {
  width: 100%;
  height: auto;
}

.percentage-text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffb300;
  font-size: clamp(24px, 5vw, 32px);
  font-weight: bold;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(255, 179, 0, 0.5);
  white-space: nowrap;
  width: 100%;
  text-align: center;
}

.mouse-head {
  animation: mouseBounce 2s ease-in-out infinite;
  transform-origin: 1000px 1000px;
}

@keyframes mouseBounce {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.08) rotate(-5deg) translateY(-10px);
  }
  50% {
    transform: scale(0.92) rotate(0deg) translateY(0px);
  }
  75% {
    transform: scale(1.08) rotate(5deg) translateY(-10px);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.s0 {
  fill: #f5701e;
}

.s1 {
  fill: #ffb300;
}

.s2 {
  fill: #000000;
}

.s3 {
  fill: #fff5dd;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000000;
  color: #FFF5DD;
  font-family: "Caveat Brush", cursive;
  font-weight: 400;
  padding-bottom: 80px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.container {
  max-width: 100%;
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-bottom: 2px solid #F5701E;
  gap: 20px;
  min-height: 60px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  border-radius: 0 0 15px 15px;
}
.header .header-left {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}
.header .header-left .header-logo {
  height: 50px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(255, 179, 0, 0.5));
}
.header .header-left .header-price {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header .header-left .header-price .price-value {
  font-size: 42px;
  font-weight: bold;
  color: #FFB300;
  text-shadow: 0 0 10px rgba(255, 179, 0, 0.5);
  line-height: 1;
}
.header .header-left .header-price .price-change {
  font-size: 24px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.header .header-left .header-price .price-change.positive {
  background-color: rgba(0, 255, 0, 0.2);
  color: #00ff00;
}
.header .header-left .header-price .price-change.negative {
  background-color: rgba(255, 0, 0, 0.2);
  color: #ff4444;
}
.header .header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header .header-right .header-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  height: 30px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 2px solid #FFB300;
  border-radius: 6px;
}
.header .header-right .header-timer .timer-value {
  font-size: 16px;
  font-weight: bold;
  color: #FFB300;
}
.header .header-right .header-toggle {
  width: 30px;
  height: 30px;
  background: #FFB300;
  border: none;
  color: #000000;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.header .header-right .header-toggle:hover {
  background: #F5701E;
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .header {
    padding: 5px 15px;
    gap: 10px;
    min-height: 50px;
  }
  .header .header-logo {
    height: 40px;
  }
  .header .header-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .header .header-price .price-value {
    font-size: 24px;
  }
  .header .header-price .price-change {
    font-size: 16px;
    padding: 4px 8px;
  }
  .header .header-right {
    flex-direction: column;
    gap: 4px;
    color: #FFB300;
    min-width: 70px;
    text-align: center;
  }
  .header .header-right .header-timer {
    height: 20px;
    padding: 0 10px;
  }
  .header .header-right .header-timer .timer-value {
    font-size: 12px;
  }
  .header .header-right .header-toggle {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
}

@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(255, 179, 0, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(255, 179, 0, 0.8));
  }
}
.section {
  max-width: 1400px;
  margin: 20px auto;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 15px;
  border: 2px solid #FFB300;
  overflow: hidden;
}
.section:not(.open) .section-content {
  display: none;
}
.section .section-header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 80px;
}
.section .section-header:hover {
  background: rgba(255, 179, 0, 0.1);
}
.section .section-header .section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 28px;
  color: #FFB300;
  margin: 0;
}
.section .section-header .section-title img {
  width: 40px;
  height: 40px;
}
.section .section-header .section-arrow {
  font-size: 24px;
  color: #FFB300;
  transition: transform 0.3s ease;
}
.section.open .section-arrow {
  transform: rotate(180deg);
}
.section .section-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.section.open .section-content {
  display: block;
  max-height: 5000px;
  padding: 0 20px 20px;
}
@media (max-width: 768px) {
  .section {
    margin: 10px auto;
    max-width: calc(100% - 10px * 2);
  }
  .section .section-header {
    padding: 15px;
    min-height: 60px;
  }
  .section.open .section-content {
    padding: 0 10px 10px;
  }
}

.footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1400px;
  width: calc(100% - 40px);
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-top: 2px solid #F5701E;
  padding: 15px;
  text-align: center;
  font-size: 20px;
  border-radius: 15px 15px 0 0;
}
.footer a {
  color: #FFB300;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer a:hover {
  color: #F5701E;
}

@media (max-width: 768px) {
  .section {
    margin: 10px;
  }
  .section .section-header .section-title {
    font-size: 22px;
  }
  .section .section-header .section-title img {
    width: 30px;
    height: 30px;
  }
}
.fullscreen-mode {
  display: none;
}
.fullscreen-mode.active {
  display: block;
}

.close-fullscreen {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: #000000;
  border: 2px solid #FFB300;
  border-radius: 8px;
  color: #FFB300;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.3s ease;
}
.close-fullscreen:hover {
  background: linear-gradient(135deg, #FFB300 0%, #F5701E 100%);
  color: #000000;
  transform: rotate(90deg);
}

.custom-select {
  position: relative;
  width: 100%;
  min-width: 120px;
}
.custom-select__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 45px;
  padding: 0 15px;
  gap: 10px;
  font-family: "Caveat Brush", cursive;
  font-size: 16px;
  font-weight: 400;
  color: #FFF5DD;
  text-align: left;
  background-color: #2a2a2a;
  border: 2px solid #FFB300;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}
.custom-select__btn:hover {
  background-color: rgba(255, 179, 0, 0.05);
}
.custom-select__btn.open {
  background-color: rgba(255, 179, 0, 0.1);
}
.custom-select__btn.open .custom-select__arrow {
  transform: rotate(180deg);
}
.custom-select__text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.custom-select__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #FFB300;
  transition: transform 0.3s ease;
}
.custom-select__dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  z-index: 1000;
  width: 100%;
  max-height: 250px;
  padding: 5px;
  background-color: #2a2a2a;
  border: 2px solid #FFB300;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(255, 179, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s ease;
  overflow-y: auto;
}
.custom-select__dropdown::-webkit-scrollbar {
  width: 8px;
}
.custom-select__dropdown::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 6px;
}
.custom-select__dropdown::-webkit-scrollbar-thumb {
  background: #FFB300;
  border-radius: 6px;
}
.custom-select__dropdown::-webkit-scrollbar-thumb:hover {
  background: #F5701E;
}
.custom-select__dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.custom-select__option {
  position: relative;
  padding: 10px 15px;
  font-size: 16px;
  color: #FFF5DD;
  background-color: transparent;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}
.custom-select__option::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background-color: #FFB300;
  border-radius: 6px;
  transition: width 0.3s ease;
}
.custom-select__option:hover {
  background-color: rgba(255, 179, 0, 0.1);
  padding-left: 25px;
}
.custom-select__option:hover::before {
  width: 10px;
}
.custom-select__option--active, .custom-select__option.active {
  background-color: rgba(255, 179, 0, 0.15);
  color: #FFB300;
  font-weight: 600;
  border-radius: 8px;
  margin: 5px 0;
}
.custom-select__option--active::before, .custom-select__option.active::before {
  width: 10px;
}

.user-panel {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
}
.user-panel .login-form {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 40px;
  border-radius: 15px;
  border: 2px solid #FFB300;
}
.user-panel .form-group {
  margin-bottom: 20px;
}
.user-panel .form-group label {
  display: block;
  color: #FFB300;
  font-size: 20px;
  margin-bottom: 8px;
}
.user-panel .input-wrapper {
  position: relative;
}
.user-panel .input-wrapper input {
  width: 100%;
  padding: 15px 50px 15px 45px;
  background: #000000;
  border: 2px solid #444;
  border-radius: 8px;
  color: #FFF5DD;
  font-size: 18px;
  font-family: "Caveat Brush", cursive;
  transition: all 0.3s ease;
}
.user-panel .input-wrapper input:focus {
  outline: none;
  border-color: #FFB300;
}
.user-panel .input-wrapper input::placeholder {
  color: #666;
}
.user-panel .input-wrapper input:invalid {
  border-color: #ff4444;
}
.user-panel .input-wrapper input:required:invalid:focus {
  border-color: #F5701E;
}
.user-panel .input-wrapper .input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}
.user-panel .input-wrapper .toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}
.user-panel .input-wrapper .toggle-password svg {
  width: 20px;
  height: 20px;
  stroke: #FFB300;
  transition: all 0.3s ease;
}
.user-panel .input-wrapper .toggle-password:hover {
  transform: translateY(-50%) scale(1.1);
}
.user-panel .input-wrapper .toggle-password:hover svg {
  stroke: #F5701E;
}
.user-panel .input-wrapper .toggle-password:focus {
  outline: none;
}
.user-panel .input-wrapper .toggle-password .eye-open,
.user-panel .input-wrapper .toggle-password .eye-closed {
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-panel .login-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #FFB300 0%, #F5701E 100%);
  border: none;
  color: #000000;
  font-size: 22px;
  font-family: "Caveat Brush", cursive;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.user-panel .login-btn:hover {
  transform: scale(1.02);
}
.user-panel .form-footer {
  margin-top: 20px;
  text-align: center;
}
.user-panel .form-footer .forgot-password {
  color: #FFB300;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}
.user-panel .form-footer .forgot-password:hover {
  color: #F5701E;
}
.user-panel .loading-animation {
  display: none;
  padding: 60px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 15px;
  border: 2px solid #FFB300;
  text-align: center;
}
.user-panel .loading-animation.show {
  display: flex;
  justify-content: center;
  align-items: center;
}
.user-panel .loading-animation .login-loader-container {
  width: 200px;
  height: 200px;
}
.user-panel .loading-animation .login-loader-container svg {
  width: 100%;
  height: 100%;
}
.user-panel .loading-animation .login-loader-container svg .s0 {
  fill: #FFB300;
}
.user-panel .loading-animation .login-loader-container svg .s1 {
  fill: #FFA500;
}
.user-panel .loading-animation .login-loader-container svg .s2 {
  fill: #1a1a1a;
}
.user-panel .loading-animation .login-loader-container svg .s3 {
  fill: #FFF5DD;
}
.user-panel .loading-animation .login-loader-container svg .mouse-head {
  animation: mouseHeadBounce 0.6s ease-in-out infinite alternate;
}
.user-panel .error-message {
  display: none;
  margin-top: 20px;
  padding: 15px 20px;
  background: rgba(255, 0, 0, 0.2);
  border: 2px solid #ff4444;
  border-radius: 8px;
  color: #ff6666;
  font-size: 18px;
  animation: shake 0.5s ease;
}
.user-panel .error-message.show {
  display: flex;
  align-items: center;
  gap: 10px;
}

@keyframes logoSpinFast {
  0% {
    transform: scale(0) rotate(0deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(720deg);
    opacity: 1;
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-10px);
  }
  75% {
    transform: translateX(10px);
  }
}
.user-dashboard {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}
.user-dashboard .user-header {
  padding: 20px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 15px;
  border: 2px solid #FFB300;
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  .user-dashboard .user-header {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 30px;
    align-items: center;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .user-dashboard .user-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 15px;
  }
  .user-dashboard .user-header .user-header__avatar-section {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .user-dashboard .user-header .user-header__balance-section {
    grid-column: 1/3;
    grid-row: 2/3;
    justify-content: center;
  }
  .user-dashboard .user-header .user-header__actions {
    grid-column: 2/3;
    grid-row: 1/2;
    justify-content: flex-end;
  }
}
@media (max-width: 768px) {
  .user-dashboard .user-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
}
.user-dashboard .user-header__avatar-section {
  display: flex;
  align-items: center;
  gap: 15px;
}
.user-dashboard .user-header__avatar-btn {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
}
.user-dashboard .user-header__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #FFB300;
  object-fit: cover;
}
@media (max-width: 768px) {
  .user-dashboard .user-header__avatar {
    width: 60px;
    height: 60px;
  }
}
.user-dashboard .user-header__name {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.user-dashboard .user-header__name-line1, .user-dashboard .user-header__name-line2 {
  font-size: 24px;
  color: #FFB300;
  line-height: 1.1;
  font-weight: bold;
}
@media (max-width: 768px) {
  .user-dashboard .user-header__name-line1, .user-dashboard .user-header__name-line2 {
    font-size: 20px;
  }
}
.user-dashboard .user-header__balance-section {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .user-dashboard .user-header__balance-section {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .user-dashboard .user-header__balance-section {
    flex-direction: column;
    gap: 10px;
  }
}
.user-dashboard .user-header__balance-box {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
@media (max-width: 768px) {
  .user-dashboard .user-header__balance-box {
    justify-content: center;
    width: 100%;
  }
}
.user-dashboard .user-header__balance-amount {
  font-size: 32px;
  font-weight: bold;
  color: #F5701E;
}
@media (max-width: 768px) {
  .user-dashboard .user-header__balance-amount {
    font-size: 28px;
  }
}
.user-dashboard .user-header__balance-currency {
  font-size: 20px;
  color: #FFF5DD;
}
@media (max-width: 768px) {
  .user-dashboard .user-header__balance-currency {
    font-size: 18px;
  }
}
.user-dashboard .user-header__balance-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.user-dashboard .user-header__actions {
  display: flex;
  gap: 10px;
}
@media (min-width: 1024px) {
  .user-dashboard .user-header__actions {
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .user-dashboard .user-header__actions {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .user-dashboard .user-header__actions {
    flex-direction: row;
    justify-content: space-around;
  }
}
.user-dashboard .user-header__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 15px;
  background: linear-gradient(135deg, #FFB300 0%, #F5701E 100%);
  border: none;
  border-radius: 8px;
  color: #000000;
  font-family: "Caveat Brush", cursive;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px;
  height: 45px;
}
@media (max-width: 768px) {
  .user-dashboard .user-header__action-btn {
    min-width: 0;
    width: 60px;
    height: 60px;
    padding: 0;
    border-radius: 10px;
  }
}
.user-dashboard .user-header__action-btn:hover {
  transition: transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 179, 0, 0.5);
}
.user-dashboard .user-header__action-btn:hover:hover {
  transform: translateY(-2px);
}
.user-dashboard .user-header__action-icon {
  width: 24px;
  height: 24px;
}
@media (max-width: 768px) {
  .user-dashboard .user-header__action-icon {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 768px) {
  .user-dashboard .user-header__action-text {
    display: none;
  }
}
.user-dashboard .action-buttons {
  display: grid;
  gap: 15px;
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  .user-dashboard .action-buttons {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .user-dashboard .action-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .user-dashboard .action-buttons {
    grid-template-columns: repeat(4, 1fr);
  }
}
.user-dashboard .action-buttons .action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  border: 2px solid #FFB300;
  background: #2a2a2a;
  color: #FFF5DD;
  font-size: 18px;
  font-family: "Caveat Brush", cursive;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 70px;
}
@media (max-width: 768px) {
  .user-dashboard .action-buttons .action-btn {
    flex-direction: column;
    padding: 10px;
    min-height: 70px;
    aspect-ratio: 1;
    gap: 5px;
  }
}
.user-dashboard .action-buttons .action-btn img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .user-dashboard .action-buttons .action-btn img {
    width: 32px;
    height: 32px;
  }
}
@media (min-width: 1024px) {
  .user-dashboard .action-buttons .action-btn .btn-text {
    display: inline;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .user-dashboard .action-buttons .action-btn .btn-text {
    display: inline;
  }
}
@media (max-width: 768px) {
  .user-dashboard .action-buttons .action-btn .btn-text {
    display: none;
  }
}
.user-dashboard .action-buttons .action-btn:hover {
  background: #FFB300;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 179, 0, 0.5);
}
.user-dashboard .action-buttons .action-btn.buy-btn:hover {
  background: #00ff00;
}
.user-dashboard .action-buttons .action-btn.sell-btn:hover {
  background: #ff4444;
}
.user-dashboard .transaction-history {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 15px;
  border: 2px solid #FFB300;
  overflow: hidden;
}
.user-dashboard .transaction-history .transaction-header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}
.user-dashboard .transaction-history .transaction-header:hover {
  background: rgba(255, 179, 0, 0.1);
}
.user-dashboard .transaction-history .transaction-header h3 {
  font-size: 28px;
  color: #FFB300;
  margin: 0;
}
.user-dashboard .transaction-history .transaction-header .transaction-toggle {
  font-size: 24px;
  color: #FFB300;
  transition: transform 0.3s ease;
}
.user-dashboard .transaction-history.open .transaction-toggle {
  transform: rotate(180deg);
}
.user-dashboard .transaction-history .transactions-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.user-dashboard .transaction-history.open .transactions-list {
  max-height: 600px;
  overflow-y: auto;
  padding: 0 20px 20px;
}
.user-dashboard .transaction-history.open .transactions-list::-webkit-scrollbar {
  width: 8px;
}
.user-dashboard .transaction-history.open .transactions-list::-webkit-scrollbar-track {
  background: #000000;
  border-radius: 10px;
}
.user-dashboard .transaction-history.open .transactions-list::-webkit-scrollbar-thumb {
  background: #FFB300;
  border-radius: 10px;
}
.user-dashboard .transaction-history.open .transactions-list::-webkit-scrollbar-thumb:hover {
  background: #F5701E;
}
.user-dashboard .transaction-history .transaction-filters {
  padding: 15px 0;
  border-bottom: 1px solid #444;
  display: grid;
  gap: 15px;
  overflow: visible !important;
}
@media (min-width: 768px) {
  .user-dashboard .transaction-history .transaction-filters {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .user-dashboard .transaction-history .transaction-filters {
    grid-template-columns: 1fr;
    gap: 10px;
    flex-direction: column;
  }
  .user-dashboard .transaction-history .transaction-filters .custom-select-wrapper {
    width: 100%;
    min-width: 0;
  }
  .user-dashboard .transaction-history .transaction-filters .custom-select-wrapper .custom-select-btn {
    padding: 10px;
    font-size: 14px;
  }
  .user-dashboard .transaction-history .transaction-filters .custom-select-wrapper .custom-select-dropdown .custom-select-option {
    padding: 10px;
    font-size: 14px;
  }
}
.user-dashboard .transaction-history .transaction-item {
  padding: 15px;
  background: #000000;
  border-radius: 8px;
  margin-bottom: 10px;
  display: flex;
  gap: 15px;
  align-items: center;
  border: 1px solid #444;
  transition: all 0.3s ease;
}
.user-dashboard .transaction-history .transaction-item:hover {
  border-color: #FFB300;
  transform: translateX(4px);
}
.user-dashboard .transaction-history .transaction-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-dashboard .transaction-history .transaction-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.user-dashboard .transaction-history .transaction-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.user-dashboard .transaction-history .transaction-item__date {
  font-size: 12px;
  color: #999;
  line-height: 1;
}
.user-dashboard .transaction-history .transaction-item__description {
  font-size: 16px;
  color: #FFF5DD;
  line-height: 1.3;
  font-weight: 500;
}
.user-dashboard .transaction-history .transaction-item__status {
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}
.user-dashboard .transaction-history .transaction-item__amounts {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}
.user-dashboard .transaction-history .transaction-item__amounts div {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  white-space: nowrap;
}
.user-dashboard .transaction-history .transaction-item.pending {
  border-color: rgba(255, 179, 0, 0.5);
}
.user-dashboard .transaction-history .transaction-item.rejected {
  opacity: 0.6;
}
.user-dashboard .transaction-history .transaction-item.rejected .transaction-item__description {
  color: #999;
}
@media (max-width: 768px) {
  .user-dashboard .transaction-history .transaction-item {
    padding: 10px;
    gap: 10px;
  }
  .user-dashboard .transaction-history .transaction-item__icon {
    width: 32px;
    height: 32px;
  }
  .user-dashboard .transaction-history .transaction-item__date {
    font-size: 10px;
  }
  .user-dashboard .transaction-history .transaction-item__description {
    font-size: 14px;
  }
  .user-dashboard .transaction-history .transaction-item__status {
    font-size: 12px;
  }
  .user-dashboard .transaction-history .transaction-item__amounts div {
    font-size: 18px;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
}
.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .modal-content {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 2px solid #FFB300;
  border-radius: 15px;
  padding: 0;
  max-width: 500px;
  width: 90%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.modal .modal-content .modal-exit {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: #ff4444;
  border: 2px solid #ff1111;
  color: white;
  font-size: 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
.modal .modal-content .modal-exit:hover {
  background: #ff1111;
  transform: scale(1.1);
}
.modal .modal-content .modal-header {
  padding: 30px 30px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 15px 15px 0 0;
}
.modal .modal-content .modal-header .modal-icon {
  width: 40px;
  height: 40px;
}
.modal .modal-content .modal-header h2 {
  color: #FFB300;
  margin: 0;
  font-size: 28px;
  flex: 1;
}
.modal .modal-content .modal-summary {
  padding: 15px 30px;
  text-align: center;
}
.modal .modal-content .modal-summary span {
  color: #FFF5DD;
  font-size: 18px;
  font-weight: normal;
}
.modal .modal-content .modal-label {
  padding: 20px 30px 15px;
  text-align: center;
}
.modal .modal-content .modal-label span {
  color: #FFF5DD;
  font-size: 20px;
  font-weight: bold;
}
.modal .modal-content .modal-input-section {
  padding: 0 30px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal .modal-content .modal-input-section .input-decrement, .modal .modal-content .modal-input-section .input-increment {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: #FFB300;
  border: none;
  color: #000;
  font-size: 28px;
  font-family: "Caveat Brush", cursive;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.modal .modal-content .modal-input-section .input-decrement:hover, .modal .modal-content .modal-input-section .input-increment:hover {
  background: #F5701E;
  transform: scale(1.1);
}
.modal .modal-content .modal-input-section input {
  flex: 1;
  min-width: 0;
  padding: 15px;
  background: #000;
  border: 2px solid #FFB300;
  color: #FFF5DD;
  font-size: 24px;
  font-family: "Caveat Brush", cursive;
  border-radius: 8px;
  text-align: center;
}
.modal .modal-content .modal-actions {
  padding: 0 30px 20px;
}
.modal .modal-content .modal-actions .payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}
.modal .modal-content .modal-actions .payment-methods .payment-btn {
  padding: 15px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 2px solid #FFB300;
  color: #FFF5DD;
  font-family: "Caveat Brush", cursive;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.modal .modal-content .modal-actions .payment-methods .payment-btn img {
  width: 24px;
  height: 24px;
}
.modal .modal-content .modal-actions .payment-methods .payment-btn:hover {
  background: rgba(255, 179, 0, 0.2);
  transform: translateY(-2px);
}
.modal .modal-content .modal-actions .modal-submit {
  width: 100%;
  padding: 20px;
  background: #FFB300;
  border: none;
  color: #000;
  font-size: 24px;
  font-family: "Caveat Brush", cursive;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.modal .modal-content .modal-actions .modal-submit:hover {
  background: #F5701E;
  transform: scale(1.02);
}
.modal .modal-content .modal-message {
  padding: 20px 30px;
  border-radius: 0 0 15px 15px;
  border-top: 2px solid #F5701E;
  margin-top: 15px;
}
.modal .modal-content .modal-message #modalMessageText {
  padding: 20px 40px;
  border-radius: 10px;
  font-size: 20px;
  border: 2px solid;
  animation: resultPop 0.5s ease;
  background: rgba(255, 179, 0, 0.2);
  color: #FFB300;
  border-color: #FFB300;
  white-space: pre-line;
  display: block;
}
.modal .modal-content .modal-message #modalMessageText.success {
  padding: 20px 40px;
  border-radius: 10px;
  font-size: 20px;
  border: 2px solid;
  animation: resultPop 0.5s ease;
  background: rgba(0, 255, 0, 0.2);
  color: #00ff00;
  border-color: #00ff00;
}
.modal .modal-content .modal-message #modalMessageText.error {
  padding: 20px 40px;
  border-radius: 10px;
  font-size: 20px;
  border: 2px solid;
  animation: resultPop 0.5s ease;
  background: rgba(255, 0, 0, 0.2);
  color: #ff4444;
  border-color: #ff4444;
}

.avatar-upload-modal {
  max-width: 600px;
}
.avatar-upload-modal .avatar-upload-container {
  padding: 20px;
}
.avatar-upload-modal .avatar-upload-area {
  padding: 40px;
  border: 3px dashed #FFB300;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.avatar-upload-modal .avatar-upload-area:hover {
  border-color: #F5701E;
  background: rgba(255, 179, 0, 0.1);
}
.avatar-upload-modal .avatar-upload-area.dragover {
  border-color: #00ff00;
  background: rgba(0, 255, 0, 0.1);
}
.avatar-upload-modal .avatar-upload-area .upload-prompt .upload-icon {
  font-size: 64px;
  display: block;
  margin-bottom: 15px;
}
.avatar-upload-modal .avatar-upload-area .upload-prompt p {
  font-size: 20px;
  color: #FFF5DD;
  margin: 10px 0;
}
.avatar-upload-modal .avatar-upload-area .upload-prompt .upload-hint {
  font-size: 16px;
  color: #999;
}
.avatar-upload-modal .avatar-cropper-container {
  max-width: 100%;
  max-height: 400px;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}
.avatar-upload-modal .avatar-cropper-container img {
  max-width: 100%;
  display: block;
}
.avatar-upload-modal .modal-actions .modal-submit {
  width: 100%;
  padding: 20px;
  background: #FFB300;
  border: none;
  color: #000;
  font-size: 24px;
  font-family: "Caveat Brush", cursive;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.avatar-upload-modal .modal-actions .modal-submit:hover {
  background: #F5701E;
  transform: scale(1.02);
}

.settings-modal {
  max-width: 700px;
}
.settings-modal .settings-container {
  padding: 30px;
}
.settings-modal .settings-section {
  margin-bottom: 30px;
}
.settings-modal .settings-section h3 {
  font-size: 24px;
  color: #FFB300;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #FFB300;
}
.settings-modal .settings-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 179, 0, 0.2);
}
.settings-modal .settings-row label {
  font-size: 18px;
  color: #FFF5DD;
  font-weight: bold;
}
.settings-modal .settings-row .settings-value {
  font-size: 18px;
  color: #F5701E;
}
.settings-modal .settings-row .settings-select {
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #FFB300;
  color: #FFF5DD;
  font-size: 18px;
  font-family: "Caveat Brush", cursive;
  border-radius: 8px;
  cursor: pointer;
  min-width: 150px;
}
.settings-modal .settings-row .settings-select:hover {
  background: rgba(255, 179, 0, 0.1);
}
.settings-modal .settings-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
.settings-modal .settings-actions .settings-btn {
  padding: 20px;
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
  border: none;
  color: white;
  font-size: 20px;
  font-family: "Caveat Brush", cursive;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.settings-modal .settings-actions .settings-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(155, 89, 182, 0.4);
}
@media (max-width: 768px) {
  .settings-modal {
    max-width: 95%;
  }
  .settings-modal .settings-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .settings-modal .settings-row label {
    font-size: 16px;
  }
  .settings-modal .settings-row .settings-value,
  .settings-modal .settings-row .settings-select {
    font-size: 16px;
    width: 100%;
  }
  .settings-modal .settings-actions .settings-btn {
    font-size: 18px;
    padding: 15px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
  }
  .settings-modal .settings-actions .settings-btn:hover {
    background: #F5701E;
  }
}

.construction-popup {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
}
.construction-popup.show {
  display: flex;
  align-items: center;
  justify-content: center;
}
.construction-popup .popup-content {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 40px;
  border: 2px solid #FFB300;
  border-radius: 15px;
  text-align: center;
  max-width: 500px;
}
.construction-popup .popup-content h2 {
  font-size: 32px;
  color: #FFB300;
  margin-bottom: 20px;
}
.construction-popup .popup-content img {
  width: 200px;
  height: 200px;
  margin: 20px 0;
}
.construction-popup .popup-content button {
  padding: 15px 30px;
  background: linear-gradient(135deg, #FFB300 0%, #F5701E 100%);
  border: none;
  color: #000000;
  font-size: 20px;
  font-family: "Caveat Brush", cursive;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.construction-popup .popup-content button:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .user-dashboard {
    padding: 20px 15px;
  }
  .user-dashboard .user-header {
    grid-template-columns: 80px 1fr auto;
    grid-template-rows: auto auto;
    gap: 10px;
    padding: 15px;
  }
  .user-dashboard .user-header .user-avatar {
    width: 80px;
    height: 80px;
    grid-row: 1/3;
  }
  .user-dashboard .user-header .user-name-section {
    grid-row: 1/3;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .user-dashboard .user-header .user-name-section .user-name {
    font-size: 20px;
    line-height: 1.3;
    white-space: normal;
    word-spacing: normal;
  }
  .user-dashboard .user-header .user-balance-section {
    grid-column: 1/4;
    grid-row: 3;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .user-dashboard .user-header .user-balance-section .balance-item {
    width: 100%;
  }
  .user-dashboard .user-header .user-balance-section .balance-item .balance-label {
    font-size: 12px;
  }
  .user-dashboard .user-header .user-balance-section .balance-item .balance-value {
    font-size: 18px;
  }
  .user-dashboard .user-header .user-balance-section .balance-item .balance-value .balance-pln-value {
    font-size: 14px;
  }
  .user-dashboard .user-header .user-actions {
    grid-column: 3;
    grid-row: 1/3;
    flex-direction: column;
    gap: 5px;
  }
  .user-dashboard .user-header .user-actions .action-button {
    min-width: 40px;
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
  }
  .user-dashboard .user-header .user-actions .action-button .button-icon {
    font-size: 20px;
  }
  .user-dashboard .user-header .user-actions .action-button .button-text {
    display: none;
  }
  .user-dashboard .action-buttons {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-bottom: 15px;
  }
  .user-dashboard .action-buttons .action-btn {
    padding: 5px;
    min-height: 48px;
    font-size: 0;
  }
  .user-dashboard .action-buttons .action-btn img {
    width: 20px;
    height: 20px;
  }
  .user-dashboard .action-buttons .action-btn .btn-text {
    display: none;
  }
  .user-dashboard .transactions-list {
    padding: 0 15px 15px;
  }
  .user-dashboard.open .transactions-list {
    max-height: 400px;
  }
  .modal-content {
    width: 95%;
    padding: 30px 20px;
  }
  .modal-content .modal-body .payment-methods {
    grid-template-columns: 1fr;
  }
}
.promo-input-section {
  padding: 0 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.promo-input-section input {
  flex: 1;
  min-width: 0;
  padding: 15px;
  background: #000;
  border: 2px solid #FFB300;
  color: #FFF5DD;
  font-size: 24px;
  font-family: "Caveat Brush", cursive;
  border-radius: 8px;
  text-align: center;
  text-transform: uppercase;
  transition: border-color 0.3s ease;
}
.promo-input-section input:focus {
  outline: none;
  border-color: #FFD700;
}
.promo-input-section input::placeholder {
  color: #666;
  text-transform: none;
}
.promo-input-section .promo-buttons {
  display: flex;
  gap: 10px;
}
.promo-input-section .promo-buttons button {
  flex: 1;
  padding: 15px 20px;
  font-family: "Caveat Brush", cursive;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.promo-input-section .promo-buttons .promo-back-btn {
  background: #2a2a2a;
  border: 2px solid #FFB300;
  color: #FFF5DD;
}
.promo-input-section .promo-buttons .promo-back-btn:hover {
  background: rgba(255, 179, 0, 0.2);
  transform: translateY(-2px);
}
.promo-input-section .promo-buttons .promo-submit-btn {
  background: linear-gradient(135deg, #FFB300 0%, #F5701E 100%);
  color: #000000;
}
.promo-input-section .promo-buttons .promo-submit-btn:hover {
  background: #F5701E;
  transform: scale(1.02);
}

.payment-btn--promo {
  background: linear-gradient(135deg, #9C27B0, #7B1FA2) !important;
}
.payment-btn--promo:hover {
  background: linear-gradient(135deg, #AB47BC, #8E24AA) !important;
}

.payment-btn.active {
  border: 3px solid #FFD700;
  transform: scale(1.05);
}

.settings-with-edit {
  display: flex;
  align-items: center;
  gap: 10px;
}
.settings-with-edit .settings-value {
  flex: 1;
}

.edit-icon {
  width: 30px;
  height: 30px;
  background: none;
  border: 2px solid #FFB300;
  border-radius: 8px;
  color: #FFB300;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.edit-icon:hover {
  background: #FFB300;
  color: #000000;
  transform: scale(1.1);
}
.edit-icon:focus {
  outline: none;
}

.custom-select {
  position: relative;
  width: 100%;
  min-width: 120px;
}
.custom-select__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 45px;
  padding: 0 15px;
  gap: 10px;
  font-family: "Caveat Brush", cursive;
  font-size: 16px;
  font-weight: 400;
  color: #FFF5DD;
  text-align: left;
  background-color: #2a2a2a;
  border: 2px solid #FFB300;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}
.custom-select__btn:hover {
  background-color: rgba(255, 179, 0, 0.05);
}
.custom-select__btn.open {
  background-color: rgba(255, 179, 0, 0.1);
}
.custom-select__btn.open .custom-select__arrow {
  transform: rotate(180deg);
}
.custom-select__text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.custom-select__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #FFB300;
  transition: transform 0.3s ease;
}
.custom-select__dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  z-index: 1000;
  width: 100%;
  max-height: 250px;
  padding: 5px;
  background-color: #2a2a2a;
  border: 2px solid #FFB300;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(255, 179, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s ease;
  overflow-y: auto;
}
.custom-select__dropdown::-webkit-scrollbar {
  width: 8px;
}
.custom-select__dropdown::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 6px;
}
.custom-select__dropdown::-webkit-scrollbar-thumb {
  background: #FFB300;
  border-radius: 6px;
}
.custom-select__dropdown::-webkit-scrollbar-thumb:hover {
  background: #F5701E;
}
.custom-select__dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.custom-select__option {
  position: relative;
  padding: 10px 15px;
  font-size: 16px;
  color: #FFF5DD;
  background-color: transparent;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}
.custom-select__option::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background-color: #FFB300;
  border-radius: 6px;
  transition: width 0.3s ease;
}
.custom-select__option:hover {
  background-color: rgba(255, 179, 0, 0.1);
  padding-left: 25px;
}
.custom-select__option:hover::before {
  width: 10px;
}
.custom-select__option--active, .custom-select__option.active {
  background-color: rgba(255, 179, 0, 0.15);
  color: #FFB300;
  font-weight: 600;
  border-radius: 8px;
  margin: 5px 0;
}
.custom-select__option--active::before, .custom-select__option.active::before {
  width: 10px;
}

.chart-controls {
  display: grid;
  gap: 15px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .chart-controls {
    grid-template-columns: repeat(4, 1fr) auto auto;
    align-items: end;
  }
}
@media (max-width: 767px) {
  .chart-controls {
    grid-template-columns: 1fr 1fr;
  }
  .chart-controls .select-wrapper:nth-child(1),
  .chart-controls .select-wrapper:nth-child(2) {
    grid-column: 1/-1;
  }
  .chart-controls .apply-btn {
    grid-column: 1;
  }
  .chart-controls .fullscreen-btn {
    grid-column: 2;
  }
}

.select-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.select-wrapper label {
  font-size: 12px;
  color: #999;
  padding-left: 5px;
}
.select-wrapper input[type=text] {
  height: 45px;
  padding: 0 15px;
  background: #2a2a2a;
  border: 2px solid #FFB300;
  border-radius: 10px;
  color: #FFF5DD;
  font-family: "Caveat Brush", cursive;
  font-size: 16px;
}
.select-wrapper input[type=text]::placeholder {
  color: #666;
}
.select-wrapper input[type=text]:focus {
  outline: none;
  border-color: #FFD700;
}

.apply-btn:focus, .fullscreen-btn:focus {
  outline: none;
}

.apply-btn {
  height: 45px;
  padding: 0 30px;
  background: linear-gradient(135deg, #FFB300, #FFA000);
  border: 2px solid #FFB300;
  border-radius: 10px;
  color: #1a1a1a;
  font-family: "Caveat Brush", cursive;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  align-self: end;
}
.apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 179, 0, 0.4);
}

.fullscreen-btn {
  height: 45px;
  width: 45px;
  padding: 0;
  background: #2a2a2a;
  border: 2px solid #FFB300;
  border-radius: 10px;
  color: #FFB300;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: end;
}
.fullscreen-btn:hover {
  background: #3a3a3a;
  transform: translateY(-2px);
}
.fullscreen-btn svg {
  width: 24px;
  height: 24px;
}

.chart-container {
  position: relative;
  width: 100%;
  height: 500px;
  background: #1a1a1a;
  border-radius: 10px;
  padding: 20px;
  border: 2px solid #FFB300;
}
@media (max-width: 767px) {
  .chart-container {
    height: 350px;
    padding: 10px;
  }
}
.chart-container canvas {
  width: 100% !important;
  height: 100% !important;
}

.fullscreen-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  z-index: 9999;
  display: none;
  padding: 60px 20px 20px;
}
.fullscreen-modal.active {
  display: block;
}
.fullscreen-modal canvas {
  width: 100% !important;
  height: 100% !important;
}
.fullscreen-modal .fullscreen-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #2a2a2a;
  border: 2px solid #FFB300;
  border-radius: 10px;
  color: #FFB300;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fullscreen-modal .fullscreen-close:hover {
  background: #3a3a3a;
  transform: rotate(90deg);
}
.fullscreen-modal .fullscreen-close:focus {
  outline: none;
}

.flatpickr-custom .flatpickr-months {
  background: #2a2a2a;
  border-bottom: 2px solid #FFB300;
}
.flatpickr-custom .flatpickr-months .flatpickr-month {
  color: #FFB300;
}
.flatpickr-custom .flatpickr-months .flatpickr-current-month {
  color: #FFB300;
}
.flatpickr-custom .flatpickr-months .flatpickr-current-month .flatpickr-monthDropdown-months {
  background: #2a2a2a;
  color: #FFB300;
}
.flatpickr-custom .flatpickr-months .flatpickr-current-month input.cur-year {
  color: #FFB300;
  background: #2a2a2a;
}
.flatpickr-custom .flatpickr-months .flatpickr-prev-month,
.flatpickr-custom .flatpickr-months .flatpickr-next-month {
  fill: #FFB300;
}
.flatpickr-custom .flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-custom .flatpickr-months .flatpickr-next-month:hover {
  fill: #FFD700;
}
.flatpickr-custom .flatpickr-weekdays {
  background: #1a1a1a;
}
.flatpickr-custom .flatpickr-weekday {
  color: #999;
  background: #1a1a1a;
}
.flatpickr-custom .flatpickr-days {
  background: #1a1a1a;
}
.flatpickr-custom .flatpickr-day {
  color: #FFF5DD;
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
}
.flatpickr-custom .flatpickr-day:hover {
  background: #3a3a3a;
  border-color: #FFB300;
}
.flatpickr-custom .flatpickr-day.today {
  background: #FFB300;
  color: #1a1a1a;
  border-color: #FFB300;
}
.flatpickr-custom .flatpickr-day.selected, .flatpickr-custom .flatpickr-day.startRange, .flatpickr-custom .flatpickr-day.endRange {
  background: #FFB300;
  color: #1a1a1a;
  border-color: #FFB300;
}
.flatpickr-custom .flatpickr-day.inRange {
  background: rgba(255, 179, 0, 0.3);
  border-color: #FFB300;
}
.flatpickr-custom .flatpickr-day.disabled, .flatpickr-custom .flatpickr-day.flatpickr-disabled {
  color: #555;
  background: #1a1a1a;
}

.flatpickr-calendar {
  background: #1a1a1a;
  border: 2px solid #FFB300;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(255, 179, 0, 0.3);
}

.chart-controls {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .chart-controls {
    flex-direction: column;
    gap: 10px;
  }
}

.chart-controls__group-time,
.chart-controls__group-settings {
  display: flex;
  gap: 10px;
  flex: 1;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .chart-controls__group-time,
  .chart-controls__group-settings {
    flex-direction: column;
  }
}

.chart-controls__group-actions {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .chart-controls__group-actions {
    width: 100%;
    justify-content: space-around;
  }
}

.chart-controls__item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 150px;
}

.chart-controls__label {
  font-size: 12px;
  color: #999;
  padding-left: 5px;
}

.chart-controls__date-input {
  height: 45px;
  padding: 0 15px;
  background: #2a2a2a;
  border: 2px solid #FFB300;
  border-radius: 10px;
  color: #FFF5DD;
  font-family: "Caveat Brush", cursive;
  font-size: 16px;
  cursor: pointer;
}
.chart-controls__date-input::placeholder {
  color: #666;
}

.chart-controls__apply-btn {
  height: 45px;
  padding: 0 25px;
  background: linear-gradient(135deg, #FFB300 0%, #FF8C00 100%);
  border: none;
  border-radius: 10px;
  color: #1a1a1a;
  font-family: "Caveat Brush", cursive;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 179, 0, 0.3);
}
.chart-controls__apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 179, 0, 0.5);
}

.chart-controls__toggle-btn {
  width: 45px;
  height: 45px;
  background: #2a2a2a;
  border: 2px solid #FFB300;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.chart-controls__toggle-btn:hover {
  background: #3a3a3a;
  transform: translateY(-2px);
}

.chart-controls__toggle-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff4444;
  transition: background 0.3s;
  box-shadow: 0 0 10px rgba(255, 68, 68, 0.5);
}
.chart-controls__toggle-dot--active {
  background: #00ff00;
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.chart-controls__save-btn {
  width: 45px;
  height: 45px;
  background: #2a2a2a;
  border: 2px solid #FFB300;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.chart-controls__save-btn:hover {
  background: #3a3a3a;
  transform: translateY(-2px);
}
.chart-controls__save-btn svg {
  width: 20px;
  height: 20px;
  stroke: #FFB300;
}

.chart-controls__fullscreen-btn {
  width: 45px;
  height: 45px;
  background: #2a2a2a;
  border: 2px solid #FFB300;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.chart-controls__fullscreen-btn:hover {
  background: #3a3a3a;
  transform: translateY(-2px);
}

.chart-controls__fullscreen-icon {
  width: 20px;
  height: 20px;
  stroke: #FFB300;
}

.chart {
  position: relative;
  background: #1a1a1a;
  border: 2px solid #FFB300;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(255, 179, 0, 0.2);
}

.chart__canvas {
  width: 100%;
  height: 400px;
}

.chart-fullscreen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  z-index: 9999;
  padding: 20px;
}
.chart-fullscreen.active {
  display: block;
}

.chart-fullscreen__close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #2a2a2a;
  border: 2px solid #FFB300;
  border-radius: 10px;
  color: #FFB300;
  font-size: 24px;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.3s;
}
.chart-fullscreen__close-btn:hover {
  background: #FFB300;
  color: #1a1a1a;
  transform: rotate(90deg);
}

.chart-fullscreen__canvas {
  width: 100%;
  height: calc(100% - 40px);
}

.chart-download-modal {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chart-download-modal.show {
  display: flex !important;
}
.chart-download-modal__content {
  position: relative;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 2px solid #FFB300;
  border-radius: 15px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
}
.chart-download-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: none;
  border: 2px solid #FFB300;
  border-radius: 8px;
  color: #FFB300;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.chart-download-modal__close:hover {
  background: linear-gradient(135deg, #FFB300 0%, #F5701E 100%);
  color: #000000;
  transform: rotate(90deg);
}
.chart-download-modal__title {
  color: #FFB300;
  font-size: 28px;
  margin: 0 0 30px 0;
  text-align: center;
}
.chart-download-modal__options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.chart-download-modal__option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 2px solid #FFB300;
  border-radius: 8px;
  color: #FFF5DD;
  font-size: 18px;
  font-family: "Caveat Brush", cursive;
  cursor: pointer;
  transition: all 0.3s ease;
}
.chart-download-modal__option svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.chart-download-modal__option:hover {
  background: linear-gradient(135deg, #FFB300 0%, #F5701E 100%);
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 179, 0, 0.5);
}

.cup-game {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cup-game__header {
  text-align: center;
}
.cup-game__description {
  font-size: 16px;
  color: #FFF5DD;
  line-height: 1.6;
  margin-bottom: 15px;
}

.cup-game__controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: rgba(255, 179, 0, 0.05);
  border: 2px solid #FFB300;
  border-radius: 15px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .cup-game__controls {
    flex-direction: row;
    justify-content: center;
  }
}

.cup-game__label {
  font-size: 16px;
  font-weight: 600;
  color: #FFF5DD;
}

.cup-game__bet-input {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cup-game__bet-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: linear-gradient(135deg, #FFB300 0%, #F5701E 100%);
  color: #000000;
  border: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cup-game__bet-btn:hover {
  transform: scale(1.05);
}
.cup-game__bet-btn:active {
  transform: scale(0.95);
}
.cup-game__bet-amount {
  width: 100px;
  height: 40px;
  padding: 10px;
  font-family: "Caveat Brush", cursive;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #FFF5DD;
  background-color: #2a2a2a;
  border: 2px solid #FFB300;
  border-radius: 8px;
  transition: border-color 0.3s ease;
  -moz-appearance: textfield;
}
.cup-game__bet-amount::-webkit-outer-spin-button, .cup-game__bet-amount::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cup-game__bet-amount:focus {
  outline: none;
  border-color: #F5701E;
}

.cup-game__start-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 40px;
  background: linear-gradient(135deg, #FFB300 0%, #F5701E 100%);
  color: #000000;
  border: none;
  border-radius: 10px;
  font-family: "Caveat Brush", cursive;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 179, 0, 0.5);
}
.cup-game__start-btn:hover {
  transition: transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 179, 0, 0.5);
}
.cup-game__start-btn:hover:hover {
  transform: translateY(-2px);
}
.cup-game__start-btn:active {
  transform: translateY(0);
}
.cup-game__start-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.cup-game__area {
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  border: 2px solid #FFB300;
}

.cup-game__cups {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 200px;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}

.cup-game__cup-wrapper {
  position: relative;
  width: 30%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.cup-game__cup {
  position: relative;
  width: 100%;
  max-width: 120px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cup-game__cup--disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.cup-game__cup--lifting {
  transform: translateY(-30px);
}
.cup-game__cup-body {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(255, 179, 0, 0.3));
  transition: transform 0.3s ease;
}

.cup-game__cheese {
  position: absolute;
  bottom: 10px;
  width: 60%;
  height: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.cup-game__cup--show-cheese .cup-game__cheese {
  opacity: 1;
}

@keyframes cupShake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px) rotate(-2deg);
  }
  75% {
    transform: translateX(5px) rotate(2deg);
  }
}
.cup-game__cup--shuffling {
  animation: cupShake 0.3s ease-in-out;
}

.cup-game__result {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.result-message {
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: bold;
  border: 2px solid #FFB300;
  animation: resultPop 0.5s ease;
}
.result-message.win {
  background: rgba(0, 255, 0, 0.2);
  color: #00ff00;
  border-color: #00ff00;
}
.result-message.loss {
  background: rgba(255, 68, 68, 0.2);
  color: #ff4444;
  border-color: #ff4444;
}

@keyframes resultPop {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.cup-game__notice {
  text-align: center;
  padding: 15px;
  background: rgba(255, 179, 0, 0.1);
  border: 2px solid #FFB300;
  border-radius: 10px;
}
.cup-game__notice p {
  color: #FFF5DD;
  font-size: 16px;
  margin: 0;
}
.cup-game__notice.hidden {
  display: none;
}

@media (max-width: 768px) {
  .cup-game__cups {
    max-width: 400px;
    height: 150px;
  }
  .cup-game__cup {
    max-width: 80px;
    height: 100px;
  }
  .cup-game__cheese {
    bottom: 5px;
  }
}
.faq-section .faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-section .faq-item {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 10px;
  border: 2px solid #FFB300;
  overflow: hidden;
}
.faq-section .faq-item .faq-question {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}
.faq-section .faq-item .faq-question:hover {
  background: rgba(255, 179, 0, 0.1);
}
.faq-section .faq-item .faq-question h4 {
  font-size: 24px;
  color: #FFB300;
  margin: 0;
}
.faq-section .faq-item .faq-question .faq-arrow {
  font-size: 24px;
  color: #FFB300;
  transition: transform 0.3s ease;
}
.faq-section .faq-item.open .faq-arrow {
  transform: rotate(180deg);
}
.faq-section .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-section .faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 20px 20px;
}
.faq-section .faq-item.open .faq-answer p {
  font-size: 18px;
  color: #FFF5DD;
  line-height: 1.6;
  margin: 0;
}

.contact-section .contact-content {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 40px;
  border-radius: 15px;
  border: 2px solid #FFB300;
  text-align: center;
}
.contact-section .contact-content h3 {
  font-size: 32px;
  color: #FFB300;
  margin-bottom: 20px;
}
.contact-section .contact-content img {
  width: 200px;
  height: 200px;
  margin: 30px 0;
}
.contact-section .contact-content p {
  font-size: 20px;
  color: #FFF5DD;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .faq-item .faq-question h4 {
    font-size: 20px;
  }
  .faq-item .faq-answer p {
    font-size: 16px;
  }
  .contact-content {
    padding: 30px 20px;
  }
  .contact-content h3 {
    font-size: 24px;
  }
  .contact-content img {
    width: 150px;
    height: 150px;
  }
}
.custom-select {
  position: relative;
  width: 100%;
  min-width: 120px;
}
.custom-select__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 45px;
  padding: 0 15px;
  gap: 10px;
  font-family: "Caveat Brush", cursive;
  font-size: 16px;
  font-weight: 400;
  color: #FFF5DD;
  text-align: left;
  background-color: #2a2a2a;
  border: 2px solid #FFB300;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}
.custom-select__btn:hover {
  background-color: rgba(255, 179, 0, 0.05);
}
.custom-select__btn.open {
  background-color: rgba(255, 179, 0, 0.1);
}
.custom-select__btn.open .custom-select__arrow {
  transform: rotate(180deg);
}
.custom-select__text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.custom-select__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #FFB300;
  transition: transform 0.3s ease;
}
.custom-select__dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  z-index: 1000;
  width: 100%;
  max-height: 250px;
  padding: 5px;
  background-color: #2a2a2a;
  border: 2px solid #FFB300;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(255, 179, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s ease;
  overflow-y: auto;
}
.custom-select__dropdown::-webkit-scrollbar {
  width: 8px;
}
.custom-select__dropdown::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 6px;
}
.custom-select__dropdown::-webkit-scrollbar-thumb {
  background: #FFB300;
  border-radius: 6px;
}
.custom-select__dropdown::-webkit-scrollbar-thumb:hover {
  background: #F5701E;
}
.custom-select__dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.custom-select__option {
  position: relative;
  padding: 10px 15px;
  font-size: 16px;
  color: #FFF5DD;
  background-color: transparent;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}
.custom-select__option::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background-color: #FFB300;
  border-radius: 6px;
  transition: width 0.3s ease;
}
.custom-select__option:hover {
  background-color: rgba(255, 179, 0, 0.1);
  padding-left: 25px;
}
.custom-select__option:hover::before {
  width: 10px;
}
.custom-select__option--active, .custom-select__option.active {
  background-color: rgba(255, 179, 0, 0.15);
  color: #FFB300;
  font-weight: 600;
  border-radius: 8px;
  margin: 5px 0;
}
.custom-select__option--active::before, .custom-select__option.active::before {
  width: 10px;
}

.admin-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  border: 3px solid #FFB300;
  border-radius: 15px;
}
.admin-header h1 {
  color: #FFB300;
  font-size: 32px;
  margin: 0;
}
.admin-header .admin-header-right {
  display: flex;
  gap: 15px;
  align-items: center;
}

.logout-btn, .header-toggle {
  padding: 10px 20px;
  background: #FFB300;
  border: none;
  border-radius: 10px;
  color: #000;
  font-family: "Caveat Brush", cursive;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
}
.logout-btn:hover, .header-toggle:hover {
  background: #F5701E;
  transform: translateY(-2px);
}

.header-toggle {
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: 20px;
}

.admin-section {
  margin-bottom: 20px;
  background: #1a1a1a;
  border: 2px solid #FFB300;
  border-radius: 15px;
  overflow: hidden;
}

.section-header {
  padding: 15px 20px;
  background: #2a2a2a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}
.section-header:hover {
  background: #333;
}
.section-header h2 {
  color: #FFB300;
  margin: 0;
  font-size: 24px;
}
.section-header .toggle-icon {
  color: #FFB300;
  font-size: 20px;
}

.section-content {
  padding: 20px;
}

.users-grid {
  display: grid;
  gap: 15px;
}
@media (min-width: 768px) {
  .users-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .users-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.user-card-collapsible {
  margin-bottom: 0;
  background: #2a2a2a;
  border: 2px solid #FFB300;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.user-header {
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}
.user-header:hover {
  background: #333;
}

.user-basic {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.user-basic strong {
  color: #FFB300;
  font-size: 18px;
}
.user-basic span {
  color: #FFF5DD;
  font-size: 14px;
}

.user-details {
  padding: 0 15px 15px;
  background: #1a1a1a;
  border-top: 1px solid #444;
  display: none;
}

.detail-row {
  padding: 8px 0;
  color: #FFF5DD;
  font-size: 14px;
  border-bottom: 1px solid #333;
}
.detail-row:last-child {
  border-bottom: none;
}
.detail-row strong {
  color: #FFB300;
  margin-right: 10px;
}

.pending-grid {
  display: grid;
  gap: 15px;
}
@media (min-width: 768px) {
  .pending-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .pending-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pending-card {
  padding: 15px;
  background: #2a2a2a;
  border: 2px solid #F5701E;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.pending-card .pending-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #FFF5DD;
  font-size: 14px;
}
.pending-card .pending-info strong {
  color: #FFB300;
  font-size: 16px;
}
.pending-card .pending-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.action-approve, .action-reject {
  width: 40px;
  height: 40px;
  border: 2px solid;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
}
.action-approve:hover, .action-reject:hover {
  transform: scale(1.1);
}

.action-approve {
  background: none;
  border-color: #00ff00;
  color: #00ff00;
}
.action-approve:hover {
  background: #00ff00;
  color: #000;
}

.action-reject {
  background: none;
  border-color: #ff4444;
  color: #ff4444;
}
.action-reject:hover {
  background: #ff4444;
  color: #000;
}

.promo-grid {
  display: grid;
  gap: 15px;
}
@media (min-width: 768px) {
  .promo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .promo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.promo-card {
  padding: 12px;
  background: #2a2a2a;
  border: 3px solid;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.promo-card.promo-single-unused {
  border-color: #00ff00;
}
.promo-card.promo-multi {
  border-color: #00aaff;
}
.promo-card.promo-single-used {
  border-color: #ff4444;
}
.promo-card strong {
  color: #FFB300;
  font-size: 16px;
}
.promo-card span {
  color: #FFF5DD;
  font-size: 13px;
}

.create-btn {
  padding: 12px 24px;
  background: #FFB300;
  border: none;
  border-radius: 10px;
  color: #000;
  font-family: "Caveat Brush", cursive;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.create-btn:hover {
  background: #F5701E;
  transform: translateY(-2px);
}

.delete-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  padding: 0;
  background: #ff4444;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}
.delete-btn:hover {
  background: #ff0000;
  transform: scale(1.1);
}

.history-filters {
  display: grid !important;
  gap: 15px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .history-filters {
    grid-template-columns: repeat(3, 1fr);
  }
}

.history-grid {
  display: grid;
  gap: 15px;
}
@media (min-width: 768px) {
  .history-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .history-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.history-item {
  padding: 12px;
  background: #2a2a2a;
  border: 3px solid;
  border-radius: 10px;
}
.history-item.history-approved {
  border-color: #00ff00;
}
.history-item.history-rejected {
  border-color: #ff4444;
}
.history-item .history-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #FFF5DD;
  font-size: 13px;
}
.history-item .history-info strong {
  color: #FFB300;
  font-size: 15px;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.modal.show {
  display: flex;
}

.modal-content {
  position: relative;
  background: #1a1a1a;
  border: 3px solid #FFB300;
  border-radius: 15px;
  padding: 15px;
  max-width: 450px;
  width: 90%;
}
.modal-content.modal-compact {
  padding: 15px;
}
.modal-content h2 {
  color: #FFB300;
  margin-bottom: 12px;
  font-size: 22px;
}

.modal-exit {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: #2a2a2a;
  border: 2px solid #FFB300;
  border-radius: 6px;
  color: #FFB300;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
}
.modal-exit:hover {
  background: #FFB300;
  color: #000;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.form-group label {
  color: #FFF5DD;
  font-size: 12px;
  font-weight: bold;
}
.form-group input, .form-group select {
  padding: 7px 9px;
  background: #2a2a2a;
  border: 2px solid #FFB300;
  border-radius: 8px;
  color: #FFF5DD;
  font-family: "Caveat Brush", cursive;
  font-size: 13px;
}
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: #F5701E;
}

.submit-btn {
  width: 100%;
  padding: 9px;
  background: #FFB300;
  border: none;
  border-radius: 10px;
  color: #000;
  font-family: "Caveat Brush", cursive;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.3s;
}
.submit-btn:hover {
  background: #F5701E;
  transform: translateY(-2px);
}

/*# sourceMappingURL=main.css.map */
