/* Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background: #0a0f1a;
  color: #fff;
  line-height: 1.6;
  padding-bottom: 80px;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Fixed Bottom CTA */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 15, 26, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  z-index: 1000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fixed-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.fixed-btn {
  flex: 1;
  max-width: 200px;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  transition: all 0.3s ease;
}

.fixed-btn.primary {
  background: linear-gradient(135deg, #ff6e00 0%, #ff6e00 100%);
  color: #000;
  animation: pulse-orange 2s infinite;
}

.fixed-btn.ghost {
  background: #fff;
  color: #000;
}

@keyframes pulse-orange {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 110, 0, 0.4); }
  50% { box-shadow: 0 0 20px 5px rgba(255, 110, 0, 0.3); }
}

/* Header */
.header {
  background: #0a0f1a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  height: 36px;
}

.nav {
  display: flex;
  gap: 8px;
}

.nav a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.actions {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, #ff6e00 0%, #ff6e00 100%);
  color: #000;
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 110, 0, 0.4);
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: transparent;
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0a0f1a;
  padding: 20px;
  z-index: 99;
  flex-direction: column;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu nav a {
  color: #fff;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 16px;
  transition: background 0.3s ease;
}

.mobile-menu nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  padding: 20px 0;
}

.mobile-actions .btn {
  flex: 1;
  text-align: center;
}

/* Hero */
.hero img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero img {
    height: 180px !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
}

@media (max-width: 480px) {
  .hero img {
    height: 140px !important;
  }
}

/* Filters */
.filters {
  background: #0d1320;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.filter-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 5px;
  -webkit-overflow-scrolling: touch;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 25px;
  color: #94a3b8;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.filter-tab:hover,
.filter-tab.active {
  background: linear-gradient(135deg, #ff6e00 0%, #ff6e00 100%);
  color: #000;
}

.filter-icon {
  font-size: 14px;
}

/* Games Section */
.games {
  padding: 40px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.section-title {
  font-size: 22px;
  font-weight: 700;
}

.view-all {
  color: #ff6e00;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.view-all:hover {
  color: #ff6e00;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 15px;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #111827;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card:hover img {
  transform: scale(1.1);
}

.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.card-badge.hot {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
}

.card-badge.new {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #fff;
}

.hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover .hover {
  opacity: 1;
}

.play-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6e00 0%, #ff6e00 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #000;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.card:hover .play-btn {
  transform: scale(1);
}

.card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}

.card-name {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

/* Content Section */
.content {
  padding: 50px 0;
  background: #0d1320;
}

.article-content {
  max-width: 900px;
  margin: 0 auto;
}

.article-content h1 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.article-content h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  margin: 40px 0 15px;
  color: #ff6e00;
}

.article-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 30px 0 12px;
  color: #e2e8f0;
}

.article-content p {
  color: #94a3b8;
  margin-bottom: 18px;
  font-size: 15px;
}

.article-content strong {
  color: #fff;
}

.article-img {
  width: 100%;
  border-radius: 16px;
  margin: 30px 0;
}

/* Reviews */
.reviews-section {
  margin-top: 50px;
}

.reviews-section h2 {
  margin-bottom: 25px;
}

.review-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: rgba(255, 110, 0, 0.3);
  background: rgba(255, 110, 0, 0.05);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff6e00 0%, #ff6e00 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
  font-size: 16px;
}

.review-author span:last-child {
  font-weight: 600;
  color: #fff;
}

.review-date {
  color: #64748b;
  font-size: 13px;
}

.review-text {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.review-rating {
  color: #64748b;
  font-size: 13px;
}

.review-rating .stars {
  color: #f59e0b;
  margin-right: 8px;
  letter-spacing: 2px;
}

/* Footer */
.footer {
  background: #050810;
  padding: 50px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.scroll-top {
  position: absolute;
  right: 20px;
  top: -25px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6e00 0%, #ff6e00 100%);
  border: none;
  border-radius: 50%;
  color: #000;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.scroll-top:hover {
  transform: translateY(-3px);
}

.footer .container {
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 15px;
}

.footer-logo {
  height: 36px;
}

.footer-desc {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: #64748b;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col ul a:hover {
  color: #ff6e00;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.payment-badge {
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  color: #94a3b8;
}

.support-info {
  color: #94a3b8;
  font-size: 14px;
}

.support-info a {
  color: #ff6e00;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}

.support-24 {
  display: inline-block;
  background: rgba(255, 110, 0, 0.15);
  color: #ff6e00;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 15px;
}

.age-badge {
  background: #ef4444;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

.responsible {
  color: #64748b;
  font-size: 13px;
}

.footer-copy {
  color: #475569;
  font-size: 13px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .nav,
  .actions {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero img {
    height: 300px;
  }

  .hero-overlay h1 {
    font-size: 24px;
  }

  .grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-logo-link {
    display: block;
  }

  .payment-methods {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .scroll-top {
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 480px) {
  .hero img {
    height: 250px;
  }

  .section-title {
    font-size: 18px;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card {
    border-radius: 10px;
  }

  .fixed-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}
