@charset "UTF-8";

.wheel-spinner-error {
  background: #f8d7da;
  color: #721c24;
  padding: 15px;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
  margin: 20px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.wheel-spinner-container {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  background: #080808;
  color: #fff;
  padding: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.wheel-spinner-container *,
.wheel-spinner-container *:after,
.wheel-spinner-container *:before {
  box-sizing: border-box;
}

/* Toast Container */
#toastContainer {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

.toast {
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 10px;
  border-left: 4px solid #f9c43e;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 250px;
  max-width: 400px;
}

.toast.show {
  transform: translateX(0);
}

.toast.error {
  border-left-color: #ff6b6b;
}

.toast.warning {
  border-left-color: #ffa500;
}

.toast.success {
  border-left-color: #00ff88;
}

.toast .close-btn {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 18px;
  margin-left: 10px;
  padding: 0;
}

.toast .close-btn:hover {
  color: #fff;
}

/* Main Container */
.wheel-page-container {
  width: 100%;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  flex-direction: column;
  padding-top: 2rem;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .wheel-page-container {
    flex-direction: column;
  }
}

.wheel-page-container .wheel-card {
  flex: 2;
  background: #1b1b1b;
  border-radius: 14px;
  padding: 20px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 20px;
}

/* Header Sidebar */
.wheel-page-container .wheel-card .header-sidebar {
  background: #1e1e2f;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  color: #fff;
  border-radius: 10px;
  min-width: 350px;
}

.wheel-page-container .wheel-card .header-sidebar .error {
  color: #ff6b6b !important;
}

.wheel-page-container .wheel-card .header-sidebar .user-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wheel-page-container .wheel-card .header-sidebar .user-info .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #f9c43e;
}

.wheel-page-container .wheel-card .header-sidebar .user-info .user-meta {
  gap: 1rem;
  text-align: center;
}

@media screen and (max-width: 968px) {
  .wheel-page-container .wheel-card .header-sidebar .user-info .user-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .wheel-page-container .wheel-card .header-sidebar .user-info .user-meta div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
}

.wheel-page-container .wheel-card .header-sidebar .user-info .user-meta .points,
.wheel-page-container .wheel-card .header-sidebar .user-info .user-meta .level,
.wheel-page-container
  .wheel-card
  .header-sidebar
  .user-info
  .user-meta
  .total-spins,
.wheel-page-container
  .wheel-card
  .header-sidebar
  .user-info
  .user-meta
  .last-spin {
  font-size: 1.2rem;
  font-weight: 600;
  color: #f9c43e;
}

.wheel-page-container
  .wheel-card
  .header-sidebar
  .user-info
  .user-meta
  .points
  span,
.wheel-page-container
  .wheel-card
  .header-sidebar
  .user-info
  .user-meta
  .level
  span,
.wheel-page-container
  .wheel-card
  .header-sidebar
  .user-info
  .user-meta
  .total-spins
  span,
.wheel-page-container
  .wheel-card
  .header-sidebar
  .user-info
  .user-meta
  .last-spin
  span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00ffae;
}

.wheel-page-container .wheel-card .header-sidebar .spin-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wheel-page-container .wheel-card .header-sidebar .spin-info .small {
  font-size: 0.9rem;
  color: #bbb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.wheel-page-container .wheel-card .header-sidebar .spin-info .small strong {
  color: #f9c43e;
  font-weight: 600;
}

.wheel-page-container .wheel-card .header-sidebar .spin-info #statusText {
  font-size: 0.85rem;
}

.wheel-page-container
  .wheel-card
  .header-sidebar
  .spin-info
  #statusText.status-error {
  color: #ff6b6b;
}

@media screen and (max-width: 968px) {
  .wheel-page-container .wheel-card .header-sidebar {
    position: relative;
    width: 100%;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 1rem;
    box-shadow: none;
    gap: 1rem;
  }
  .wheel-page-container .wheel-card .header-sidebar .small {
    flex-direction: unset;
    display: block;
    align-items: unset;
  }
}

/* Wheel Container */
.wheel-page-container .wheel-card .wheel-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 15px;
}

.wheel-page-container .wheel-card .wheel-wrap .wheel-outer {
  position: relative;
  display: grid;
  place-items: center;
  z-index: 3;
}

.wheel-page-container .wheel-card .wheel-wrap .wheel-outer .spin-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  border-radius: 999px;
  border: none;
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
  background: linear-gradient(180deg, #f9c43e, #f7b93c);
  color: #080808;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid white;
}

@media screen and (max-width: 520px) {
  .wheel-page-container .wheel-card .wheel-wrap .wheel-outer .spin-btn {
    width: 80px;
    height: 80px;
    font-size: 16px;
  }
}

.wheel-page-container .wheel-card .wheel-wrap .wheel-outer .spin-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.wheel-page-container .wheel-card .wheel-wrap .wheel-outer .pointer {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 30px solid #f9c43e;
  z-index: 9;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.815));
}

.wheel-page-container .wheel-card .wheel-wrap .wheel-outer .wheel2-container {
  border-radius: 100%;
  box-shadow: 0 0 0 2px #f9c43e;
  padding: 4px;
  width: 498px;
  height: 498px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wheel-page-container
  .wheel-card
  .wheel-wrap
  .wheel-outer
  .wheel2-container
  .wheel2 {
  position: relative;
  width: 490px;
  height: 490px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #fff;
  border: 4px solid #fff;
  padding: 2px;
  z-index: 1;
}

.wheel-page-container
  .wheel-card
  .wheel-wrap
  .wheel-outer
  .wheel2-container
  .wheel2::before {
  content: "";
  position: absolute;
  display: block;
  background: #ffffff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 7;
  width: 115px;
  height: 115px;
  border-radius: 100%;
}

@media screen and (max-width: 520px) {
  .wheel-page-container
    .wheel-card
    .wheel-wrap
    .wheel-outer
    .wheel2-container
    .wheel2::before {
    width: 85px;
    height: 85px;
  }
}

.wheel-page-container
  .wheel-card
  .wheel-wrap
  .wheel-outer
  .wheel2-container
  .wheel2
  .wheel2-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 0 0;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.wheel-page-container
  .wheel-card
  .wheel-wrap
  .wheel-outer
  .wheel2-container
  .wheel2
  .wheel-inner-number {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, 0) rotate(90deg) !important;
  font-size: 16px;
  font-weight: 800;
  background: linear-gradient(45deg, #000000, #583204, #aa2d00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 540px) {
  .wheel-page-container
    .wheel-card
    .wheel-wrap
    .wheel-outer
    .wheel2-container
    .wheel2 {
    width: 300px;
    height: 300px;
  }
  .wheel-page-container
    .wheel-card
    .wheel-wrap
    .wheel-outer
    .wheel2-container
    .wheel2
    .wheel-inner-number {
    font-size: 10px;
  }
}

@media screen and (max-width: 380px) {
  .wheel-page-container
    .wheel-card
    .wheel-wrap
    .wheel-outer
    .wheel2-container
    .wheel2 {
    width: 250px;
    height: 250px;
  }
  .wheel-page-container
    .wheel-card
    .wheel-wrap
    .wheel-outer
    .wheel2-container
    .wheel2
    .wheel-inner-number {
    font-size: 12px;
  }
}

/* Login Overlay */
.wheel-page-container .login_overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  z-index: 20;
  transition: opacity 0.3s ease;
}

.wheel-page-container .login_overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.wheel-page-container .login_overlay .login-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 340px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6),
    inset 0 1px 2px rgba(255, 255, 255, 0.1);
  color: #fff;
  animation: fadeInUp 0.4s ease;
}

.wheel-page-container .login_overlay .login-card h3 {
  text-align: center;
  margin-bottom: 18px;
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  color: #f9c43e;
  letter-spacing: 0.5px;
}

.wheel-page-container .login_overlay .login-card .input_holder,
.wheel-page-container .login_overlay .login-card .accept_terms {
  position: relative;
}

.wheel-page-container .login_overlay .login-card .input_holder .error-msg,
.wheel-page-container .login_overlay .login-card .accept_terms .error-msg {
  margin-top: 5px;
  width: 100%;
  justify-content: flex-end;
  align-items: flex-end;
  font-size: 10px;
  color: #ff4d4f;
  display: none;
}

.wheel-page-container .login_overlay .login-card input[type="email"]:invalid,
.wheel-page-container .login_overlay .login-card input[type="password"]:invalid,
.wheel-page-container
  .login_overlay
  .login-card
  input[type="checkbox"]:invalid {
  border-color: #ff4d4f;
}

.wheel-page-container .login_overlay .login-card .input_holder {
  margin-bottom: unset !important;
  height: 75px;
}

.wheel-page-container .login_overlay .login-card .input_holder label {
  font-size: 14px;
  display: block;
  color: #ddd;
}

.wheel-page-container
  .login_overlay
  .login-card
  .input_holder
  input[type="email"],
.wheel-page-container
  .login_overlay
  .login-card
  .input_holder
  input[type="password"] {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  width: 100%;
  margin-top: 5px;
  font-size: 14px;
  transition: all 0.25s ease;
}

.wheel-page-container
  .login_overlay
  .login-card
  .input_holder
  input[type="email"]:focus,
.wheel-page-container
  .login_overlay
  .login-card
  .input_holder
  input[type="password"]:focus {
  outline: none;
  border-color: #f9c43e;
  box-shadow: 0 0 0 3px rgba(249, 196, 62, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.wheel-page-container .login_overlay .login-card .accept_terms {
  height: 35px;
}

.wheel-page-container
  .login_overlay
  .login-card
  .accept_terms
  input[type="checkbox"] {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #666;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  position: relative;
  transition: all 0.25s ease;
}

.wheel-page-container
  .login_overlay
  .login-card
  .accept_terms
  input[type="checkbox"]:hover {
  border-color: #f9c43e;
}

.wheel-page-container
  .login_overlay
  .login-card
  .accept_terms
  input[type="checkbox"]:checked {
  background: #f9c43e;
  border-color: #f9c43e;
}

.wheel-page-container
  .login_overlay
  .login-card
  .accept_terms
  input[type="checkbox"]:checked::after {
  content: "✔";
  font-size: 12px;
  font-weight: 700;
  color: #111;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
}

.wheel-page-container .login_overlay .login-card .accept_terms label {
  font-size: 13px;
  color: #ccc;
}

.wheel-page-container .login_overlay .login-card .accept_terms a {
  font-size: 13px;
  font-weight: 600;
  color: #f9c43e;
  text-decoration: none;
}

.wheel-page-container .login_overlay .login-card .accept_terms a:hover {
  text-decoration: underline;
}

.wheel-page-container .login_overlay .login-card .btn {
  background: #f9c43e;
  color: #111;
  padding: 12px;
  border-radius: 12px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.wheel-page-container .login_overlay .login-card .btn:hover {
  background-color: #fff;
}

.wheel-page-container .login_overlay .login-card .btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.wheel-page-container .login_overlay .login-card .btn-spinner {
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top: 2px solid #fff;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  animation: spin 0.8s linear infinite;
}

@media (max-width: 480px) {
  .wheel-page-container .login_overlay .login-card {
    width: 90%;
    padding: 20px;
  }
}

/* Winner Modal */
.wheel-page-container .winner-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.459);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  animation: fadeIn 0.5s forwards;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.wheel-page-container .winner-modal.show {
  display: flex !important;
  opacity: 1;
  visibility: visible;
}

.wheel-page-container .winner-modal .icon {
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(249, 196, 61, 0.2) 0.05%,
    rgba(249, 196, 62, 0.1) 99.95%
  );
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  height: 6rem;
  justify-content: center;
  padding: 0.625rem;
  width: 6rem;
  margin: 0 auto;
  margin-bottom: 25px;
}

.wheel-page-container .winner-modal .winner-modal-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  background-color: #1a1a1a;
  color: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 500px;
  text-align: center;
  position: relative;
  animation: slideDown 0.5s forwards;
}

.wheel-page-container .winner-modal .winner-modal-content h2 {
  margin-bottom: 1rem;
  color: #f9c43e;
}

.wheel-page-container .winner-modal .winner-modal-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.wheel-page-container .winner-modal .winner-modal-content #claimBtn {
  padding: 0.6rem 1.2rem;
  background-color: #f9c43e;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  color: #1a1a1a;
}

.wheel-page-container .winner-modal .winner-modal-content #claimBtn:hover {
  background-color: #ffdc5d;
}

.wheel-page-container .winner-modal .winner-modal-content .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
  transition: 0.3s;
}

.wheel-page-container .winner-modal .winner-modal-content .close-btn:hover {
  color: #f9c43e;
}

.wheel-page-container .winner-modal .prize-name {
  font-size: 1.5rem;
  margin: 1rem 0;
  line-height: 1.4;
  animation: popIn 0.5s ease forwards;
}

/* History Section */
.wheel-page-wheel-history {
  padding-top: 3.5rem;
  color: #fff;
  overflow: auto;
}

.wheel-page-wheel-history .base_title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.wheel-page-wheel-history .base_title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #f9c43e;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
}

.wheel-page-wheel-history .base_title h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #f9c43e;
  margin: 0.5rem auto 0;
  border-radius: 3px;
}

.wheel-page-wheel-history .history-table-container {
  height: fit-content;
  overflow-x: auto;
}

.wheel-page-wheel-history .history-table-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: auto;
  border-radius: 8px;
}

.wheel-page-wheel-history .history-table-wrapper .history-table th:first-child,
.wheel-page-wheel-history .history-table-wrapper .history-table td:first-child {
  width: 40px;
}

.wheel-page-wheel-history .history-table-wrapper table {
  margin: 0 auto;
  border-collapse: collapse;
  text-align: center;
  background-color: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  position: relative;
  max-width: 868px;
  margin: 0 auto;
  min-width: 600px;
  table-layout: fixed;
}

.wheel-page-wheel-history .history-table-wrapper table thead {
  background-color: #2a2a2a;
}

.wheel-page-wheel-history .history-table-wrapper table thead th {
  padding: 12px 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #f9c43e;
  border-bottom: 1px solid #444;
  white-space: nowrap;
}

.wheel-page-wheel-history
  .history-table-wrapper
  table
  tbody
  tr:nth-child(even) {
  background-color: #252525;
}

.wheel-page-wheel-history .history-table-wrapper table tbody tr:hover {
  background-color: #333;
}

.wheel-page-wheel-history .history-table-wrapper table tbody tr td {
  padding: 10px 8px;
  font-size: 0.9rem;
  border-bottom: 1px solid #444;
  white-space: nowrap;
}

.wheel-page-wheel-history .history-table-wrapper table tr.highlight-pulse {
  animation: pulseBg 1.6s ease-in-out infinite;
  transform-origin: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  z-index: 2;
  position: relative;
}

.wheel-page-wheel-history .history-table-wrapper table tr.highlight-pulse td {
  transition: background-color 0.3s ease;
  color: #fff;
}

/* Terms Section */
.wheel-page-terms {
  padding: 4rem 0;
  width: 100%;
  text-align: center;
  padding-top: 6rem;
}

.wheel-page-terms .base_title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #f9c43e;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
}

.wheel-page-terms .base_title h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #f9c43e;
  margin: 0.5rem auto 0;
  border-radius: 3px;
}

.wheel-page-terms .subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.wheel-page-terms .terms-content {
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
}

.wheel-page-terms .terms-content ul {
  margin: 1rem 0;
  padding-left: 1.2rem;
  text-align: left;
}

.wheel-page-terms .terms-content ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.wheel-page-terms .terms-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f9c43e;
  font-size: 0.9rem;
}

.wheel-page-terms .terms-content .prizes-list {
  margin-top: 2rem;
}

.wheel-page-terms .terms-content .prizes-list .list_wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 2rem;
  list-style: none;
  padding: 0;
}

.wheel-page-terms .terms-content .prizes-list .list_wrapper .list_item {
  background: rgba(26, 26, 26, 0.438);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.wheel-page-terms .terms-content .prizes-list .list_wrapper .list_item:hover {
  color: #f9c43e;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.wheel-page-terms
  .terms-content
  .prizes-list
  .list_wrapper
  .list_item
  .main-prize-badge {
  display: inline-block;
  background: #f9c43e;
  color: #000;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  margin-left: 8px;
  font-weight: 700;
}

/* Status indicators */
.wheel-page-container .status-error {
  color: rgb(151, 12, 12);
  animation: soft-shake 2s infinite ease;
}

/* Animations */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes preSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes soft-shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-2px);
  }
  50% {
    transform: translateX(2px);
  }
  75% {
    transform: translateX(-2px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes popIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes slideDown {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0);
    opacity: 0;
  }
}

@keyframes pulseBg {
  0% {
    background-color: rgba(249, 196, 62, 0.06);
  }
  40% {
    background-color: rgba(249, 196, 62, 0.14);
  }
  80% {
    background-color: rgba(249, 196, 62, 0.1);
  }
  100% {
    background-color: rgba(249, 196, 62, 0.06);
  }
}

/* Error Messages */
.wheel-spinner-error {
  background: #ff6b6b;
  color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
}
