:root {
  --bg: #0f0a16;
  --card: rgba(255,255,255,0.06);
  --card-border: rgba(255,255,255,0.08);
  --text: #f4f1ff;
  --muted: #b6accd;
  --accent: #ff8c42;
  --accent-2: #ff5e7e;
  --accent-3: #8d5bff;
  --shadow: 0 20px 60px rgba(0,0,0,0.45);
  --radius: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background:
	radial-gradient(circle at top left, rgba(141,91,255,0.22), transparent 30%),
	radial-gradient(circle at top right, rgba(255,94,126,0.18), transparent 35%),
	radial-gradient(circle at bottom, rgba(255,140,66,0.14), transparent 30%),
	var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

header {
  padding: 22px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(15,10,22,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  font-size: 20px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(141,91,255,0.35);
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 15px;
}

.hero {
  padding: 92px 0 56px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 42px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #ffe0d0;
  margin-bottom: 22px;
  font-size: 14px;
}

h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  padding: 16px 24px;
  border-radius: 18px;
  font-weight: 700;
  transition: 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 16px 40px rgba(255,94,126,0.28);
}

.btn-secondary {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 32px;
  padding: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: -20%;
  background:
	radial-gradient(circle, rgba(255,140,66,0.25), transparent 35%),
	radial-gradient(circle at right, rgba(141,91,255,0.25), transparent 30%);
  filter: blur(30px);
  z-index: 0;
}

.screen {
  position: relative;
  z-index: 1;
  background: #120d1d;
  border-radius: 24px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.06);
}

.screen-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.dot-group {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
}

.stream-card {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 18px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.05);
}

.stream-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.tag {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(255,255,255,0.06);
  color: #ffe8dd;
}

section {
  padding: 60px 0;
}

.section-title {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -1px;
}

.section-text {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 42px;
  font-size: 17px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.feature {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px;
  transition: 0.25s ease;
  backdrop-filter: blur(12px);
}

.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.14);
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
  background: linear-gradient(135deg, rgba(255,140,66,0.25), rgba(141,91,255,0.25));
}

.feature h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.feature p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.premium {
  background:
	linear-gradient(135deg, rgba(255,140,66,0.16), rgba(141,91,255,0.16));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 36px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.premium::after {
  content: 'PREMIUM';
  position: absolute;
  right: -18px;
  top: 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 10px 18px;
  border-radius: 999px;
  transform: rotate(12deg);
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.download-card {
  background: rgba(255,255,255,0.05);
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.08);
}

.download-card h3 {
  margin-bottom: 10px;
  font-size: 28px;
}

.download-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.faq {
  display: grid;
  gap: 16px;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

.faq-question {
  width: 100%;
  padding: 22px;
  background: transparent;
  border: none;
  color: white;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: var(--muted);
  line-height: 1.8;
  padding: 0 22px;
}

.faq-item.active .faq-answer {
  max-height: 220px;
  padding-bottom: 22px;
}

footer {
  padding: 40px 0 60px;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

@media (max-width: 980px) {
  .hero-grid {
	grid-template-columns: 1fr;
  }

  .nav-links {
	display: none;
  }

  .premium {
	padding: 34px 24px;
  }
}

@media (max-width: 640px) {
  .hero {
	padding-top: 56px;
  }

  h1 {
	letter-spacing: -1px;
  }

  .hero p,
  .section-text {
	font-size: 16px;
  }

  .btn {
	width: 100%;
	justify-content: center;
  }

  .download-card h3 {
	font-size: 22px;
  }
}





/* HELP PAGE */

.mini-header {
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(15,10,22,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.help-hero {
  padding: 72px 0 36px;
}

.help-title {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

.help-subtitle {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 760px;
}

.help-section {
  padding: 36px 0 20px;
}

.help-section-title {
  font-size: 34px;
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.help-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: 26px;
  backdrop-filter: blur(12px);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.help-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.14);
}

.help-card:target {
  border-color: var(--accent);
  box-shadow:
    0 0 0 1px rgba(255,140,66,0.2),
    0 0 40px rgba(255,140,66,0.18);
}

.help-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

/* .help-icon { */
  /* width: 52px; */
  /* height: 52px; */
  /* border-radius: 18px; */
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  /* font-size: 22px; */

  /* background: */
    /* linear-gradient( */
      /* 135deg, */
      /* rgba(255,140,66,0.22), */
      /* rgba(141,91,255,0.22) */
    /* ); */
/* } */

.help-icon {
  width: 52px;
  height: 52px;

  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(
      135deg,
      rgba(255,140,66,0.22),
      rgba(141,91,255,0.22)
    );

  flex-shrink: 0;
}

.help-icon img {
  width: 24px;
  height: 24px;

  object-fit: contain;

  opacity: 0.95;
}

.help-card h3 {
  font-size: 21px;
  line-height: 1.25;
}

.help-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
  margin-bottom: 14px;
}

.help-list {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.video-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 18px;

  border-radius: 16px;

  background: rgba(255,255,255,0.05);

  border: 1px solid rgba(255,255,255,0.08);

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;

  font-weight: 600;
  margin-top: 8px;
}

.video-btn:hover {
  transform: translateY(-2px);

  border-color: rgba(255,255,255,0.14);

  background: rgba(255,255,255,0.08);
}

.premium-help-card {
  background:
    linear-gradient(
      135deg,
      rgba(255,140,66,0.12),
      rgba(141,91,255,0.12)
    );
}

.help-footer {
  padding: 42px 0 56px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 640px) {

  .help-hero {
    padding-top: 42px;
  }

  .help-title {
    letter-spacing: -1px;
  }

  .help-subtitle {
    font-size: 16px;
  }

  .help-card {
    padding: 22px;
  }

  .help-card h3 {
    font-size: 19px;
  }

}

.help-card.highlighted {
  border-color: var(--accent);

  box-shadow:
    0 0 0 1px rgba(255,140,66,0.25),
    0 0 40px rgba(255,140,66,0.18);

  transform: translateY(-2px);
}

.help-card,
.help-section {
  scroll-margin-top: 120px;
}

.platforms-box {
  background: rgba(255,255,255,0.04);

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 30px;

  padding: 32px;

  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.platforms-info h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.platforms-info p {
  color: var(--muted);
  line-height: 1.7;
}

.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.platform-link {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 16px 18px;

  border-radius: 18px;

  background: rgba(255,255,255,0.05);

  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.25s ease;
}

.platform-link:hover {
  transform: translateY(-2px);

  border-color: rgba(255,255,255,0.14);
}

.platform-link small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.rustore {
  background:
    linear-gradient(
      135deg,
      rgba(255,140,66,0.08),
      rgba(141,91,255,0.08)
    );
}