/* Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-primary: #0c1318;
  --bg-secondary: #10171f;
  --bg-card: #151d26;
  --bg-card-hover: #1a242f;
  --text-primary: #ffffff;
  --text-secondary: #8a939d;
  --text-muted: #5a636d;
  --accent-red: #e74c3c;
  --accent-pink: #ff4757;
  --accent-green: #48a26d;
  --accent-blue: #3498db;
  --border-color: #1f2937;
  --sidebar-width: 56px;
  --header-height: 60px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.hamburger-btn:hover {
  color: var(--text-primary);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 20px;
}

.logo-icon {
  font-size: 28px;
}

.logo-fury {
  color: var(--accent-red);
}

.bonuses-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  padding: 8px 16px;
  border-radius: 8px;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 14px;
  transition: background 0.2s;
}

.bonuses-btn:hover {
  background: var(--bg-card-hover);
}

.bonuses-icon {
  font-size: 16px;
}

.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border-radius: 8px;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.search-btn:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
}

.login-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  transition: all 0.2s;
}

.login-btn:hover {
  background: var(--bg-card);
}

.signup-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: var(--text-primary);
  transition: all 0.2s;
}

.signup-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.connect-wallet-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  background: linear-gradient(135deg, #26a17b, #1a7a5c);
  color: var(--text-primary);
  transition: all 0.3s;
  border: none;
}

.connect-wallet-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(38, 161, 123, 0.4);
}

.connect-wallet-btn svg {
  flex-shrink: 0;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.icon-btn:hover {
  background: var(--bg-card);
  color: var(--text-primary);
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: var(--sidebar-width);
  height: calc(100vh - var(--header-height));
  background: var(--bg-secondary);
  border-right: 1px solid var(--border-color);
  z-index: 90;
  overflow-y: auto;
  scrollbar-width: none;
}

.sidebar::-webkit-scrollbar {
  display: none;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
  gap: 4px;
}

.sidebar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: var(--text-secondary);
  transition: all 0.2s;
  position: relative;
}

.sidebar-item:hover {
  background: var(--bg-card);
  color: var(--text-primary);
}

.sidebar-item.active {
  background: var(--bg-card);
  color: var(--accent-red);
}

.sidebar-item.featured {
  color: #ffc107;
}

.live-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.sidebar-divider {
  width: 30px;
  height: 1px;
  background: var(--border-color);
  margin: 8px 0;
}

/* Main Content */
.main-content {
  margin-left: var(--sidebar-width);
  padding-top: var(--header-height);
  min-height: 100vh;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, #1a0a0e 0%, #0c1318 50%, #0a1520 100%);
  padding: 40px;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(231, 76, 60, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.hero-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.hero-bonus {
  font-size: 52px;
  font-weight: 900;
  background: linear-gradient(180deg, #fff 0%, #ccc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero-spins {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #26a17b, #1a7a5c);
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
  transition: all 0.3s;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(38, 161, 123, 0.4);
}

.cta-btn svg {
  flex-shrink: 0;
}

.social-logins {
  display: flex;
  gap: 8px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.2s;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Chain Badges */
.chain-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chain-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}

.chain-badge:hover {
  background: rgba(255, 255, 255, 0.2);
}

.chain-badge.bsc {
  border: 1px solid rgba(240, 185, 11, 0.4);
  color: #F0B90B;
}

.chain-badge.eth {
  border: 1px solid rgba(98, 126, 234, 0.4);
  color: #627EEA;
}

.chain-badge.usdt {
  border: 1px solid rgba(38, 161, 123, 0.4);
  color: #26A17B;
}

.chain-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.usdt-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(38, 161, 123, 0.15);
  border: 1px solid rgba(38, 161, 123, 0.3);
  border-radius: 8px;
  color: #26A17B;
  font-weight: 600;
  font-size: 14px;
}

.chain-note {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 16px;
  text-align: center;
}

.currency-item.featured {
  border: 2px solid #26A17B;
  background: rgba(38, 161, 123, 0.1);
}

.currency-item {
  flex-direction: column;
  gap: 6px;
}

.currency-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}

.currency-icon.bsc,
.currency-icon.eth {
  background: transparent;
  width: auto;
  height: auto;
}

.hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.mascot-image {
  max-height: 100%;
  object-fit: contain;
  object-position: bottom right;
}

.hero-slider {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 32px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  background: var(--text-primary);
  width: 48px;
}

/* Category Cards */
.category-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 16px 20px;
}

.category-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  min-height: 120px;
}

.category-card:hover {
  transform: translateY(-4px);
}

.casino-card {
  background: linear-gradient(135deg, #2d1a1f 0%, #1a0a0e 100%);
  border: 1px solid rgba(231, 76, 60, 0.2);
}

.sport-card {
  background: linear-gradient(135deg, #1a1f2d 0%, #0a0e1a 100%);
  border: 1px solid rgba(52, 152, 219, 0.2);
}

.card-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-content p {
  font-size: 13px;
  color: var(--text-secondary);
  max-width: 200px;
}

.card-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

/* Crypto Banner */
.crypto-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 20px 20px;
  padding: 16px 24px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.2s;
}

.crypto-banner:hover {
  background: var(--bg-card-hover);
}

.crypto-icon {
  flex-shrink: 0;
}

.crypto-content {
  flex: 1;
}

.crypto-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.crypto-content p {
  font-size: 13px;
  color: var(--text-secondary);
}

.crypto-arrow {
  color: var(--text-secondary);
}

/* Games Section */
.games-section {
  padding: 0 20px 24px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 18px;
  font-weight: 700;
}

.section-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.go-to-link {
  font-size: 14px;
  color: var(--accent-blue);
  font-weight: 500;
  transition: color 0.2s;
}

.go-to-link:hover {
  color: #5dade2;
}

.nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--bg-card);
  border-radius: 8px;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.nav-btn:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
}

.games-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.games-slider::-webkit-scrollbar {
  display: none;
}

.game-card {
  position: relative;
  flex-shrink: 0;
  width: 160px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.game-card:hover {
  transform: translateY(-8px);
}

.game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.game-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.game-badge.top {
  background: var(--accent-red);
}

.game-badge.new {
  background: var(--accent-green);
}

.game-jackpot {
  position: absolute;
  bottom: 8px;
  left: 8px;
  padding: 6px 12px;
  background: rgba(231, 76, 60, 0.9);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.slot-card img {
  height: 220px;
}

/* Wins Slider */
.wins-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.wins-slider::-webkit-scrollbar {
  display: none;
}

.win-card {
  flex-shrink: 0;
  width: 180px;
  padding: 16px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.win-game {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.win-user {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.win-amount {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-green);
}

/* Buy Crypto */
.buy-crypto {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 20px 24px;
  padding: 20px 24px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: 16px;
}

.buy-crypto-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 16px;
}

.payment-methods img {
  height: 24px;
  opacity: 0.9;
}

.buy-crypto-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #26a17b, #1a7a5c);
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  transition: all 0.3s;
}

.buy-crypto-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(38, 161, 123, 0.4);
}

.buy-crypto-btn svg {
  flex-shrink: 0;
}

/* Sports Slider */
.sports-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.sports-slider::-webkit-scrollbar {
  display: none;
}

.sport-card {
  position: relative;
  flex-shrink: 0;
  width: 140px;
  height: 100px;
  padding: 16px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
}

.sport-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.sport-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.sport-badge.hot {
  background: var(--accent-red);
}

.sport-icon {
  width: 32px;
  height: 32px;
  opacity: 0.9;
}

.sport-icon-emoji {
  font-size: 32px;
  line-height: 1;
}

.sport-icon-svg {
  width: 36px;
  height: 36px;
  color: var(--text-primary);
  opacity: 0.9;
}

.sport-badge.esports {
  background: var(--accent-green);
}

.sport-name {
  font-size: 13px;
  font-weight: 600;
}

/* Currencies Section */
.currencies-section {
  padding: 0 20px 24px;
}

.currencies-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
}

.stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-blue);
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
}

.stat-divider {
  width: 1px;
  height: 24px;
  background: var(--border-color);
}

.currencies-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  margin-bottom: 12px;
}

.currencies-slider::-webkit-scrollbar {
  display: none;
}

.currency-item {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.currency-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
}

.currency-icon.btc {
  background: #f7931a;
  color: #fff;
}

.currency-icon.eth {
  background: #627eea;
  color: #fff;
}

.currency-icon.bnb {
  background: #f3ba2f;
  color: #1e2026;
}

.currency-icon.trx {
  background: #ef0027;
  color: #fff;
}

.currency-icon.ltc {
  background: #345d9d;
  color: #fff;
}

.show-all-link {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.show-all-link:hover {
  color: var(--text-primary);
}

/* Info Section */
.info-section {
  padding: 40px 20px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
}

.info-section h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.info-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 24px 0 12px;
}

.info-section p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 900px;
}

.show-more-btn {
  margin-top: 24px;
  padding: 12px 24px;
  background: var(--bg-primary);
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  transition: all 0.2s;
}

.show-more-btn:hover {
  background: var(--bg-secondary);
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 48px 20px 24px;
}

.footer-content {
  display: flex;
  gap: 48px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  flex: 1;
}

.footer-column {
  min-width: 120px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-column a {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border-radius: 8px;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  right: 16px;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 80;
}

.fab {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.fab.trophy {
  background: linear-gradient(135deg, #ffc107, #ff9800);
}

.fab.gift {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.fab:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-image {
    width: 45%;
    opacity: 0.8;
  }

  .hero-bonus {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .sidebar {
    display: none;
  }

  .main-content {
    margin-left: 0;
  }

  .header-left .bonuses-btn,
  .header-right .icon-btn:not(.chat-btn) {
    display: none;
  }

  .hero {
    padding: 24px;
    min-height: 320px;
  }

  .hero-title {
    font-size: 20px;
  }

  .hero-bonus {
    font-size: 36px;
  }

  .hero-image {
    width: 50%;
    opacity: 0.6;
  }

  .category-cards {
    grid-template-columns: 1fr;
  }

  .game-card {
    width: 140px;
  }

  .game-card img {
    height: 180px;
  }

  .floating-actions {
    display: none;
  }

  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 0 12px;
  }

  .logo-text {
    display: none;
  }

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

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

  .hero {
    padding: 20px;
  }

  .hero-title {
    font-size: 16px;
  }

  .hero-bonus {
    font-size: 28px;
  }

  .hero-spins {
    font-size: 14px;
  }

  .cta-btn {
    padding: 12px 20px;
    font-size: 13px;
  }

  .social-btn {
    width: 38px;
    height: 38px;
  }

  .hero-image {
    display: none;
  }

  .category-card {
    padding: 16px;
  }

  .card-content h3 {
    font-size: 16px;
  }

  .card-image {
    width: 70px;
    height: 70px;
  }

  .buy-crypto {
    flex-direction: column;
    align-items: flex-start;
  }

  .buy-crypto-btn {
    width: 100%;
    text-align: center;
  }
}

/* Animations */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.games-section,
.category-cards,
.crypto-banner,
.buy-crypto,
.currencies-section {
  animation: slideIn 0.5s ease-out;
}

/* Smooth scrolling for touch devices */
@media (hover: none) {
  .games-slider,
  .wins-slider,
  .sports-slider,
  .currencies-slider {
    -webkit-overflow-scrolling: touch;
  }
}
