/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #121212;
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-image: url("/particla.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.container {
  max-width: 2400px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
}

/* Header */
.header {
  padding: clamp(12px, 2vh, 16px) 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 12px);
  flex-shrink: 0;
}

.logo-img {
  width: clamp(24px, 5vw, 32px);
  height: clamp(24px, 5vw, 32px);
  object-fit: contain;
}

.logo-text {
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 800;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.ton-balance {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 600;
  color: white;
  transition: transform 0.2s ease;
}

.ton-balance:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(79, 140, 251, 0.4);
}

.ton-balance-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.ton-balance-amount {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.ton-balance-label {
  font-size: 14px;
  font-weight: 600;
  color: #e3e8ff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 393px) and (min-width: 0) {
  .spit-btn {
    min-width: 150px !important;
  }
  .roulette-tape {
    gap: 30px !important;
  }
}

.connect-wallet-btn {
  width: 213px;
  height: 43px;
  border-radius: 17px;
  background: linear-gradient(90deg, #4f8cfb 0%, #a770ef 100%);
  color: #f8f6f0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: none; /* Важно! */
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
  box-shadow: none;
  letter-spacing: 0;
  white-space: nowrap;
  transition: background 0.3s;
}

.connect-wallet-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.connect-wallet-btn:active {
  transform: translateY(0);
}

/* Main Content */
.main {
  padding-top: clamp(70px, 15vh, 88px);
  min-height: 100vh;
}

/* Header Cards Section */
.header-cards {
  padding: clamp(20px, 5vh, 40px) 0;
  display: flex;
  justify-content: center;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 3vw, 24px);
  margin: 0 auto;
  justify-content: center;
  max-width: 1600px;
  width: 100%;
}

.header-card {
  border-radius: 16px;
  padding: clamp(16px, 3vw, 20px);
  transition: all 0.3s ease;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.header-card:hover {
  transform: translateY(-4px);
  border-color: #555;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 12px;
}

.card-img {
  width: 100%;
  height: auto;
  max-width: 300px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.card-img:hover {
  transform: scale(1.05);
}

.card-bottom-title {
  font-size: clamp(14px, 3vw, 18px);
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid #333;
  line-height: 1.3;
}

/* Trading Card Special Layout */
.card-trading .card-content {
  display: flex;
  flex-direction: column;
}

.card-details {
  margin-bottom: 16px;
  flex: 1;
}

.platform-info,
.marketplace-info {
  margin-bottom: 12px;
}

.platform-label,
.marketplace-label {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 4px;
  font-weight: 500;
}

.fee-info {
  font-size: 11px;
  color: #fff;
  line-height: 1.4;
}

.card-trading .card-image {
  margin-top: 0;
}

@media (min-width: 992px) {
  .connect-wallet-btn {
    width: 213px;
    max-width: 213px;
  }
}

/* Card Specific Colors */
.card-gifts {
  border-left: 3px solid #4fc3f7;
}

.card-promote {
  border-left: 3px solid #f06292;
}

.card-trading {
  border-left: 3px solid #4fc3f7;
}

.card-verify {
  border-left: 3px solid #66bb6a;
}

/* Roulette Section */
.roulette-section {
  padding: clamp(32px, 8vh, 64px) 0 clamp(80px, 15vh, 120px) 0;
  text-align: center;
}

.roulette-content {
  max-width: 2500px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px) clamp(60px, 12vh, 80px)
    clamp(16px, 4vw, 24px);
}

.roulette-title {
  font-size: clamp(24px, 6vw, 36px);
  font-weight: 800;
  margin-bottom: clamp(16px, 3vh, 24px);
  line-height: 1.2;
  text-align: center;
}

.roulette-subtitle {
  font-size: clamp(14px, 3vw, 18px);
  color: #aaa;
  margin-bottom: clamp(24px, 5vh, 32px);
  text-align: center;
}

.spin-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 16px;
  font-weight: 900;

  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: clamp(24px, 4vw, 20px);
  letter-spacing: 0.19em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: clamp(24px, 5vh, 32px);
  min-height: 50px;
  min-width: 360px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  /* Постоянный glow эффект */
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.4),
    0 0 40px rgba(102, 126, 234, 0.2), 0 0 60px rgba(102, 126, 234, 0.1),
    0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: glowPulse 2s ease-in-out infinite;
}

.spin-btn img {
  display: inline-block;
  vertical-align: middle;
}

.spin-btn::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 18px;
  z-index: -1;
  filter: blur(8px);
  opacity: 0.7;
}

.spin-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(102, 126, 234, 0.6),
    0 0 60px rgba(102, 126, 234, 0.4), 0 0 90px rgba(102, 126, 234, 0.2),
    0 8px 25px rgba(0, 0, 0, 0.3);
}

.spin-btn:hover::before {
  filter: blur(12px);
  opacity: 0.9;
}

.spin-btn:active {
  transform: translateY(-1px);
}

.spin-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  animation: none;
}

.roulette-bg {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 2500px;
  margin: 30px auto;
  height: clamp(120px, 25vw, 231px);
  background: #1c1c1c;
  border-radius: 20px;
  border: 2px solid #333;
  overflow: hidden;
  box-shadow: 0px 4px 4px -2px rgba(0, 0, 0, 0.25) inset;
  background: rgba(28, 28, 28, 1);
}

.roulette-tape {
  display: flex;
  width: 100%;
  gap: 16px;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.roulette-tape.spinning {
  filter: blur(0.5px);
}

.roulette-item {
  flex-shrink: 0;

  margin-right: 0;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
}

.roulette-item:last-child {
  margin-right: 0;
}

.roulette-item.selected {
  transform: scale(1.05);
  z-index: 10;
  filter: brightness(1.2) saturate(1.3);
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.6);
}

.roulette-item .item-img {
  width: clamp(40px, 8vw, 150px);
  height: clamp(40px, 8vw, 150px);
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: clamp(4px, 1vw, 8px);
}

.roulette-item .item-value {
  display: flex;
  align-items: center;
  gap: clamp(2px, 0.5vw, 4px);
  font-size: clamp(10px, 2vw, 14px);
  font-weight: 600;
  color: #ffffff;
  padding: clamp(2px, 0.5vw, 4px) clamp(4px, 1vw, 8px);
  border-radius: 6px;
}

.ton-icon-img {
  width: clamp(12px, 2.5vw, 16px);
  height: clamp(12px, 2.5vw, 16px);
  object-fit: contain;
}

.roulette-controls {
  position: absolute;
  top: calc(100% + clamp(3px, 1vh, 5px));
  left: 0;
  right: 0;
  height: clamp(30px, 6vh, 40px);
}

.roulette-pointer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -28px;
  width: 48px;
  height: 48px;
  z-index: 2;
  pointer-events: none;
}

.roulette-pointer svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.spins-left {
  position: static;
  min-width: 100px;
  height: 32px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 0 18px;
  gap: 6px;
  letter-spacing: 0;
  transition: background 0.2s;
  margin: 0 auto 18px auto;
}

.spins-label {
  opacity: 0.7;
  font-size: 20px;
  margin-right: 2px;
}

.spins-count {
  opacity: 0.7;
  font-size: 20px;
  font-weight: 800;
  color: rgba(255, 255, 255, 1);
}

/* Popup стили */
.winning-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
  padding: 20px;
}

.popup-content {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: clamp(24px, 6vw, 40px);
  border-radius: 20px;
  text-align: center;
  border: 2px solid #667eea;
  animation: scaleIn 0.3s ease;
  max-width: 400px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.popup-content h3 {
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 700;
  margin-bottom: clamp(16px, 3vh, 24px);
  color: #ffffff;
}

.winning-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: clamp(16px, 4vh, 20px) 0;
  min-height: clamp(80px, 20vw, 120px);
}

.winning-item img {
  width: clamp(80px, 20vw, 120px);
  height: clamp(80px, 20vw, 120px);
  border-radius: 12px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.winning-text {
  font-size: clamp(16px, 4vw, 18px);
  margin: clamp(12px, 3vh, 16px) 0;
  color: #ffffff;
  line-height: 1.4;
}

.winning-value {
  color: #00d4ff;
  font-weight: bold;
  font-size: clamp(18px, 4.5vw, 20px);
}

.claim-prize-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: clamp(12px, 3vh, 16px) clamp(20px, 5vw, 32px);
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  margin-top: clamp(16px, 4vh, 20px);
  transition: all 0.3s ease;
  font-size: clamp(14px, 3.5vw, 16px);
  min-height: 48px;
  width: 100%;
  max-width: 200px;
}

.claim-prize-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* NFT Modal */
.nft-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
  padding: 20px;
}

.modal-content {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: clamp(24px, 6vw, 40px);
  border-radius: 20px;
  border: 2px solid #667eea;
  position: relative;
  animation: scaleIn 0.3s ease;
  max-width: 400px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: clamp(20px, 5vw, 24px);
  cursor: pointer;
  color: #ccc;
  transition: color 0.3s ease;
  min-width: 30px;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-modal:hover {
  color: #fff;
}

.nft-icon {
  width: clamp(80px, 20vw, 100px);
  height: clamp(80px, 20vw, 100px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(32px, 8vw, 48px);
  margin: 0 auto clamp(16px, 4vh, 20px);
}

.fire-badge {
  color: #ff6b35;
  font-weight: bold;
  font-size: clamp(14px, 3vw, 16px);
}

.buy-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: clamp(12px, 3vh, 16px) clamp(20px, 5vw, 32px);
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  margin-top: clamp(16px, 4vh, 20px);
  transition: all 0.3s ease;
  font-size: clamp(14px, 3.5vw, 16px);
  min-height: 48px;
  width: 100%;
}

.buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Collection Section */
.collection-section {
  padding: clamp(40px, 8vh, 64px) 0;
}

.collection-title {
  font-size: clamp(28px, 6vw, 36px);
  font-weight: 800;
  text-align: center;
  margin-bottom: clamp(32px, 6vh, 48px);
  letter-spacing: 2px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(16px, 4vw, 24px);
  max-width: 1200px;
  margin: 0 auto;
}

.collection-item {
  background: #1e1e1e;
  background: rgba(28, 28, 28, 1);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);

  border-radius: 16px;
  padding: clamp(20px, 4vw, 24px);
  border: 1px solid #333;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.collection-item:hover {
  transform: translateY(-4px);
  border-color: #667eea;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.collection-item-icon {
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(24px, 6vw, 32px);
  margin-bottom: clamp(12px, 2vh, 16px);
}

.collection-item-title {
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 600;
  margin-bottom: clamp(8px, 1vh, 12px);
  color: #ffffff;
}

.collection-item-fire {
  position: absolute;
  top: clamp(8px, 2vw, 12px);
  right: clamp(8px, 2vw, 12px);
  font-size: clamp(16px, 3vw, 20px);
}

.collection-item-price {
  font-size: clamp(14px, 3vw, 16px);
  font-weight: 600;
  color: #00d4ff;
  background: rgba(0, 212, 255, 0.1);
  padding: clamp(6px, 1vh, 8px) clamp(12px, 2vw, 16px);
  border-radius: 8px;
  margin-top: auto;
  display: flex;
  align-items: center;
}

/* Wallet Section */
.wallet-section {
  padding: clamp(40px, 8vh, 64px) 0;
}

.wallet-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(24px, 6vw, 48px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.wallet-text h2 {
  font-size: clamp(20px, 5vw, 32px);
  font-weight: 700;
  margin-bottom: clamp(16px, 3vh, 24px);
  line-height: 1.3;
}

.check-wallet-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: clamp(12px, 2.5vh, 16px) clamp(20px, 4vw, 32px);
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: clamp(14px, 3vw, 16px);
  margin-bottom: clamp(12px, 2vh, 16px);
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.check-wallet-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.supported-wallets {
  font-size: clamp(12px, 2.5vw, 14px);
  color: #aaa;
  line-height: 1.5;
}

.wallet-mascot {
  display: flex;
  justify-content: center;
}

.mascot-group {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 2vw, 12px);
  justify-content: center;
}

.mascot-item {
  font-size: clamp(24px, 6vw, 32px);
  padding: clamp(8px, 2vw, 12px);
  background: #2a2a2a;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.mascot-item:hover {
  transform: scale(1.1) rotate(5deg);
  border-color: #667eea;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Info Cards */
.info-cards {
  padding: clamp(40px, 8vh, 64px) 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 4vw, 32px);
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  background: #1e1e1e;
  border-radius: 16px;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid #333;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: #555;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-card h3 {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 700;
  margin-bottom: clamp(12px, 2vh, 16px);
  color: #667eea;
}

.info-card p {
  font-size: clamp(14px, 3vw, 16px);
  color: #ccc;
  line-height: 1.6;
}

/* Verification Section */
.verification-section {
  padding: clamp(40px, 8vh, 64px) 0;
}

.verification-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 6vw, 48px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.verification-mascot {
  display: flex;
  justify-content: center;
}

.mascot-image {
  width: clamp(80px, 20vw, 150px);
  height: clamp(80px, 20vw, 150px);
  object-fit: contain;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.mascot-image:hover {
  transform: scale(1.05) rotate(2deg);
}

.verification-text h2 {
  font-size: clamp(20px, 5vw, 32px);
  font-weight: 700;
  margin-bottom: clamp(16px, 3vh, 24px);
  line-height: 1.3;
}

.verify-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: clamp(12px, 2.5vh, 16px) clamp(20px, 4vw, 32px);
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: clamp(14px, 3vw, 16px);
  margin-bottom: clamp(12px, 2vh, 16px);
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.verify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* Utility Classes */
.outline-text {
  -webkit-text-stroke: 2px #ffffff;
  text-stroke: 2px #ffffff;
  color: transparent;
}

.outline-text-blue {
  -webkit-text-stroke: 2px #0098ea;
  text-stroke: 2px #0098ea;
  color: transparent;
}

.outline-text-white {
  -webkit-text-stroke: 2px #ffffff;
  text-stroke: 2px #ffffff;
  color: transparent;
}

/* Animations */
.loading {
  animation: fadeInUp 0.6s ease forwards;
}

/* Анимация пульсации для glow эффекта кнопки SPIN */
@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.4),
      0 0 40px rgba(102, 126, 234, 0.2), 0 0 60px rgba(102, 126, 234, 0.1),
      0 4px 15px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: 0 0 25px rgba(102, 126, 234, 0.5),
      0 0 50px rgba(102, 126, 234, 0.3), 0 0 75px rgba(102, 126, 234, 0.15),
      0 4px 15px rgba(0, 0, 0, 0.2);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Анимация для плавного появления элементов */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.roulette-item:nth-child(odd) {
  animation: fadeInScale 0.3s ease-out;
}

.roulette-item:nth-child(even) {
  animation: fadeInScale 0.3s ease-out 0.1s both;
}

/* Responsive Breakpoints */

/* Extra Small Devices (phones, 320px and up) */
@media (max-width: 374px) {
  .container {
    padding: 0 12px;
  }

  .header-content {
    gap: 8px;
  }

  .logo-text {
    font-size: 14px;
  }

  .connect-wallet-btn {
    padding: 8px 12px;
    font-size: 11px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .header-card {
    min-height: 280px;
    padding: 12px;
  }

  .roulette-title {
    font-size: 20px;
  }

  .spin-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .roulette-bg {
    height: 100px;
  }

  .roulette-item {
    width: 70px;
    height: 80px;
    margin-right: 4px;
  }

  .roulette-item .item-img {
    width: 30px;
    height: 30px;
  }

  .roulette-item .item-value {
    font-size: 8px;
    padding: 2px 4px;
  }

  .ton-icon-img {
    width: 10px;
    height: 10px;
  }

  .roulette-pointer {
    width: 16px;
    height: 16px;
  }

  .spins-left {
    font-size: 8px;
    padding: 2px 4px;
  }
}

/* Small Devices (landscape phones, 375px and up) */
@media (min-width: 375px) and (max-width: 575px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .wallet-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .verification-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mascot-image {
    margin-bottom: 16px;
  }
  .winner-message::after {
    content: "";
  }
}

/* Medium Devices (tablets, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large Devices (desktops, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Extra Large Devices (large desktops, 992px and up) */
@media (min-width: 992px) {
  .cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .wallet-content {
    grid-template-columns: 1fr auto;
  }

  .verification-content {
    grid-template-columns: auto 1fr;
  }
}

/* Ultra Wide Screens (1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1600px;
  }

  .cards-grid {
    max-width: 1800px;
  }

  .roulette-bg {
    max-width: 2500px;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .card-img,
  .mascot-image,
  .logo-img,
  .ton-icon-img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  body {
    background: #191a1b;
  }

  .header {
    background: rgba(16, 16, 16, 0.95);
  }

  .header-card,
  .collection-item,
  .info-card {
    background: #161616;
    border-color: #2a2a2a;
  }

  .wallet-section,
  .verification-section {
    background: #111111;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    /* animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important; */
  }

  .roulette-tape {
    transition: none;
  }

  .roulette-tape.spinning {
    transition: none;
  }

  /* Отключаем анимацию пульсации, но сохраняем статичный glow */
  .spin-btn {
    animation: none !important;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.4),
      0 0 40px rgba(102, 126, 234, 0.2), 0 0 60px rgba(102, 126, 234, 0.1),
      0 4px 15px rgba(0, 0, 0, 0.2);
  }
}

/* Print Styles */
@media print {
  .header,
  .connect-wallet-btn,
  .spin-btn,
  .check-wallet-btn,
  .verify-btn,
  .claim-prize-btn,
  .buy-btn {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .main {
    padding-top: 0;
  }
}

/* Focus Styles for Accessibility */
button:focus,
.header-card:focus,
.collection-item:focus {
  outline: 2px solid #667eea;
  outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .header-card,
  .collection-item,
  .info-card {
    border-width: 2px;
    border-color: #ffffff;
  }

  button {
    border: 2px solid #ffffff;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .header-card:hover,
  .collection-item:hover,
  .info-card:hover,
  .mascot-item:hover,
  .mascot-image:hover {
    transform: none;
  }

  .connect-wallet-btn:hover,
  .spin-btn:hover,
  .check-wallet-btn:hover,
  .verify-btn:hover,
  .claim-prize-btn:hover,
  .buy-btn:hover {
    transform: none;
    box-shadow: none;
  }

  /* Сохраняем glow эффект для кнопки SPIN на мобильных */
  .spin-btn:hover {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.4),
      0 0 40px rgba(102, 126, 234, 0.2), 0 0 60px rgba(102, 126, 234, 0.1),
      0 4px 15px rgba(0, 0, 0, 0.2);
  }

  /* Уменьшаем интенсивность glow на мобильных для экономии батареи */
  .spin-btn {
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.3),
      0 0 30px rgba(102, 126, 234, 0.15), 0 0 45px rgba(102, 126, 234, 0.08),
      0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .spin-btn::before {
    filter: blur(6px);
    opacity: 0.5;
  }

  /* Increase touch targets */
  button,
  .header-card,
  .collection-item {
    min-height: 44px;
  }
}

/* Touch Active States */
.touch-active {
  transform: scale(0.98) !important;
  opacity: 0.8 !important;
  transition: all 0.1s ease !important;
}

button.touch-active {
  background: linear-gradient(135deg, #5a6fd8 0%, #6b4190 100%) !important;
}

.header-card.touch-active,
.collection-item.touch-active {
  transform: scale(0.98) translateY(2px) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

/* Mobile Viewport Fix */
:root {
  --vh: 1vh;
}

@media screen and (max-height: 700px) {
  .main {
    min-height: calc(var(--vh, 1vh) * 100);
  }
}

/* Enhanced Mobile Scrolling */
body {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* Prevent text selection on touch */
.spin-btn,
.connect-wallet-btn,
.check-wallet-btn,
.verify-btn,
.claim-prize-btn,
.buy-btn {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* Improved touch feedback for interactive elements */
.header-card,
.collection-item,
.mascot-item {
  -webkit-tap-highlight-color: rgba(102, 126, 234, 0.2);
  tap-highlight-color: rgba(102, 126, 234, 0.2);
}

/* Mobile-specific roulette optimizations */
@media (max-width: 768px) {
  .roulette-bg {
    touch-action: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .roulette-tape {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
}

/* Performance optimizations for mobile */
.roulette-item,
.header-card,
.collection-item {
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

/* Smooth scrolling for mobile */
@media (max-width: 768px) {
  html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
}

/* Mobile keyboard handling */
@media (max-width: 768px) {
  .main {
    padding-bottom: env(keyboard-inset-height, 0px);
  }
}

/* Safe area handling for notched devices */
@supports (padding: max(0px)) {
  .header {
    padding-left: max(clamp(12px, 2vh, 16px), env(safe-area-inset-left));
    padding-right: max(clamp(12px, 2vh, 16px), env(safe-area-inset-right));
  }

  .container {
    padding-left: max(clamp(16px, 4vw, 24px), env(safe-area-inset-left));
    padding-right: max(clamp(16px, 4vw, 24px), env(safe-area-inset-right));
  }
}

/* Landscape mobile optimizations */
@media (max-height: 500px) and (orientation: landscape) {
  .header {
    padding: clamp(8px, 1vh, 12px) 0;
  }

  .main {
    padding-top: clamp(50px, 10vh, 70px);
  }

  .roulette-section {
    padding: clamp(20px, 4vh, 32px) 0 clamp(40px, 8vh, 60px) 0;
  }

  .roulette-title {
    font-size: clamp(18px, 4vw, 32px);
    margin-bottom: clamp(12px, 2vh, 16px);
  }

  .roulette-subtitle {
    font-size: clamp(12px, 2.5vw, 16px);
    margin-bottom: clamp(16px, 3vh, 24px);
  }

  .spin-btn {
    padding: clamp(10px, 2vh, 14px) clamp(24px, 6vw, 40px);
    font-size: clamp(14px, 3vw, 18px);
    margin-bottom: clamp(16px, 3vh, 24px);
  }

  .roulette-bg {
    height: clamp(80px, 15vw, 150px);
    margin: clamp(12px, 2vh, 16px) auto clamp(20px, 4vh, 40px) auto;
  }
}

/* Extra small devices specific optimizations */
@media (max-width: 374px) {
  .header-content {
    padding: 0 8px;
  }

  .logo-text {
    display: none; /* Hide text on very small screens */
  }

  .connect-wallet-btn {
    font-size: 10px;
    padding: 6px 10px;
  }

  .roulette-title {
    line-height: 1.1;
    word-break: break-word;
  }

  .cards-grid {
    padding: 0 8px;
  }

  .header-card {
    padding: 8px;
    min-height: 250px;
  }

  .card-bottom-title {
    font-size: 12px;
    line-height: 1.2;
  }
}

/* iOS specific fixes */
@supports (-webkit-appearance: none) {
  .spin-btn,
  .connect-wallet-btn,
  .check-wallet-btn,
  .verify-btn {
    -webkit-appearance: none;
    border-radius: 12px;
  }
}

/* Android specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .roulette-tape {
    transform: translate3d(0, 0, 0);
  }
}

/* High contrast accessibility */
@media (prefers-contrast: high) {
  .touch-active {
    outline: 3px solid #ffffff;
    outline-offset: 2px;
  }
}

/* Reduced motion for touch devices */
@media (prefers-reduced-motion: reduce) and (hover: none) {
  .touch-active {
    transform: none !important;
    transition: opacity 0.1s ease !important;
  }
}

.nft-details {
  display: flex;
  justify-content: center;
  min-width: 200px;
  min-height: 200px;
}

.modal-content {
  max-width: 1260px;
  background: rgba(32, 33, 33, 0.77);
}

.wrapper-right-modal {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wrapper-right-button {
  display: flex;
  gap: 50px;
}

.congratulations {
  font-size: 28px;
  font-family: Inter;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0%;
  line-height: 100%;
}

.y-won {
  font-family: Inter;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0%;
}

.left-section {
  width: 30%;
}

.nft-icon {
  width: 216px !important;
  height: 216px !important;
  margin: 0 !important;
  margin-bottom: 10px;
}

.blue-btn {
  background-color: #5379dc !important;
  background: rgba(83, 121, 220, 1) !important;
  border-radius: 17px;
  font-family: Inter;
  font-weight: 600;
  font-size: 20px;
}

.green-btn {
  color: white;
  background: linear-gradient(90deg, #53dcb1 0%, #4e72cf 100%) !important;
  font-family: Inter;
  font-weight: 900;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 9%;
}

.green-text {
  font-weight: bold;
  background: linear-gradient(90deg, #5ffdae 0%, #7cd1e4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-family: Inter;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0%;
  position: relative;
}

.modal-content {
  border: none !important;
  padding: 54px 98px 68px 62px;
}

.y-won-two {
  font-family: Inter;
  font-weight: 700;
  font-size: 20px;
  padding-top: 13px;
}

.span-won-bottom {
  font-family: Inter;
  font-weight: 300;
  font-size: 15px;
  opacity: 0.6;
}

.span-won-bottom:nth-child(1) {
  padding-top: 32px;
}

.nft-icon-transform {
  background-image: url("./images/roulette/item9.png");
  width: 192px !important;
  height: 192px !important;
  margin: 0 !important;
  margin-bottom: 10px;
  position: absolute;
  animation: pulseOpacity 1.5s infinite ease-in-out;
  border-radius: 20px;
  filter: blur(29px);
  will-change: transform;
  transform-origin: center center;
  top: 0;
}

@keyframes gradientShift {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}

@keyframes pulseOpacity {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

.nft-icon-container-img {
  width: 216px !important;
  height: 216px !important;
  z-index: 10;
  position: relative;
  border-radius: 20px;
}

.nft-icon-container {
  position: relative;
}

.ton-mini-img {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-before-ton-img {
  font-family: Inter;
  font-weight: 300;
  font-size: 15px;
  color: rgba(255, 255, 255, 1);
  opacity: 0.6;
}

.buy-btn {
  margin: 0;
}

.roulette-tape {
  gap: 58px;
}

.check-wallet-btn {
  font-family: Inter;
  font-weight: 800;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  background: rgba(83, 121, 220, 1);
  width: auto;
  height: auto;
  padding: 25px 135px;
  margin-top: 69px;
}

.info-card {
  border: 1px solid rgba(255, 255, 255, 1);
}

.info-card > h3 {
  font-family: Inter;
  font-weight: 900;
  font-size: 24px;
}

.info-card > p {
  font-family: Inter;
  font-weight: 400;
  font-size: 24px;
}

.winning-popup {
  backdrop-filter: blur(13.800000190734863px);
}

.nft-details-micro {
  flex-direction: column;
  align-items: center;
  max-width: 200px;
}

.modal-content-micro {
  padding: 0;
  max-width: none;
  padding: 50px;
  max-width: 422px;
  display: flex;
  justify-content: center;
  background: rgba(32, 33, 33, 0.77);
}

.nft-modal-micro {
  backdrop-filter: blur(13.800000190734863px);
}

.green-text-mini {
  font-family: Inter;
  font-weight: 900;
  font-size: 16px;
}
.font-card-bottom {
  font-weight: 600;
  line-height: normal;
}
.span-won-bottom {
  font-family: Inter;
  font-weight: 300;
  font-size: 15px;
  opacity: 0.6;
  margin-bottom: 22px;
  margin-top: 12px;
}

.card-content > .card-bottom-title {
  font-size: 20px !important;
}

/* --- Мобильная адаптивность --- */
@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }
  .header-content {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .header-right {
    justify-content: space-between;
    gap: 12px;
  }
  .ton-balance {
    min-width: auto;
    padding: 6px 12px;
  }
  .ton-balance-amount {
    font-size: 14px;
  }
  .ton-balance-label {
    font-size: 12px;
  }
  .logo-img {
    width: 28px;
    height: 28px;
  }
  .logo-text {
    font-size: 16px;
  }
  .connect-wallet-btn {
    width: 180px;
    height: 40px;
    font-size: 14px;
  }
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .header-card {
    min-height: 90px;
  }
  .card-img {
    max-width: 100px;
  }
  .roulette-bg {
    width: 100vw;
    min-width: 0;
    border-radius: 10px;
  }
  .roulette-tape {
    gap: 8px;
  }
  .roulette-item .item-img {
    width: 50px !important;
    height: 50px !important;
  }
  .spin-btn {
    width: 100%;
    min-width: 0;
    font-size: 16px;
  }
  .collection-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .collection-item {
    min-width: 0;
    margin-bottom: 24px;
  }
  .collection-item-title {
    font-size: 14px;
  }
  .collection-item-icon img {
    max-width: 60px;
  }
  .collection-item-price {
    font-size: 14px;
  }
  .wallet-content {
    flex-direction: column;
    padding: 24px 0;
  }
  .wallet-mascot {
    display: none;
  }
  .info-grid {
    flex-direction: column;
  }
  .info-card {
    min-height: 0;
    font-size: 13px;
  }
  .verification-content {
    flex-direction: column;
  }
  .verify-btn,
  .check-wallet-btn {
    width: 100%;
    font-size: 16px;
    padding: 12px 0;
  }
  .modal-content,
  .modal-content-micro {
    padding: 16px !important;
    max-width: 95vw;
  }
  .winning-popup,
  .nft-modal {
    align-items: flex-start;
  }
  .nft-icon-transform {
    width: 93px !important;
    height: 86px !important;
  }
  .nft-icon-container-img {
    width: 73px !important;
    height: 77px !important;
  }
}

@media (max-width: 480px) {
  .collection-grid {
    grid-template-columns: 1fr;
  }
  .spin-btn {
    font-size: 13px;
  }
  .modal-content,
  .modal-content-micro {
    padding: 6px !important;
  }
}

@media (max-width: 375px) {
  .logo-text {
    display: none;
  }
  .spin-btn {
    font-size: 11px;
  }
  .collection-item-title {
    font-size: 11px;
  }
}

/* Уведомления о продаже и получении */
.sell-notification,
.claim-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 16px;
  color: white;
  animation: slideInRight 0.3s ease-out, fadeOut 0.3s ease-out 2.7s;
}

.sell-notification-content,
.claim-notification-content {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
}

.sell-notification-icon,
.claim-notification-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 6px;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.spin-btn {
  min-width: 250px;
  font-size: 16px;
  min-height: 45px;
  letter-spacing: 0.5px;
}

/* Winners Ticker - беговая строка с победителями */
.winners-ticker-container {
  width: 100%;
  max-width: 800px;
  margin: 20px auto 30px auto;
  background: rgba(28, 28, 28, 0.9);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
}

.winners-ticker-container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 30px;
  background: linear-gradient(
    to right,
    rgba(28, 28, 28, 1) 0%,
    rgba(28, 28, 28, 0) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.winners-ticker-container::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 30px;
  background: linear-gradient(
    to left,
    rgba(28, 28, 28, 1) 0%,
    rgba(28, 28, 28, 0) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.winners-ticker {
  width: 100%;
  height: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.winners-ticker-content {
  display: flex;
  align-items: center;
  height: 100%;
  animation: scroll-left 60s linear infinite;
  white-space: nowrap;
  min-width: 100%; /* Обеспечиваем минимальную ширину для анимации */
}

/* Плейсхолдер для пустой беговой строки */
.winners-ticker-content:empty::before {
  content: "Loading winners... • Checking recent trades... • Updating data...";
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.winner-message {
  display: inline-flex;
  align-items: center;
  padding: 0 30px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
  position: relative;
}

.winner-message .wallet {
  color: #667eea;
  font-weight: 600;
}

.winner-message .action {
  color: #aaa;
  margin: 0 5px;
}

.winner-message .item-name {
  color: #00d4ff;
  font-weight: 600;
  margin: 0 5px;
}

.winner-message .amount {
  color: #4caf50;
  font-weight: 700;
  margin-left: 5px;
}

.winner-message .ton-icon {
  width: 16px;
  height: 16px;
  margin: 0 3px;
  vertical-align: middle;
}

.winner-message::after {
  content: "•";
  color: rgba(255, 255, 255, 0.3);
  margin: 0 20px;
  font-size: 12px;
}

.winner-message:last-child::after {
  display: none;
}

@keyframes scroll-left {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-770%);
  }
}

/* Responsive стили для беговой строки */
@media (max-width: 768px) {
  .winners-ticker-container {
    max-width: 95%;
    height: 35px;
    margin: 15px auto 20px auto;
  }

  .winner-message {
    font-size: 12px;
    padding: 0 20px;
  }

  .winner-message .ton-icon {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  .winners-ticker-container {
    height: 30px;
    margin: 10px auto 15px auto;
  }

  .winner-message {
    font-size: 11px;
    padding: 0 15px;
  }

  .winner-message .ton-icon {
    width: 12px;
    height: 12px;
  }
}
