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

body {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    min-width: 100vw; /* FIXED: prevents zoom on landscape */
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* Show rotate message when mobile is in portrait */
@media screen and (orientation: portrait) {
    body::before {
        content: '📱 Please rotate your device to landscape mode';
        position: fixed;
        inset: 0;
        background: #1a1a2e;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 20px;
        font-weight: 600;
        text-align: center;
        padding: 20px;
        z-index: 99999;
    }
}


.game-container {
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
    flex-shrink: 0;
}

.logo-section {
    background: linear-gradient(135deg, #d77022, #d60000);
    padding: 12px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(215, 112, 34, 0.4);
}

.logo-section h1 {
    color: white;
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header-controls {
    display: flex;
    gap: 10px;
    flex: 1;
    justify-content: flex-end;
}

.btn-header {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
}

.btn-header:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-lp {
  position: fixed;
  left: 0px; /* distance from left edge */
  top: 53%; /* vertically center */
  transform: translateY(-50%); /* adjust to perfect center */
  z-index: 99;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-lp:hover {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.btn-limit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.btn-limit:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.notice-panel {
    background: rgba(255, 193, 7, 0.15);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 10px;
    padding: 10px 15px;
    margin-bottom: 10px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.notice-icon {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #1a1a2e;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.notice-text {
    color: #ffc107;
    font-weight: 600;
    font-size: 14px;
    flex: 1;
}

.main-content {
    display: flex;
    gap: 15px;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.center-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 0;
}

.barcode-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    flex: 1;
    min-height: 0;
}

.barcode-card {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.barcode-card.selected {
background: linear-gradient(135deg, #66ff62, #049f13);
    border-color: #11ac1e;
    box-shadow: 0 0 20px rgba(215, 112, 34, 0.6);
}

.barcode-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.barcode-card:hover::before {
    left: 100%;
}

.barcode-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(215, 112, 34, 0.3);
    background: linear-gradient(135deg, #66ff62, #049f13);
    border-color: #11ac1e;
    box-shadow: 0 0 20px rgb(30 220 29 / 60%);
}

.card-number {
    color: white;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.barcode-label {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 8px;
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.place-bid-btn {
    background: linear-gradient(135deg, #d77022, #d60000);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(215, 112, 34, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
    width: 100%;
}

.place-bid-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(215, 112, 34, 0.6);
    background: linear-gradient(135deg, #d60000, #d77022);
}

.place-bid-btn:active {
    transform: translateY(-1px);
}

.right-panel {
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* height: 100vh;            */
  overflow-y: auto;       
  overflow-x: hidden;   
  padding: 10px;      
  box-sizing: border-box;  
}

.results-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.card-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.results-display {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    justify-content: space-around;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.result-item {
    background: linear-gradient(135deg, #d77022, #d60000);
    color: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(215, 112, 34, 0.4);
}

.barcode-section {
    margin-bottom: 15px;
}

.barcode-label-small {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.number-spinner-inline {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.spinner-digit-small {
    background: linear-gradient(135deg, #d77022, #d60000);
    color: white;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-weight: bold;
    font-size: 13px;
    box-shadow: 0 2px 8px rgba(215, 112, 34, 0.4);
    position: relative;
    overflow: hidden;
}

.spinner-digit-small span {
    position: relative;
    display: block;
}

.spinner-digit-small.spinning span {
    animation: analogSpin 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes analogSpin {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
        filter: blur(0px);
    }

    20% {
        transform: translateY(-5px) scale(1.1);
        opacity: 0.8;
        filter: blur(1px);
    }

    40% {
        transform: translateY(-15px) scale(0.9);
        opacity: 0.4;
        filter: blur(2px);
    }

    60% {
        transform: translateY(15px) scale(0.9);
        opacity: 0.4;
        filter: blur(2px);
    }

    80% {
        transform: translateY(5px) scale(1.1);
        opacity: 0.8;
        filter: blur(1px);
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
        filter: blur(0px);
    }
}

.barcode-number {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 8px;
    text-align: center;
    color: white;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.number-spinner {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.spinner-digit {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: bold;
    font-size: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.spinner-digit span {
    animation: spin 2s infinite;
}
button.moreprize-btn {
    background: linear-gradient(135deg, #d77022, #d60000);
    border: none;
    color: #e3ff12;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s 
ease;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
}
.winning-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    backdrop-filter: blur(10px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.winning-list {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 5px;
}

.winning-list::-webkit-scrollbar {
    width: 6px;
}

.winning-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.winning-list::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #d77022, #d60000);
    border-radius: 10px;
}

.winning-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    border-left: 3px solid #4ade80;
}

.winning-user {
    color: white;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.winning-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    margin-bottom: 4px;
}

.winning-amount {
    color: #4ade80;
    font-weight: bold;
    font-size: 15px;
}


/* login  */

/* Wrapper for centering */
.login-wrapper {
  width: 100%;
  max-width: 400px;
  padding: 20px;
}

/* Card with glass effect */
.login-card {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transform: translateY(0);
  transition: all 0.3s ease;
}

.login-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.3);
}

/* Form styling */
.form-label {
  color: #fff;
  font-weight: 500;
}

.form-control {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  border-radius: 8px;
  padding: 10px 12px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-control:focus {
  border-color: #fff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.25);
}
.login-card h2 {
    color: #d6651e;
}
/* Button */
.btn-login {
  background: linear-gradient(135deg, #d77022, #d60000);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 10px 0;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* profile  */


.profile-container {
  height: 100vh;
}

.profile-card {
  width: 380px;
  padding: 30px;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  text-align: center;
  box-shadow: 0 0 25px rgba(255,255,255,0.2);
  position: relative;
  transition: 0.4s;
}
.profile-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 45px rgba(255,255,255,0.35);
}

.edit-btn {
  position: absolute;
  right: 14px;
  top: 14px;
  background: rgb(16 185 129);
  border: none;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  color: #fff;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}
.edit-btn:hover {
  background: rgba(255,255,255,0.45);
}

.profile-img img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgb(255 40 40);
  box-shadow: 0 0 25px rgba(255,255,255,0.3);
}

.name {
    margin-top: 14px;
    font-size: 22px;
    font-weight: 600;
    color: #10b981;
}

.email {
  opacity: 0.8;
  margin-bottom: 20px;
      color: #d4d4d4;

}

.info p {
  margin: 6px 0;
  font-size: 15px;
  color: #d4d4d4;
}

/* Modal Style */
.glass-modal {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(18px);
  color: #fff;
  border-radius: 16px;
}

.form-control {
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
}
.form-control:focus {
  box-shadow: none;
  border: 1px solid #fff;
}

.save-btn {
    background: linear-gradient(135deg, #d77022, #d60000);
    border: none;
    color: #e7e7e7;
    font-weight: 600;
    padding: 8px;
    border-radius: 6px;
}

/* prizing  */
.page-wrapper {
  padding: 30px;
}

.page-title {
  font-weight: 700;
  background: linear-gradient(135deg, #d77022, #d60000);
  -webkit-background-clip: text;
  color: transparent;
}

/* Shared Card Style */
.card-box {
  background: rgba(255, 255, 255, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-radius: 18px;
  padding: 25px;
  width: 100%;
  backdrop-filter: blur(18px);
  box-shadow: 0 0 25px rgba(255,255,255,0.25);
}

/* Prize Cards */
.prize-box .prize-card {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgb(215 112 34), rgb(214 0 0 / 90%));
  border: 1px solid rgba(255,255,255,0.4);
  transition: 0.3s;
}

.prize-box .prize-card:hover {
  transform: scale(1.04);
  box-shadow: 0 0 15px rgba(255,255,255,0.5);
}

/* Image Style */
.prize-img {
    width: 135px;
    height: 100px;
    object-fit: cover;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.5));
    border-radius: 8px;
}

/* Text Section */
.prize-info {
  text-align: left;
}

.rank {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.req {
  margin: 3px 0;
  font-size: 15px;
  font-weight: 500;
  color: #ffd8bd;
}

.reward {
  margin: 2px 0;
  font-size: 22px;
  font-weight: 600;
  color: #e3ff12;
}
h2.section-title {
    color: #fff;
    margin-bottom: 21px;
}
ul.direct-list {
    padding-left: 0;
}
/* Direct List */
.direct-list li {
  display: flex;
  align-items: center;
  justify-content: space-between; /* NEW */
  gap: 12px;
  padding: 10px 14px;
  margin-bottom: 10px;
  border-radius: 10px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.25);
  transition: 0.3s;
}

.d-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffcc34;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
.prize-info span {
    color: #e3ff12;
}
.d-amt {
  color: #ffcc34;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap; 
}
.bid-report {
    display: flex;
    gap: 24px;
}
.barcode-section.number {
    display: flex;
    gap: 14px;
    align-items: center;
}
span.badge.new-report {
    background: linear-gradient(135deg, #19d913, #71ee05);
    border-radius: 4px;
}
.bid-report p {
    margin: 0;
    font-weight: 500;
    font-size: 14px;
}
/* Landscape Responsive */
@media (min-width: 900px) {
  .layout-box {
    flex-wrap: nowrap;
    justify-content: center;
  }
}

/* Mobile Portrait */
@media (max-width: 500px) {
  .card-box {
    width: 100%;
  }
}

/* Responsive Styles */
@media (max-width: 1024px) and (orientation: landscape) {
    .game-container {
        padding: 10px;
    }

    .logo-section h1 {
        font-size: 22px;
    }

    .btn-header {
        padding: 8px 16px;
        font-size: 12px;
    }

    .card-number {
        font-size: 24px;
    }

    .right-panel {
        width: 240px;
    }
}

@media (max-width: 932px) and (orientation: landscape) {
    .game-container {
        padding: 8px;
    }

    .logo-section {
        padding: 8px 18px;
    }

    .logo-section h1 {
        font-size: 20px;
    }

    .btn-header {
        padding: 6px 12px;
        font-size: 11px;
    }

    .notice-panel {
        padding: 8px 12px;
    }

    .card-number {
        font-size: 22px;
    }

    .right-panel {
        width: 220px;
    }

    .results-card,
    .winning-card {
        padding: 12px;
    }
}

@media (max-width: 844px) and (orientation: landscape) {
    .game-container {
        padding: 8px;
    }

    .header {
        margin-bottom: 8px;
    }

    .logo-section h1 {
        font-size: 18px;
    }

    .btn-header {
        padding: 5px 10px;
        font-size: 10px;
    }

    .notice-panel {
        padding: 6px 10px;
        margin-bottom: 8px;
    }

    .notice-text {
        font-size: 10px;
    }

    .main-content {
        gap: 10px;
    }

    .center-panel {
        gap: 8px;
    }

    .barcode-grid {
        gap: 6px;
        padding-left: 61px;
    }

    .card-number {
        font-size: 20px;
    }

    .barcode-label {
        padding: 6px;
        font-size: 12px;
    }

    .place-bid-btn {
        padding: 8px;
        font-size: 14px;
        width: 100%;
    }

    .right-panel {
        width: 200px;
        gap: 10px;
    }

    .card-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .result-item {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .spinner-digit-small {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }

    .barcode-label-small {
        font-size: 10px;
    }
}

@media (max-width: 667px) and (orientation: landscape) {
    .game-container {
        padding: 6px;
    }

    .header {
        margin-bottom: 6px;
        gap: 6px;
    }

    .logo-section {
        padding: 6px 12px;
    }

    .logo-section h1 {
        font-size: 16px;
    }

    .btn-header {
        padding: 4px 8px;
        font-size: 9px;
        border-radius: 8px;
    }

    .notice-panel {
        padding: 5px 8px;
        margin-bottom: 6px;
        border-radius: 8px;
    }

    .notice-icon {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .notice-text {
        font-size: 8px;
    }

    .main-content {
        gap: 8px;
    }

    .center-panel {
        gap: 6px;
    }

    .barcode-grid {
        gap: 5px;
    }

    .card-number {
        font-size: 18px;
    }

    .barcode-label {
        padding: 5px;
        font-size: 11px;
        border-radius: 8px;
    }

    .place-bid-btn {
        padding: 6px;
        font-size: 12px;
        border-radius: 10px;
    }

    .right-panel {
        width: 180px;
        gap: 8px;
    }

    .results-card,
    .winning-card {
        padding: 10px;
    }

    .card-title {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .barcode-section {
        margin-bottom: 8px;
    }

    .result-item {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }

    .spinner-digit-small {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }

    .barcode-label-small {
        font-size: 9px;
    }

    .barcode-row {
        padding: 8px;
        gap: 8px;
    }

    .winning-item {
        padding: 8px;
        margin-bottom: 6px;
    }

    .winning-user {
        font-size: 11px;
    }

    .winning-date {
        font-size: 9px;
    }

    .winning-amount {
        font-size: 12px;
    }
}

@media (max-width: 568px) and (orientation: landscape) {
    .game-container {
        padding: 5px;
    }

    .header {
        margin-bottom: 5px;
        gap: 5px;
    }

    .logo-section {
        padding: 5px 10px;
    }

    .logo-section h1 {
        font-size: 14px;
    }

    .btn-header {
        padding: 3px 6px;
        font-size: 8px;
    }

    .notice-panel {
        padding: 4px 6px;
        margin-bottom: 5px;
    }

    .notice-icon {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }

    .notice-text {
        font-size: 7px;
    }

    .main-content {
        gap: 6px;
    }

    .center-panel {
        gap: 5px;
    }

    .barcode-grid {
        gap: 4px;
    }

    .card-number {
        font-size: 16px;
    }

    .barcode-label {
        padding: 4px;
        font-size: 10px;
    }

    .place-bid-btn {
        padding: 5px;
        font-size: 11px;
    }

    .right-panel {
        width: 160px;
        gap: 6px;
    }

    .results-card,
    .winning-card {
        padding: 8px;
    }

    .card-title {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .barcode-section {
        margin-bottom: 6px;
    }

    .result-item {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .spinner-digit-small {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }

    .barcode-label-small {
        font-size: 8px;
    }

    .barcode-row {
        padding: 6px;
        gap: 6px;
    }

    .winning-item {
        padding: 6px;
        margin-bottom: 5px;
    }

    .winning-user {
        font-size: 10px;
    }

    .winning-date {
        font-size: 8px;
    }

    .winning-amount {
        font-size: 11px;
    }
}