@font-face {
  font-family: "Stem";
  src: url("/fonts/stem/Stem-SemiLight.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Stem";
  src: url("/fonts/stem/Stem-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Stem";
  src: url("/fonts/stem/Stem-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #e53e3e;
  --primary-dark: #c53030;
  --primary-light: #fc8181;
  --dark: #0d1117;
  --darker: #010409;
  --card-bg: #161b22;
  --border: #21262d;
  --light: #f0f6fc;
  --gray: #7d8590;
  --gray-dark: #30363d;
  --success: #238636;
  --warning: #d29922;
  --danger: #da3633;
  --accent: #ff6b6b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Stem";
}

body {
  min-height: 100dvh;
  background-color: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

body.menu-open {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.glow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.08;
}

.glow-1 {
  top: -200px;
  left: -200px;
  width: 800px;
  height: 800px;
  background: var(--primary);
  animation: float 20s ease-in-out infinite;
}

.glow-2 {
  bottom: -300px;
  right: -200px;
  width: 1000px;
  height: 1000px;
  background: var(--accent);
  animation: float 25s ease-in-out infinite reverse;
}

.glow-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: var(--primary-dark);
  animation: pulse 15s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(150px, 100px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.05;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.12;
  }

  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.05;
  }
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  border: none;
  font-size: 14px;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  border: 1px solid var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--light);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background-color: var(--card-bg);
  border-color: var(--gray);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

header {
  padding: 20px 0;
  position: sticky;
  top: 0;
  background-color: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-btn {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.logo-image {
  max-width: 45px;
  margin-right: 10px;
}

.logo i {
  color: var(--primary);
  margin-right: 10px;
  font-size: 28px;
}

header nav {
  padding-left: calc(196px - 176px);
}

nav ul {
  display: flex;
  gap: 8px;
}

nav ul li {
  margin: 0;
}

nav ul li a {
  position: relative;
  font-weight: 500;
  transition: all 0.3s ease;
  color: var(--gray);
  padding: 12px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  background: transparent;
  border: 1px solid transparent;
}

nav ul li a i {
  font-size: 16px;
  transition: all 0.3s ease;
}

nav ul li a:hover {
  color: var(--light);
  background: rgba(229, 62, 62, 0.1);
  border-color: rgba(229, 62, 62, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(229, 62, 62, 0.15);
}

nav ul li a:hover i {
  color: var(--primary);
  transform: scale(1.1);
}

nav ul li a.active {
  color: var(--light);
  background: linear-gradient(135deg, rgba(229, 62, 62, 0.15), rgba(229, 62, 62, 0.05));
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(229, 62, 62, 0.2);
}

nav ul li a.active i {
  color: var(--primary);
}

.hero {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1;
}

.tag {
  display: inline-block;
  background-color: rgba(229, 62, 62, 0.1);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(229, 62, 62, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 800;
}

.accent {
  color: var(--primary);
}

.hero p {
  margin-bottom: 32px;
  font-size: 18px;
  color: var(--gray);
  line-height: 1.7;
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.compatibility {
  margin-top: 32px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--success);
  background-color: rgba(35, 134, 54, 0.1);
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(35, 134, 54, 0.2);
}

.compatibility i {
  margin-right: 10px;
  font-size: 16px;
}

.hero-video {
  flex: 1;
  position: relative;
}

.hero-video video {
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  width: 100%;
}

.features {
  padding: 100px 0;
  background-color: var(--darker);
}

.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 16px;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  color: var(--gray);
  font-size: 18px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(229, 62, 62, 0.1);
  border-color: rgba(229, 62, 62, 0.3);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(229, 62, 62, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(229, 62, 62, 0.2);
}

.feature-icon i {
  font-size: 24px;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 600;
}

.feature-card p {
  color: var(--gray);
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.6;
}

.catalog {
  padding: 100px 0;
}

.catalog-header {
  margin-bottom: 60px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.game-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
  height: 100%;
  display: flex;
  flex-direction: column;
  opacity: 1;
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--primary);
}

.game-image {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.game-card .game-image {
  height: 200px;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--success);
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.game-info h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
}

.game-info p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 16px;
  flex-grow: 1;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 4.5em;
}

.game-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--gray);
}

.game-meta span {
  display: flex;
  align-items: center;
}

.game-meta i {
  margin-right: 6px;
  color: var(--primary);
}

.more-games {
  background-color: var(--card-bg);
  border-radius: 12px;
  border: 2px dashed var(--border);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.more-games:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(229, 62, 62, 0.1);
  border-color: var(--primary);
}

.more-games-content {
  padding: 40px;
  text-align: center;
}

.more-games-content i {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 20px;
}

.more-games-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 600;
}

.more-games-content p {
  color: var(--gray);
  margin-bottom: 24px;
}

.how-to-install {
  padding: 100px 0;
  background-color: var(--darker);
}

.how-to-install .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.install-content {
  flex: 1;
}

.install-content .section-title {
  text-align: left;
}

.install-image {
  flex: 1;
}

.install-image img {
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
}

.steps {
  margin-top: 40px;
}

.step {
  display: flex;
  margin-bottom: 32px;
}

.step-number {
  width: 48px;
  height: 48px;
  background-color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 20px;
  flex-shrink: 0;
  font-size: 18px;
}

.step-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.step-content p {
  color: var(--gray);
  line-height: 1.6;
}

.testimonials {
  padding: 100px 0;
}

.testimonials-slider {
  margin-top: 60px;
  position: relative;
  display: flex;
  gap: 24px;
}

.testimonial {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
  height: 100%;
  flex: 1;
}

.testimonial:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(229, 62, 62, 0.1);
  border-color: rgba(229, 62, 62, 0.3);
}

.testimonial-content {
  margin-bottom: 24px;
}

.testimonial-content p {
  font-style: italic;
  position: relative;
  padding: 0 20px;
  line-height: 1.6;
  color: var(--gray);
}

.testimonial-content p::before,
.testimonial-content p::after {
  content: '"';
  font-size: 24px;
  color: var(--primary);
  position: absolute;
  font-weight: 700;
}

.testimonial-content p::before {
  left: 0;
  top: 0;
}

.testimonial-content p::after {
  right: 0;
  bottom: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(229, 62, 62, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  border: 1px solid rgba(229, 62, 62, 0.2);
}

.author-avatar i {
  font-size: 20px;
  color: var(--primary);
}

.author-info {
  flex-grow: 1;
}

.author-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 600;
}

.author-info p {
  font-size: 14px;
  color: var(--gray);
}

.rating {
  color: var(--warning);
  font-size: 14px;
}

.faq {
  padding: 100px 0;
  background-color: var(--darker);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--card-bg);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.faq-question {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(229, 62, 62, 0.05);
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px;
  overflow: hidden;
  transition: max-height 0.3s ease;
  max-height: 0;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-answer p {
  color: var(--gray);
  padding-bottom: 24px;
  line-height: 1.6;
}

.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(229, 62, 62, 0.1), rgba(255, 107, 107, 0.05));
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
  color: var(--gray);
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.6;
}

footer {
  margin-top: auto;
  padding: 80px 0 40px;
  background-color: var(--darker);
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex;
  align-items: start;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
}

.footer-logo i {
  color: var(--primary);
  margin-right: 10px;
  font-size: 28px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-social i {
  font-size: 18px;
}

.footer-middle {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-nav h3 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
  font-weight: 600;
}

.footer-nav h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--primary);
}

.footer-nav ul li {
  margin-bottom: 12px;
}

.footer-nav ul li a {
  color: var(--gray);
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-nav ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  color: var(--gray);
  font-size: 14px;
}

@keyframes pulse-btn {
  0% {
    box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(229, 62, 62, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(229, 62, 62, 0);
  }
}

.page-content {
  padding: 80px 0;
}

.terms-content {
  padding: 80px 0;
}

.terms-content a {
  color: var(--primary);
}

.terms-content a:hover {
  text-decoration: underline;
}

.page-title {
  font-size: 36px;
  margin-bottom: 16px;
  text-align: center;
  font-weight: 700;
}

.page-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  color: var(--gray);
  font-size: 18px;
}

.content-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 40px;
  border: 1px solid var(--border);
  margin-bottom: 40px;
}

.content-card h1 {
  font-size: 32px;
  margin-bottom: 32px;
  color: var(--primary);
  font-weight: 700;
}

.terms-section {
  margin-bottom: 40px;
}

.terms-section h2 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--light);
  font-weight: 600;
}

.terms-section p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.6;
}

.terms-section ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 16px;
  color: var(--gray);
}

.terms-section ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.terms-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--gray);
  font-style: italic;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--border);
}

.info-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(229, 62, 62, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(229, 62, 62, 0.2);
}

.info-icon i {
  font-size: 24px;
  color: var(--primary);
}

.info-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 600;
}

.info-card p {
  color: var(--gray);
  margin-bottom: 12px;
  line-height: 1.6;
}

.info-card a {
  color: var(--primary);
  transition: color 0.3s ease;
}

.info-card a:hover {
  color: var(--primary-light);
}

.form-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--border);
}

.form-card h2 {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 600;
}

.form-card p {
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background-color: var(--dark);
  color: var(--light);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.subscription-input input {
  transition: all 0.3s ease;
}

.subscription-input input:focus,
.subscription-input textarea:focus,
.subscription-input select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.required {
  color: var(--primary);
}

.error-message {
  color: var(--danger);
  font-size: 12px;
  margin-top: 5px;
}

.btn-submit {
  align-self: flex-start;
}

.tutorials-content {
  padding: 80px 0;
}

.tutorial-section {
  margin-bottom: 60px;
}

.tutorial-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--light);
  font-weight: 600;
}

.tutorial-section p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

.tutorial-image {
  margin: 30px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.tutorial-image img {
  width: 100%;
}

.tutorial-steps {
  margin: 30px 0;
}

.tutorial-step {
  display: flex;
  margin-bottom: 32px;
}

.tutorial-step a {
  color: var(--primary);
}

.tutorial-step a:hover {
  text-decoration: underline;
}

.tutorial-step-number {
  width: 48px;
  height: 48px;
  background-color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 20px;
  flex-shrink: 0;
  font-size: 18px;
}

.tutorial-step-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.tutorial-step-content p {
  color: var(--gray);
  line-height: 1.6;
}

.tutorial-note {
  background-color: rgba(229, 62, 62, 0.1);
  border-left: 4px solid var(--primary);
  padding: 24px;
  margin: 32px 0;
  border-radius: 0 12px 12px 0;
  border: 1px solid rgba(229, 62, 62, 0.2);
}

.tutorial-note h4 {
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.tutorial-note h4 i {
  margin-right: 10px;
  color: var(--primary);
}

.tutorial-note p {
  color: var(--gray);
  margin-bottom: 0;
  line-height: 1.6;
}

.tutorial-toc {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--border);
  margin-bottom: 40px;
}

.tutorial-toc h3 {
  font-size: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.tutorial-toc h3 i {
  margin-right: 10px;
  color: var(--primary);
}

.tutorial-toc ul {
  list-style: none;
}

.tutorial-toc ul li {
  margin-bottom: 12px;
}

.tutorial-toc ul li a {
  color: var(--gray);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.tutorial-toc ul li a:hover {
  color: var(--primary);
}

.tutorial-toc ul li a i {
  margin-right: 10px;
  font-size: 12px;
}

.catalog-content {
  padding: 80px 0;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
}

.search-box {
  position: relative;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}

.search-box input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background-color: var(--card-bg);
  color: var(--light);
  transition: all 0.3s ease;
}

.search-box input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.search-btn {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
}

.filter-options {
  display: flex;
  gap: 20px;
}

.filter-group {
  display: flex;
  align-items: center;
}

.filter-group label {
  margin-right: 10px;
  font-weight: 500;
}

.custom-select {
  position: relative;
  min-width: 200px;
}

.custom-select select {
  display: none;
}

.select-selected {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.select-selected:hover {
  background-color: rgba(229, 62, 62, 0.1);
  border-color: var(--primary);
}

.select-selected:after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary);
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.select-selected.select-arrow-active:after {
  transform: rotate(180deg);
}

.select-items {
  position: absolute;
  background-color: var(--card-bg);
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border-radius: 0 0 8px 8px;
  border: 1px solid var(--border);
  border-top: none;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.select-items div {
  padding: 12px 16px;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

.select-items div:hover {
  background-color: rgba(229, 62, 62, 0.1);
}

.select-hide {
  display: none;
}

.same-as-selected {
  background-color: rgba(229, 62, 62, 0.2);
}

.no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  text-align: center;
}

.no-results i {
  font-size: 48px;
  color: var(--gray);
  margin-bottom: 20px;
}

.no-results h3 {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 600;
}

.no-results p {
  color: var(--gray);
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pagination-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--light);
  margin: 0 4px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-btn:hover,
.pagination-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
}

.pagination-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
  color: var(--gray);
}

.admin-login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 0;
}

.login-container {
  width: 100%;
  max-width: 400px;
}

.login-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}

.login-logo i {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 16px;
}

.login-logo h1 {
  font-size: 32px;
  margin-bottom: 0;
  font-weight: 700;
}

.login-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--border);
}

.login-card h2 {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 600;
}

.login-card p {
  color: var(--gray);
  margin-bottom: 24px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-with-icon {
  position: relative;
}

.input-with-icon i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
}

.input-with-icon input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background-color: var(--dark);
  color: var(--light);
  transition: all 0.3s ease;
}

.input-with-icon input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.toggle-password {
  position: absolute;
  right: 45px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  z-index: 1;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-checkbox {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--dark);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.custom-checkbox:hover input ~ .checkmark {
  background-color: rgba(229, 62, 62, 0.1);
  border-color: var(--primary);
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: var(--primary);
  border-color: var(--primary);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.forgot-password {
  color: var(--primary);
}

.btn-login {
  width: 100%;
  margin-top: 12px;
}

.login-footer {
  margin-top: 24px;
  text-align: center;
}

.back-to-site {
  color: var(--gray);
  font-size: 14px;
  transition: color 0.3s ease;
}

.back-to-site:hover {
  color: var(--primary);
}

.back-to-site i {
  margin-right: 6px;
}

button.back-to-site {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background-color: var(--card-bg);
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(-20px);
  transition: all 0.3s ease;
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-header {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 20px;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  color: var(--primary);
}

.modal-body {
  padding: 24px;
}

.modal-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-success {
  text-align: center;
  padding: 20px 0;
}

.modal-success i {
  font-size: 48px;
  color: var(--success);
  margin-bottom: 20px;
}

.modal-success p {
  color: var(--gray);
  line-height: 1.6;
}

.modal-text {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.modal-confirm {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-confirm:hover {
  background-color: var(--primary-dark);
}

.modal-cancel {
  background-color: transparent;
  color: var(--gray);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-cancel:hover {
  background-color: var(--card-bg);
}

.modal-save {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-save:hover {
  background-color: var(--primary-dark);
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.subscription-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.subscription-input {
  display: flex;
}

.subscription-input input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 8px 0 0 8px;
  border: 1px solid var(--border);
  border-right: none;
  background-color: var(--dark);
  color: var(--light);
}

.subscription-input input:focus {
  outline: none;
  border-color: var(--primary);
}

.subscription-input button {
  padding: 12px 20px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscription-input button:hover {
  background-color: var(--primary-dark);
}

.desktop-only {
  display: inline-block;
}

@media (max-width: 992px) {
  h1 {
    font-size: 36px;
  }

  .testimonials-slider {
    flex-direction: column;
  }

  .hero .container,
  .how-to-install .container {
    flex-direction: column;
  }

  .hero-video {
    margin-top: 40px;
  }

  .install-image {
    order: -1;
    margin-bottom: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }

  nav {
    display: none;
  }

  .desktop-only {
    display: none;
  }

  .section-title {
    font-size: 28px;
  }

  .catalog-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .search-box {
    width: 100%;
  }

  .filter-options {
    flex-direction: column;
    width: 100%;
  }

  .filter-group {
    width: 100%;
  }

  .custom-select {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .compatibility {
    margin-top: 16px;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
  }

  .pagination {
    flex-wrap: wrap;
    gap: 8px;
  }

  .modal {
    max-width: 90%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--card-bg);
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid var(--border);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-content {
  display: flex;
  align-items: center;
}

.toast-content i {
  color: var(--success);
  margin-right: 12px;
  font-size: 20px;
}

/* New Hero Section */
.hero-new {
  padding: 60px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}

.hero-main {
  padding-top: 40px;

  background-image: url("/img/titleBackground.badb5d2b.svg");
}

.hero-gaming {
  background-image: url("/img/titleBackground.badb5d2b.svg") !important;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(35, 134, 54, 0.1);
  color: var(--success);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 32px;
  border: 1px solid rgba(35, 134, 54, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-badge i {
  margin-right: 8px;
  font-size: 14px;
}

.hero-main h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
}

.hero-main h1 span {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, rgb(238, 83, 117), rgb(232, 48, 88) 31%, rgb(201, 29, 66) 65%, rgb(143, 20, 47))
    text;
}

.hero-main p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.6;
}

.hero-subtitle {
  font-size: 16px !important;
  margin-bottom: 40px !important;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.popular-games {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border);
}

.popular-games h3 {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--gray);
}

.game-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.game-item {
  display: flex;
  align-items: center;
  padding: 8px 0;
  color: var(--light);
  font-size: 14px;
}

.game-item i {
  margin-right: 12px;
  color: var(--gray);
  width: 16px;
}

.more-games-link {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.more-games-link a {
  color: var(--gray);
  font-size: 14px;
  transition: color 0.3s ease;
}

.more-games-link a:hover {
  color: var(--primary);
}

.auth-section {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border);
}

.auth-btn {
  width: 100%;
  background-color: transparent;
  color: var(--light);
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.auth-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.auth-btn i {
  margin-right: 8px;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background-color: var(--darker);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-section .stat-item {
  flex-direction: column;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.stat-label {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 14px;
}

.stat-label i {
  margin-right: 8px;
  color: var(--primary);
}

.stats-description {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.stats-description h3 {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 600;
}

.stats-description p {
  color: var(--gray);
  font-size: 16px;
}

/* Popular Products */
.popular-products {
  padding: 100px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.section-title-group {
  display: flex;
  align-items: center;
}

.section-title-group i {
  color: var(--primary);
  font-size: 24px;
  margin-right: 12px;
}

.section-title-group h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

.view-more-btn {
  color: var(--gray);
  font-size: 14px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.view-more-btn:hover {
  color: var(--primary);
}

.view-more-btn i {
  margin-left: 8px;
  font-size: 12px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.product-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--primary);
}

.product-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-status {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--success);
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.product-status i {
  margin-right: 4px;
  font-size: 10px;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
}

.product-game {
  display: flex;
  align-items: center;
  color: var(--gray);
  font-size: 13px;
  margin-bottom: 16px;
}

.product-game i {
  margin-right: 8px;
  color: var(--primary);
}

.product-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  display: flex;
  flex-direction: column;
}

.product-price .price {
  font-size: 12px;
  color: var(--gray);

  display: none;
}

.product-price .amount {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}

/* Features New */
.features-new {
  padding: 100px 0;
  background-color: var(--darker);
}

.features-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.features-text h2 {
  font-size: 36px;
  margin-bottom: 16px;
  font-weight: 700;
}

.features-text p {
  color: var(--gray);
  font-size: 18px;
  margin-bottom: 40px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(229, 62, 62, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
  border: 1px solid rgba(229, 62, 62, 0.2);
}

.feature-icon i {
  color: var(--primary);
  font-size: 20px;
}

.feature-content h4 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.feature-content p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.5;
}

.features-image {
  position: relative;
}

.image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: auto;
}

/* Installation Steps */
.installation-steps {
  padding: 100px 0;
}

.installation-steps .section-header {
  text-align: center;
  margin-bottom: 80px;
}

.installation-steps .section-header h2 {
  font-size: 36px;
  margin-bottom: 16px;
  font-weight: 700;
}

.installation-steps .section-header p {
  color: var(--gray);
  font-size: 18px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.step-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(229, 62, 62, 0.1);
  border-color: rgba(229, 62, 62, 0.3);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 24px;
  background-color: var(--primary);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.step-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(229, 62, 62, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 1px solid rgba(229, 62, 62, 0.2);
}

.step-icon i {
  color: var(--primary);
  font-size: 24px;
}

.step-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
}

.step-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.5;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 20px 0;
  background-color: var(--darker);
  border-bottom: 1px solid var(--border);
}

.breadcrumbs ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs li {
  color: var(--gray);
  font-size: 14px;
}

.breadcrumbs li:not(:last-child)::after {
  content: ">";
  margin-left: 8px;
  color: var(--border);
}

.breadcrumbs a {
  color: var(--gray);
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--primary);
}

/* Catalog Hero */
.catalog-hero {
  padding: 60px 0;
  text-align: center;
}

.catalog-hero-content h1 {
  font-size: 42px;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.catalog-hero-content p {
  color: var(--gray);
  font-size: 18px;
}

/* Catalog Layout */
.catalog-main {
  padding: 60px 0 100px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

.catalog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-section {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border);
}

.sidebar-section h3 {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--gray);
}

.sidebar-games {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-game-item {
  display: flex;
  align-items: center;
  padding: 8px 0;
  color: var(--light);
  font-size: 14px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.sidebar-game-item:hover {
  color: var(--primary);
}

.sidebar-game-item i {
  margin-right: 12px;
  color: var(--gray);
  width: 16px;
}

.sidebar-more {
  color: var(--gray);
  font-size: 14px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  transition: color 0.3s ease;
}

.sidebar-more:hover {
  color: var(--primary);
}

.auth-btn-sidebar {
  width: 100%;
  background-color: transparent;
  color: var(--light);
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.auth-btn-sidebar:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.auth-btn-sidebar i {
  margin-right: 8px;
}

.catalog-content {
  display: flex;
  flex-direction: column;
}

.catalog-controls {
  margin-bottom: 40px;
}

.search-section {
  max-width: 600px;
}

.products-grid-catalog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.product-card-catalog {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card-catalog:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--primary);
}

/* Product Details */
.product-details {
  padding: 60px 0 100px;
}

.product-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

.product-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.product-header {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: start;
}

.product-image-large {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.product-image-large img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.product-status-large {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--success);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.product-status-large i {
  margin-right: 6px;
  font-size: 12px;
}

.product-info-main h1 {
  font-size: 36px;
  margin-bottom: 16px;
  font-weight: 700;
}

.product-game-info {
  display: flex;
  align-items: center;
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 24px;
}

.product-game-info i {
  margin-right: 8px;
  color: var(--primary);
}

.product-stats {
  margin-bottom: 32px;
}

.product-stats .stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.product-stats .stat-label {
  color: var(--gray);
  font-size: 14px;
}

.product-stats .stat-value {
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
}

.password-info {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 32px;
}

.password-label {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
}

.password-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

#password-value {
  font-family: monospace;
  background-color: var(--dark);
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  flex: 1;
}

.copy-btn {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.copy-btn:hover {
  background-color: var(--primary-dark);
}

.product-description,
.system-requirements,
.product-features {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}

.product-description h3,
.system-requirements h3,
.product-features h3 {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 600;
}

.product-description p {
  color: var(--gray);
  line-height: 1.6;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.requirement-item {
  display: flex;
  align-items: center;
  padding: 12px;
  background-color: var(--dark);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.requirement-item i {
  color: var(--primary);
  margin-right: 12px;
  width: 20px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.features-list .feature-item {
  display: flex;
  align-items: center;
  padding: 8px 0;
}

.features-list .feature-item i {
  color: var(--primary);
  width: 16px;
  margin-right: 2px;
}

/* Related Products */
.related-products {
  padding: 80px 0;
  background-color: var(--darker);
}

.related-products h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.related-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--primary);
}

.related-image {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-status {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--success);
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.related-status i {
  margin-right: 4px;
  font-size: 8px;
}

.related-info {
  padding: 20px;
}

.related-info h4 {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}

.related-game {
  display: flex;
  align-items: center;
  color: var(--gray);
  font-size: 12px;
  margin-bottom: 16px;
}

.related-game i {
  margin-right: 6px;
  color: var(--primary);
}

.related-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.related-price {
  display: flex;
  flex-direction: column;
}

.related-price .price {
  font-size: 11px;
  color: var(--gray);
}

.related-price .amount {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1fr 280px;
    gap: 40px;
  }

  .catalog-layout,
  .product-layout {
    grid-template-columns: 250px 1fr;
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-main h1 {
    font-size: 42px;
  }

  .features-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .catalog-layout,
  .product-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .catalog-sidebar,
  .product-sidebar {
    order: -1;
  }

  .product-header {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero-main h1 {
    font-size: 36px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .products-grid,
  .products-grid-catalog {
    grid-template-columns: 1fr;
  }

  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media (max-width: 576px) {
  .hero-main h1 {
    font-size: 28px;
  }

  .catalog-hero-content h1 {
    font-size: 32px;
  }

  .product-info-main h1 {
    font-size: 28px;
  }

  .stat-number {
    font-size: 36px;
  }

  .section-title-group h2 {
    font-size: 24px;
  }
}

/* Gaming Illustration Styles */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.gaming-illustration {
  position: relative;
  width: 100%;
  height: 500px;
}

.floating-elements {
  position: relative;
  width: 100%;
  height: 100%;
}

.code-block {
  position: absolute;
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  min-width: 200px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  animation: float-gentle 6s ease-in-out infinite;
}

.code-1 {
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.code-dots {
  display: flex;
  gap: 4px;
}

.code-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gray);
}

.code-dots span:first-child {
  background-color: #ff5f56;
}

.code-dots span:nth-child(2) {
  background-color: #ffbd2e;
}

.code-dots span:last-child {
  background-color: #27ca3f;
}

.code-title {
  font-size: 12px;
  color: var(--gray);
  font-family: monospace;
}

.code-content {
  font-family: monospace;
  font-size: 12px;
  line-height: 1.4;
}

.code-line {
  margin-bottom: 4px;
}

.code-keyword {
  color: #ff79c6;
}

.code-variable {
  color: #8be9fd;
}

.code-operator {
  color: #ff79c6;
}

.code-value {
  color: #f1fa8c;
}

.code-function {
  color: #50fa7b;
}

.code-bracket {
  color: var(--light);
}

.code-indent {
  color: transparent;
}

.stats-widget {
  position: absolute;
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  min-width: 140px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  animation: float-gentle 8s ease-in-out infinite;
}

.stats-1 {
  top: 60%;
  left: 5%;
  animation-delay: -2s;
}

.stats-2 {
  bottom: 20%;
  right: 20%;
  animation-delay: -4s;
}

.widget-header {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--gray);
}

.widget-header i {
  margin-right: 6px;
  color: var(--primary);
}

.widget-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

.widget-status {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--success);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--success);
  margin-right: 8px;
  animation: pulse-dot 2s ease-in-out infinite;
}

.game-icon {
  position: absolute;
  width: 48px;
  height: 48px;
  background-color: rgba(229, 62, 62, 0.1);
  border: 1px solid rgba(229, 62, 62, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float-gentle 10s ease-in-out infinite;
}

.game-1 {
  top: 10%;
  left: 20%;
  animation-delay: -1s;
}

.game-2 {
  top: 40%;
  right: 5%;
  animation-delay: -3s;
}

.game-3 {
  bottom: 10%;
  left: 10%;
  animation-delay: -5s;
}

.game-icon i {
  color: var(--primary);
  font-size: 20px;
}

@keyframes float-gentle {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

/* New Game Cards */
.game-card-new {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.game-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(229, 62, 62, 0.15);
  border-color: var(--primary);
}

.card-header {
  position: relative;
}

.game-card-new .game-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.game-card-new .game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card-new:hover .game-image img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-card-new:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.game-card-new:hover .overlay-content {
  transform: scale(1);
}

.overlay-content i {
  color: white;
  font-size: 20px;
  margin-left: 2px;
}

.game-status-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--success);
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.game-status-badge i {
  margin-right: 4px;
  font-size: 10px;
}

.card-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.game-title {
  margin-bottom: 12px;
}

.game-title h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--light);
}

.game-category {
  display: flex;
  align-items: center;
  color: var(--gray);
  font-size: 12px;
}

.game-category i {
  margin-right: 6px;
  color: var(--primary);
}

.game-description {
  margin-bottom: 16px;
  flex-grow: 1;
}

.game-description p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.game-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--gray);
}

.stat-item i {
  margin-right: 4px;
  color: var(--primary);
  font-size: 10px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-info {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 11px;
  color: var(--gray);
}

.price-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}

.btn-card {
  padding: 8px 16px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Product Hero */
.product-hero {
  padding: 60px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(229, 62, 62, 0.05), rgba(255, 107, 107, 0.02));
}

.product-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(35, 134, 54, 0.1);
  color: var(--success);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(35, 134, 54, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-badge i {
  margin-right: 8px;
}

.product-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
  font-weight: 700;
}

.product-hero p {
  color: var(--gray);
  font-size: 18px;
}

/* Game Details New */
.game-details-new {
  padding: 80px 0;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}

.product-showcase {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.main-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.main-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.image-status {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--success);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.image-status i {
  margin-right: 6px;
}

.product-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-box {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(229, 62, 62, 0.1);
  border-color: rgba(229, 62, 62, 0.3);
}

.feature-box i {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 12px;
}

.feature-box h4 {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}

.feature-box p {
  color: var(--gray);
  font-size: 12px;
}

.product-info-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.info-card .card-header {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  background-color: rgba(229, 62, 62, 0.05);
}

.info-card .card-header h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.card-content {
  padding: 20px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.info-row:last-child {
  border-bottom: none;
}

.info-row .label {
  color: var(--gray);
  font-size: 14px;
}

.info-row .value {
  font-weight: 600;
  font-size: 14px;
}

.status-active {
  color: var(--success) !important;
  display: flex;
  align-items: center;
}

.status-active i {
  margin-right: 6px;
  font-size: 12px;
}

.price-free {
  color: var(--primary) !important;
  font-size: 16px !important;
}

.password-section {
  text-align: center;
}

.password-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

#password-value {
  flex: 1;
  background-color: var(--dark);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px;
  font-family: monospace;
  font-size: 14px;
  text-align: center;
}

.copy-btn {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.copy-btn:hover {
  background-color: var(--primary-dark);
}

.password-note {
  color: var(--gray);
  font-size: 12px;
  margin: 0;
}

.download-section {
  text-align: center;
}

.download-section .btn-download {
  width: 100%;
  margin-bottom: 12px;
}

.download-note {
  color: var(--gray);
  font-size: 12px;
  margin: 0;
}

/* Product Description Section */
.product-description-section {
  padding: 80px 0;
  background-color: var(--darker);
}

.description-content {
  max-width: 800px;
  margin: 0 auto;
}

.description-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
}

.description-content p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.description-features h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}

.description-features ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.description-features li {
  display: flex;
  align-items: center;
  color: var(--gray);
  font-size: 16px;
}

.description-features li i {
  color: var(--success);
  margin-right: 12px;
  font-size: 14px;
}

/* System Requirements Section */
.system-requirements-section {
  padding: 80px 0;
}

.system-requirements-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
  text-align: center;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.requirement-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.requirement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(229, 62, 62, 0.1);
  border-color: rgba(229, 62, 62, 0.3);
}

.requirement-card i {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 16px;
}

.requirement-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.requirement-card p {
  color: var(--gray);
  font-size: 14px;
}

/* Mobile Responsiveness for new elements */
@media (max-width: 992px) {
  .details-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .product-hero h1 {
    font-size: 32px;
  }

  .requirements-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .related-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

/* Download Page Styles */
.download-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}

.download-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.download-icon {
  margin-bottom: 40px;
}

.loader-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.download-loader {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-circle {
  position: absolute;
  width: 100%;
  height: 100%;
}

.loader-circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.loader-progress {
  fill: none;
  stroke: var(--primary);
  stroke-width: 4;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s ease-in-out;
  filter: drop-shadow(0 0 8px rgba(229, 62, 62, 0.3));
}

.loader-circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid var(--border);
  border-radius: 50%;
}

.download-loader i {
  margin-left: 8px;
  font-size: 32px;
  color: var(--primary);
  z-index: 2;
  animation: bounce-download 2s ease-in-out infinite;
}

.download-loader.completed i {
  color: var(--success);
  animation: none;
}

.download-info h1 {
  font-size: 36px;
  margin-bottom: 16px;
  font-weight: 700;
}

.download-subtitle {
  color: var(--gray);
  font-size: 18px;
  margin-bottom: 40px;
}

.countdown-container {
  margin-bottom: 40px;
}

.countdown-circle {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.countdown-circle svg {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.countdown-progress {
  fill: none;
  stroke: var(--primary);
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s ease-in-out;
  filter: drop-shadow(0 0 12px rgba(229, 62, 62, 0.4));
}

.countdown-circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 6px solid var(--border);
  border-radius: 50%;
}

.countdown-number {
  position: relative;
  z-index: 2;
  background-color: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: 10px;
  margin-left: 12px;
}

.countdown-number span {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
}

.countdown-circle.completed .countdown-number {
  border-color: var(--success);
}

.countdown-circle.completed .countdown-number span {
  color: var(--success);
}

.countdown-circle.completed .countdown-progress {
  stroke: var(--success);
}

.countdown-text {
  color: var(--gray);
  font-size: 16px;
  margin: 0;
}

.download-details {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.detail-item {
  display: flex;
  align-items: center;
  color: var(--gray);
  font-size: 14px;
}

.detail-item i {
  color: var(--success);
  margin-right: 8px;
  font-size: 16px;
}

.download-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.download-note {
  background-color: rgba(229, 62, 62, 0.1);
  border: 1px solid rgba(229, 62, 62, 0.2);
  border-radius: 8px;
  padding: 16px;
  margin-top: 20px;
}

.download-note p {
  color: var(--gray);
  font-size: 14px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-note i {
  color: var(--primary);
  margin-right: 8px;
}

/* Animations */
@keyframes bounce-download {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

@keyframes pulse-countdown {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/* Create SVG circles with CSS */
.loader-circle::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 50%;
  background: conic-gradient(var(--primary) 0deg, transparent 0deg);
  mask: radial-gradient(circle, transparent 40px, black 42px);
  animation: rotate-loader 2s linear infinite;
}

.countdown-circle::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 50%;
  background: conic-gradient(var(--primary) 0deg, transparent 0deg);
  mask: radial-gradient(circle, transparent 35px, black 37px);
}

@keyframes rotate-loader {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .download-info h1 {
    font-size: 28px;
  }

  .download-subtitle {
    font-size: 16px;
  }

  .download-details {
    gap: 20px;
  }

  .download-actions {
    flex-direction: column;
    align-items: center;
  }

  .download-actions .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .download-loader {
    width: 100px;
    height: 100px;
  }

  .download-loader i {
    font-size: 24px;
  }

  .countdown-circle {
    width: 80px;
    height: 80px;
  }

  .countdown-number {
    width: 60px;
    height: 60px;
  }

  .countdown-number span {
    font-size: 24px;
  }

  .download-details {
    flex-direction: column;
    gap: 16px;
  }
}

/* New Gaming Hero Section */
.hero-gaming {
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(229, 62, 62, 0.03) 0%, rgba(13, 17, 23, 1) 50%, rgba(229, 62, 62, 0.03) 100%);
}

.hero-gaming-grid {
  display: grid;
  grid-template-columns: 1fr 600px;
  gap: 80px;
  align-items: center;
  min-height: 600px;
}

.hero-content-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-status-bar {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--success);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gray);
}

.status-dot.active {
  background-color: var(--success);
  box-shadow: 0 0 10px rgba(35, 134, 54, 0.5);
  animation: pulse-status 2s ease-in-out infinite;
}

.hero-title-section {
  margin-bottom: 20px;
}

.hero-main-title {
  font-size: 64px;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.title-line {
  display: block;
  color: var(--light);
}

.accent-line {
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.title-subtitle {
  display: block;
  font-size: 24px;
  color: var(--gray);
  font-weight: 600;
  margin-top: 16px;
  letter-spacing: 2px;
}

.hero-description {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.6;
  max-width: 500px;
}

.hero-features-quick {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.feature-quick {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--light);
  font-size: 14px;
  font-weight: 500;
}

.feature-quick i {
  color: var(--primary);
  font-size: 16px;
  width: 20px;
}

.hero-actions-new {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3);
}

.btn-primary-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 62, 62, 0.4);
}

.btn-secondary-hero {
  background: transparent;
  color: var(--light);
  border: 2px solid var(--border);
}

.btn-secondary-hero:hover {
  background-color: var(--card-bg);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Gaming HUD Interface */
.hero-gaming-interface {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gaming-hud {
  position: relative;
  width: 100%;
  height: 100%;
}

.hud-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(22, 27, 34, 0.8);
  border: 2px solid var(--border);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.4s ease;
  transform-style: preserve-3d;
  cursor: pointer;
}

.hud-container:hover {
  transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) translateZ(20px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(229, 62, 62, 0.2), 0 0 0 1px rgba(229, 62, 62, 0.1), inset 0 1px 0
    rgba(255, 255, 255, 0.1);
  background: rgba(22, 27, 34, 0.9);
}

.hud-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(229, 62, 62, 0.05) 0%, transparent 50%, rgba(229, 62, 62, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.hud-container:hover::before {
  opacity: 1;
}

.hud-container:hover .hud-top-bar,
.hud-container:hover .hud-bottom-bar {
  transform: translateZ(10px);
}

.hud-container:hover .hud-radar {
  transform: translate(-50%, -50%) translateZ(15px) scale(1.05);
}

.hud-container:hover .side-panel {
  transform: translateZ(8px);
}

.hud-top-bar,
.hud-bottom-bar,
.hud-radar,
.side-panel {
  transition: transform 0.4s ease;
}

.hud-top-bar {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.hud-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(13, 17, 23, 0.8);
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.stat-icon {
  width: 32px;
  height: 32px;
  background: rgba(229, 62, 62, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(229, 62, 62, 0.3);
}

.stat-icon i {
  color: var(--primary);
  font-size: 14px;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: 10px;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-value {
  font-size: 16px;
  color: var(--primary);
  font-weight: 700;
}

.hud-radar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
}

.radar-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgba(13, 17, 23, 0.9);
  border: 2px solid var(--primary);
  border-radius: 50%;
  overflow: hidden;
}

.radar-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at center, transparent 48px, var(--border) 49px, transparent 50px),
    radial-gradient(circle at center, transparent 98px, var(--border) 99px, transparent 100px),
    linear-gradient(0deg, transparent 49%, var(--border) 50%, transparent 51%),
    linear-gradient(90deg, transparent 49%, var(--border) 50%, transparent 51%);
  opacity: 0.3;
}

.radar-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 50%;
  background: linear-gradient(to bottom, var(--primary), transparent);
  transform-origin: bottom center;
  transform: translate(-50%, 0) rotate(0deg);
  animation: radar-sweep 3s linear infinite;
}

.radar-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.radar-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.radar-dot.enemy {
  background-color: var(--danger);
  box-shadow: 0 0 10px rgba(218, 54, 51, 0.5);
  animation: pulse-enemy 2s ease-in-out infinite;
}

.radar-dot.ally {
  background-color: var(--success);
  box-shadow: 0 0 10px rgba(35, 134, 54, 0.5);
}

.radar-dot.player {
  background-color: var(--primary);
  box-shadow: 0 0 15px rgba(229, 62, 62, 0.7);
  animation: pulse-player 1.5s ease-in-out infinite;
}

.radar-label {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-wrap: nowrap;
}

.hud-side-panels {
  position: absolute;
  top: 100px;
  left: 20px;
  right: 20px;
  bottom: 80px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.side-panel {
  width: 140px;
  background: rgba(13, 17, 23, 0.8);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.panel-header {
  padding: 12px;
  background: rgba(229, 62, 62, 0.1);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.panel-header i {
  color: var(--primary);
  font-size: 12px;
}

.panel-header span {
  font-size: 10px;
  color: var(--light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.panel-content {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mod-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 10px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mod-status {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gray);
}

.mod-item.active .mod-status {
  background-color: var(--success);
  box-shadow: 0 0 6px rgba(35, 134, 54, 0.5);
}

.mod-status.inactive {
  background-color: var(--danger);
}

.mod-toggle {
  margin-left: auto;
  width: 20px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--gray-dark);
  position: relative;
}

.mod-toggle.on {
  background-color: var(--success);
}

.mod-toggle::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: white;
  transition: transform 0.2s ease;
}

.mod-toggle.on::after {
  transform: translateX(10px);
}

.live-stat {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  padding: 4px 0;
  font-size: 10px;
}

.stat-name {
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-number {
  color: var(--primary);
  font-weight: 700;
}

.hud-bottom-bar {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.system-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(13, 17, 23, 0.8);
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--success);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--success);
  animation: pulse-status 2s ease-in-out infinite;
}

.online-users {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.online-users i {
  color: var(--primary);
}

/* Floating Notifications */
.floating-notifications {
  position: absolute;
  top: 20px;
  right: -200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notification-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(13, 17, 23, 0.9);
  border: 1px solid var(--success);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 10px;
  color: var(--success);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: slide-notification 8s ease-in-out infinite;
  opacity: 0;
}

.notification-item i {
  font-size: 12px;
}

/* Particle Effects */
.particle-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background-color: var(--primary);
  border-radius: 50%;
  opacity: 0.6;
  animation: float-particle 6s linear infinite;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 8s;
}

.particle:nth-child(2) {
  left: 30%;
  animation-delay: 2s;
  animation-duration: 6s;
}

.particle:nth-child(3) {
  left: 50%;
  animation-delay: 4s;
  animation-duration: 7s;
}

.particle:nth-child(4) {
  left: 70%;
  animation-delay: 1s;
  animation-duration: 9s;
}

.particle:nth-child(5) {
  left: 90%;
  animation-delay: 3s;
  animation-duration: 5s;
}

/* Animations */
@keyframes pulse-status {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

@keyframes radar-sweep {
  0% {
    transform: translate(-50%, 0) rotate(0deg);
  }

  100% {
    transform: translate(-50%, 0) rotate(360deg);
  }
}

@keyframes pulse-enemy {
  0%,
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.3);
  }
}

@keyframes pulse-player {
  0%,
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.5);
  }
}

@keyframes slide-notification {
  0%,
  90%,
  100% {
    transform: translateX(0);
    opacity: 0;
  }

  10%,
  80% {
    transform: translateX(-220px);
    opacity: 1;
  }
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
  .hero-gaming-grid {
    grid-template-columns: 1fr 500px;
    gap: 60px;
  }

  .hero-main-title {
    font-size: 52px;
  }
}

@media (max-width: 992px) {
  .hero-gaming-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-gaming-interface {
    height: 500px;
  }

  .hero-main-title {
    font-size: 48px;
  }

  .hud-side-panels {
    display: none;
  }

  .floating-notifications {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-gaming {
    padding: 60px 0 80px;
  }

  .hero-main-title {
    font-size: 36px;
  }

  .title-subtitle {
    font-size: 18px;
  }

  .hero-features-quick {
    gap: 20px;
  }

  .hero-actions-new {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-hero {
    justify-content: center;
  }

  .hero-gaming-interface {
    height: 400px;
  }

  .hud-radar {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 576px) {
  .hero-status-bar {
    flex-direction: column;
    gap: 12px;
  }

  .hero-main-title {
    font-size: 28px;
  }

  .hero-features-quick {
    flex-direction: column;
    gap: 16px;
  }

  .hud-top-bar {
    flex-direction: column;
    gap: 12px;
  }

  .hero-gaming-interface {
    height: 350px;
  }
}
