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

hr {
  width: 100%;
  color: #1c1f25;
  height: 1px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #FAFDD6 100%);
  color: #e2e8f0;
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.x11223344 { position: fixed; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.7); display:none; justify-content:center; align-items:center; z-index:9999;}
.x44332211 { background:#231934; padding:30px; border-radius:10px; width:380px; position: relative;}
.x99887766 { position:absolute; top:10px; right:15px; cursor:pointer; font-size:20px;}
.x11112222, .x33334444, .x88889999, .x12121212, .x13131313, .x14141414 { width:100%; padding:8px; margin:5px 0; box-sizing:border-box; border-radius:5px; border:1px solid #ccc;}
.x77778888, .x15151515, .x12345678, .x87654321 { width:100%; padding:10px; margin:10px 0; cursor:pointer; border:none; border-radius:5px; background:#007bff; color:white; font-weight:bold;}
.x00001111, .x22222222 { text-align:center; margin-bottom:15px;}
.x22221111, .x16161616 { font-size:14px; text-align:center;}
.x44445555, .x17171717 { color:blue; cursor:pointer;}
.x10101010 { color:red; font-size:12px; margin-bottom:5px;}

.status-bar {
  background: linear-gradient(90deg, #FAFDD6 0%, #647FBC 100%);
  padding: 8px 0;
  font-size: 14px;
  color: white;
}

.status-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.status-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 
.header {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(51, 65, 85, 0.3);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}*/

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  color: #4ade80;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: #94a3b8;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #e2e8f0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.theme-toggle,
.search-btn {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.2s;
}

.theme-toggle:hover,
.search-btn:hover {
  background: rgba(51, 65, 85, 0.5);
  color: #e2e8f0;
}

.user-info {
  color: #94a3b8;
  font-size: 14px;
}

.main {
  padding: 40px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  margin-bottom: 80px;
}

.hero-subtitle {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 16px;
}

.hero-title {
font-weight: 800;
  font-size: 48px;
  line-height: 150%;
  line-height: 1.1;
  margin-bottom: 24px;
  
  outline-color: currentcolor;
outline-style: none;
outline-width: medium;
box-sizing: border-box;
margin-bottom: 15px;
}

.highlight {
  color: #4ade80;
}

.hero-description {
  color: #94a3b8;
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
}

.btn-primary {
  background: #4ade80;
  color: #0f172a;
}

.btn-primary:hover {
  background: #22c55e;
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(51, 65, 85, 0.5);
  color: #e2e8f0;
  border: 1px solid rgba(51, 65, 85, 0.5);
}

.btn-secondary:hover {
  background: rgba(51, 65, 85, 0.8);
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #4ade80;
}

.stat-label {
  font-size: 14px;
  color: #64748b;
}

.latest-products {
  background: rgba(15, 23, 42, 0.5);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(51, 65, 85, 0.3);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #e2e8f0;
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(30, 41, 59, 0.5);
  border-radius: 8px;
  border: 1px solid rgba(51, 65, 85, 0.3);
}

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

.product-info {
  flex: 1;
}

.product-name {
  font-weight: 600;
  color: #e2e8f0;
  display: block;
  margin-bottom: 4px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating {
  background: #4ade80;
  color: #0f172a;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.product-type {
  color: #64748b;
  font-size: 12px;
}

.product-price {
  text-align: right;
}

.price {
  font-weight: 700;
  color: #e2e8f0;
  display: block;
}

.period {
  color: #64748b;
  font-size: 12px;
}

.popular-games {
  margin-bottom: 60px;
}

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

.view-all {
  color: #4ade80;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.section-subtitle {
  color: #64748b;
  margin-bottom: 32px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.game-card {
  background: rgba(15, 23, 42, 0.8);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(51, 65, 85, 0.3);
  transition: all 0.3s;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 222, 128, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.game-image {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px 16px 16px;
}

.game-title {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.game-stats {
  font-size: 12px;
  color: #94a3b8;
}

.game-footer {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.game-price .price {
  font-weight: 700;
  color: #e2e8f0;
  font-size: 16px;
}

.game-price .period {
  color: #64748b;
  font-size: 12px;
}

.availability {
  color: #4ade80;
  font-size: 12px;
  font-weight: 500;
}


.info-banner {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 60px;
  color: #93c5fd;
}


.stats-section {
  text-align: center;
  margin-bottom: 80px;
}

.stats-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.4;
}

.refresh-link {
  color: #4ade80;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.footer {
  background: rgba(15, 23, 42, 0.95);
  border-top: 1px solid rgba(51, 65, 85, 0.3);
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: #e2e8f0;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-section ul li a:hover {
  color: #e2e8f0;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  color: #94a3b8;
  transition: color 0.2s;
}

.social-link:hover {
  color: #4ade80;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(51, 65, 85, 0.3);
  font-size: 14px;
  color: #64748b;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.heart {
  color: #ef4444;
}

.payment-methods {
  display: flex;
  gap: 8px;
}

.chat-button {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #4ade80;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(74, 222, 128, 0.3);
  transition: all 0.3s;
  z-index: 1000;
}

.chat-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(74, 222, 128, 0.4);
}


@media (max-width: 768px) {
  .container {
    max-width: 768px;
    padding: 0 16px;
  }
  
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .header-left {
    gap: 20px;
  }
  
  .nav {
    gap: 16px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .stats-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
}


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

.x1a2b3_root {
  font-family: "Inter", sans-serif;
  background: #0d0d0d;
  min-height: 100vh;
  color: #fff;

  box-sizing: border-box;
}
.x1a2b3_container {max-width: 1100px;margin: 0 auto;display:grid;gap:25px;animation:x1a2b3_fadeUp .6s ease both;}
.x1a2b3_title {font-size:26px;font-weight:800;color:#fff;}
.x1a2b3_sub {font-size:14px;color:#aaa;margin-top:6px;}

.x1a2b3_card {
  background:#111;
  border:1px solid #222;
  border-radius:12px;
  padding:22px;
  box-shadow:0 4px 12px rgba(0,0,0,.6);
}
.x1a2b3_card h2 {font-size:18px;font-weight:700;margin-bottom:15px;}

.x1a2b3_account {display:flex;justify-content:space-between;flex-wrap:wrap;gap:20px;}
.x1a2b3_account_item {margin-bottom:12px;}
.x1a2b3_label {font-size:13px;color:#aaa;}
.x1a2b3_value {font-size:15px;font-weight:700;color:#fff;}

.x1a2b3_btn {
  border:none;
  border-radius:8px;
  padding:9px 14px;
  font-weight:600;
  cursor:pointer;
  transition:.2s;
}
.x1a2b3_btn_blue {background:#006eff;color:#fff;}
.x1a2b3_btn_red {background:#e60000;color:#fff;}
.x1a2b3_btn:hover {opacity:.9;transform:translateY(-2px);}

.x1a2b3_history {text-align:center;min-height:180px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px;}
.x1a2b3_icon {font-size:42px;color:#555;}
.x1a2b3_empty {font-weight:700;}
.x1a2b3_note {font-size:13px;color:#999;}

@media(max-width:600px){
  .x1a2b3_account {flex-direction:column;align-items:flex-start;}
}