/* ===== ROOT VARIABLES ===== */
:root {
    --primary-color: #8b0000;
    --primary-dark: #5d0000;
    --primary-light: #a50000;
    --accent-color: #ffd700;
    --accent-dark: #d4af37;
    --accent-light: #ffea80;
    --text-light: #ffffff;
    --text-muted: #cccccc;
    --text-dark: #333333;
    --bg-dark: #1a0000;
    --bg-card: #2a0000;
    --bg-card-hover: #3a0000;
    --shadow-color: rgba(0, 0, 0, 0.5);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    --transition: all 0.3s ease;
    --header-height: 60px;
    --bottom-nav-height: 60px;
    --content-padding: 16px;
  }
  
  /* ===== RESET & BASE STYLES ===== */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
  }
  
  html,
  body {
    height: 100%;
    width: 100%;
    font-family: "Poppins", sans-serif;
    background: var(--gradient-primary);
    color: var(--text-light);
    overflow-x: hidden;
  }
  
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
  }
  
  a {
    text-decoration: none;
    color: var(--accent-color);
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--accent-light);
  }
  
  button {
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    border: none;
    outline: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  .hidden {
    display: none !important;
  }
  
  /* ===== LOADER STYLES ===== */
  #loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .loader {
    text-align: center;
  }
  
  .spinner {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
  }
  
  .coin {
    position: absolute;
    width: 50px;
    height: 50px;
    transform-style: preserve-3d;
    animation: spin 2s infinite linear;
  }
  
  .coin1 {
    top: 0;
    left: 25px;
    animation-delay: 0s;
  }
  
  .coin2 {
    top: 25px;
    left: 0;
    animation-delay: 0.2s;
  }
  
  .coin3 {
    top: 25px;
    left: 50px;
    animation-delay: 0.4s;
  }
  
  .face {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    backface-visibility: hidden;
  }
  
  .front {
    background: var(--accent-color);
    transform: rotateY(0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-dark);
    font-size: 20px;
  }
  
  .front::after {
    content: "₹";
  }
  
  .back {
    background: var(--accent-dark);
    transform: rotateY(180deg);
  }
  
  @keyframes spin {
    0% {
      transform: rotateY(0);
    }
    100% {
      transform: rotateY(360deg);
    }
  }
  
  .loading-text {
    color: var(--text-light);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    animation: pulse 1.5s infinite;
  }
  
  @keyframes pulse {
    0% {
      opacity: 0.5;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0.5;
    }
  }
  
  /* ===== APP CONTAINER ===== */
  #app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    padding-bottom: var(--bottom-nav-height);
  }
  
  /* ===== HEADER STYLES ===== */
  .header {
    height: var(--header-height);
    background-color: var(--bg-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--content-padding);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    height: 40px;
    width: auto;
    margin-right: 10px;
  }
  
  .logo h1 {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .user-balance {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
  }
  
  .user-balance i {
    color: var(--accent-color);
    margin-right: 5px;
  }
  
  .user-balance .amount {
    font-weight: 600;
  }
  
  /* ===== BUTTON STYLES ===== */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    gap: 8px;
  }
  
  .btn-sm {
    padding: 6px 12px;
    font-size: 14px;
  }
  
  .btn-lg {
    padding: 12px 24px;
    font-size: 18px;
  }
  
  .btn-primary {
    background: var(--gradient-accent);
    color: var(--primary-dark);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }
  
  .btn-primary:active {
    transform: translateY(0);
  }
  
  .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  
  .btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
  }
  
  .btn-outline:hover {
    background: rgba(255, 215, 0, 0.1);
  }
  
  .btn-block {
    width: 100%;
    display: flex;
  }
  
  .btn-claim {
    background: var(--accent-color);
    color: var(--primary-dark);
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 4px;
  }
  
  .btn-claim.disabled {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
    cursor: not-allowed;
  }
  
  .btn-play {
    background: var(--accent-color);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }
  
  /* ===== PREMIUM BANNER ===== */
  .premium-banner {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.8) 0%, rgba(93, 0, 0, 0.9) 100%);
    background-size: cover;
    background-position: center;
    padding: 20px var(--content-padding);
    position: relative;
    overflow: hidden;
  }
  
  .premium-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  }
  
  .banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .banner-text h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--accent-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .banner-text p {
    font-size: 14px;
    opacity: 0.9;
    max-width: 70%;
  }
  
  .promo-circle {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: pulse-promo 2s infinite;
    line-height: 1;
    padding: 5px;
  }
  
  .promo-circle span {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-dark);
  }
  
  .promo-circle .promo-amount {
    font-size: 20px;
    font-weight: 700;
  }
  
  @keyframes pulse-promo {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  
  /* ===== CONTENT AREA ===== */
  .content-area {
    flex: 1;
    padding: var(--content-padding);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* ===== TABS ===== */
  .tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    overflow: hidden;
  }
  
  .tab-btn {
    flex: 1;
    background: transparent;
    color: var(--text-muted);
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  
  .tab-btn i {
    font-size: 16px;
  }
  
  .tab-btn.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    background: rgba(255, 215, 0, 0.05);
  }
  
  /* ===== TAB CONTENT ===== */
  .tab-content {
    position: relative;
  }
  
  .tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
  }
  
  .tab-pane.active {
    display: block;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* ===== SECTION TITLE ===== */
  .section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .section-title h2 {
    font-size: 18px;
    font-weight: 600;
  }
  
  .view-all {
    font-size: 14px;
    color: var(--accent-color);
  }
  
  /* ===== GAME GRID ===== */
  .game-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
  }
  
  .game-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
  }
  
  .game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    background: var(--bg-card-hover);
  }
  
  .game-image {
    position: relative;
    height: 120px;
    overflow: hidden;
  }
  
  .game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .game-card:hover .game-image img {
    transform: scale(1.1);
  }
  
  .game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
  }
  
  .game-card:hover .game-overlay {
    opacity: 1;
  }
  
  .game-card:hover .btn-play {
    opacity: 1;
    transform: translateY(0);
  }
  
  .game-info {
    padding: 12px;
  }
  
  .game-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .game-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
  }
  
  .game-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .game-meta i {
    color: var(--accent-color);
  }
  
  /* ===== TASK LIST ===== */
  .task-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
  }
  
  .task-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
  }
  
  .task-card:hover {
    background: var(--bg-card-hover);
  }
  
  .task-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color);
    font-size: 18px;
    flex-shrink: 0;
  }
  
  .task-info {
    flex: 1;
  }
  
  .task-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
  }
  
  .task-info p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
  }
  
  .task-progress {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
  }
  
  .progress {
    height: 100%;
    background: var(--accent-color);
    border-radius: 3px;
  }
  
  .task-progress span {
    font-size: 12px;
    color: var(--text-muted);
  }
  
  .task-reward {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
  }
  
  .task-reward span {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-color);
  }
  
  /* ===== REWARDS SUMMARY ===== */
  .rewards-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .reward-item {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }
  
  .reward-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
    color: var(--accent-color);
    font-size: 20px;
  }
  
  .reward-info h3 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--text-muted);
  }
  
  .reward-info .amount {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-color);
  }
  
  /* ===== ACTION BUTTONS ===== */
  .action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
  }
  
  /* ===== TRANSACTION LIST ===== */
  .transaction-list {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .empty-state {
    text-align: center;
    padding: 30px 0;
  }
  
  .empty-state i {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
  }
  
  .empty-state p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
  }
  
  .empty-state .sub-text {
    font-size: 14px;
    color: var(--text-muted);
  }
  
  /* ===== BOTTOM NAVIGATION ===== */
  .bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--bottom-nav-height);
    background: var(--bg-dark);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 90;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  }
  
  .nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 12px;
    padding: 8px 0;
    transition: var(--transition);
  }
  
  .nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
  }
  
  .nav-item.active {
    color: var(--accent-color);
  }
  
  /* ===== MODAL ===== */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .modal-content {
    background: var(--bg-dark);
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease;
  }
  
  @keyframes modalFadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
  }
  
  .close-modal:hover {
    color: var(--text-light);
  }
  
  .modal-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-color);
    text-align: center;
  }
  
  .modal-content p {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-muted);
  }
  
  /* ===== WHEEL CONTAINER ===== */
  .wheel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
  }
  
  .wheel-outer {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: var(--gradient-accent);
    padding: 10px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  }
  
  .wheel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-dark);
    overflow: hidden;
  }
  
  .wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transition: transform 3s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  }
  
  .wheel-section {
    position: absolute;
    width: 50%;
    height: 50%;
    transform-origin: bottom right;
    left: 0;
    top: 0;
    background: var(--clr);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-dark);
    transform: rotate(calc(60deg * var(--i)));
    font-size: 18px;
  }
  
  .wheel-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
  
  .wheel-pin::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid var(--accent-color);
  }
  
  .spin-result {
    text-align: center;
    padding: 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--border-radius);
    margin-top: 20px;
  }
  
  .spin-result h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-color);
  }
  
  .spin-result p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  #win-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
  }
  
  /* ===== FLOATING SPIN BUTTON ===== */
  .floating-spin-button {
    position: fixed;
    bottom: 10px; /* Changed from 10px to 15px */
    left: 33%;
    transform: translateX(-50%);
    z-index: 80;
    cursor: pointer;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    /* Added animation for premium feel */
    animation: float 3s ease-in-out infinite;
  }
  
  .spin-button-inner {
    position: relative;
    width: 150px;
    height: 100px;
  }
  
  .spin-wheel-mini {
    position: relative;
    width: 100px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 100px 100px 0 0;
    margin: 0 auto;
    overflow: hidden;
    /* Added animation for premium feel */
    animation: pulse 2s ease-in-out infinite;
  }
  
  .spin-wheel-mini-inner {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 0;
    background: var(--primary-color);
    border-radius: 100px 100px 0 0;
  }
  
  .spin-wheel-mini::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  
  .spin-coin {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  
  .spin-coin-1 {
    top: 10px;
    left: 10px;
    animation: coinFloat1 4s ease-in-out infinite;
  }
  
  .spin-coin-2 {
    top: 10px;
    right: 10px;
    animation: coinFloat2 4.5s ease-in-out infinite;
  }
  
  /* Animations */
  @keyframes float {
    0%,
    100% {
      transform: translateX(-50%) translateY(0);
    }
    50% {
      transform: translateX(-50%) translateY(-5px);
    }
  }
  
  @keyframes pulse {
    0%,
    100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }
  
  @keyframes coinFloat1 {
    0%,
    100% {
      transform: translate(0, 0);
    }
    25% {
      transform: translate(5px, -10px);
    }
    50% {
      transform: translate(10px, 0);
    }
    75% {
      transform: translate(5px, 10px);
    }
  }
  
  @keyframes coinFloat2 {
    0%,
    100% {
      transform: translate(0, 0);
    }
    25% {
      transform: translate(-5px, 10px);
    }
    50% {
      transform: translate(-10px, 0);
    }
    75% {
      transform: translate(-5px, -10px);
    }
  }
  
  /* Added for demo purposes */
  .bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--bottom-nav-height);
    background: var(--bg-dark);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 70;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  }
  
  .nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 12px;
    padding: 8px 0;
  }
  
  .nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
  }
  
  /* ===== RESPONSIVE STYLES ===== */
  @media (min-width: 768px) {
    :root {
      --content-padding: 24px;
    }
  
    .game-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  
    .rewards-summary {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .modal-content {
      padding: 30px;
    }
  
    .wheel-outer {
      width: 300px;
      height: 300px;
    }
  }
  
  @media (max-width: 480px) {
    .rewards-summary {
      grid-template-columns: repeat(1, 1fr);
    }
  
    .tab-btn span {
      font-size: 12px;
    }
  
    .wheel-outer {
      width: 220px;
      height: 220px;
    }
  
    .wheel-section {
      font-size: 16px;
    }
  }
  
  /* ===== ANIMATIONS ===== */
  @keyframes float {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0);
    }
  }
  
  @keyframes shine {
    0% {
      background-position: -100% 0;
    }
    100% {
      background-position: 200% 0;
    }
  }
  
  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  } 