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

body {
  background: #050505;
  color: #fff;
  font-family: 'Inter', -apple-system, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes rise { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes glitch {
  0% { text-shadow: -2px 0 #f00, 2px 0 #00f; }
  20% { text-shadow: 2px 0 #f00, -2px 0 #00f; }
  40% { text-shadow: 0 0 0 #fff; }
  100% { text-shadow: 0 0 0 #fff; }
}
@keyframes breathe {
  0%, 100% { box-shadow: 0 0 0 rgba(255,255,255,0); }
  50% { box-shadow: 0 0 30px rgba(255,255,255,0.04); }
}

.corner {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 200;
  width: 40px;
  height: 40px;
  animation: fadeIn 0.8s ease-out;
  opacity: 0.45;
  transition: all 0.4s ease;
  border-radius: 10px;
  padding: 6px;
}
.corner:hover {
  opacity: 1;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 30px rgba(255,255,255,0.12), 0 0 60px rgba(255,255,255,0.04);
  transform: scale(1.08);
}
.corner img { width: 100%; height: 100%; object-fit: contain; }

nav {
  width: 100%;
  padding: 28px 32px 28px 80px;
  display: flex;
  justify-content: center;
  gap: 2px;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, #050505 60%, transparent);
}
nav a {
  color: #333;
  text-decoration: none;
  padding: 6px 18px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 300;
  transition: color 0.3s ease;
}
nav a:hover { color: #fff; }

.hero {
  width: 100%;
  max-width: 860px;
  padding: 30px 24px 20px;
  text-align: center;
  animation: rise 0.8s ease-out;
  position: relative;
  z-index: 1;
}

.tilt {
  perspective: 800px;
  display: block;
}

.tilt-inner {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  will-change: transform;
}

.tilt-btn {
  perspective: 600px;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 48px;
  border-radius: 20px;
  opacity: 0.95;
  animation: breathe 4s ease-in-out infinite;
  outline: 1px solid rgba(255,255,255,0.04);
  outline-offset: 0;
}
.hero-img:hover {
  opacity: 1;
  outline: 2px solid rgba(255,255,255,0.2);
  box-shadow:
    0 0 40px rgba(255,255,255,0.12),
    0 0 80px rgba(255,255,255,0.06),
    0 0 160px rgba(255,255,255,0.03),
    inset 0 0 40px rgba(255,255,255,0.02);
}

.container {
  max-width: 520px;
  width: 100%;
  padding: 70px 24px 40px;
  text-align: center;
  animation: rise 0.8s ease-out;
  position: relative;
  z-index: 1;
}

.title-line { animation: fadeIn 0.8s ease-out 0.2s both; }

h1 {
  font-size: 44px;
  font-weight: 200;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: #eee;
  cursor: default;
  line-height: 1.3;
  margin-bottom: 20px;
}
h1:hover { animation: glitch 0.25s ease-in-out; }

.sub {
  font-size: 11px;
  color: #444;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 44px;
}

.btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-block;
  color: #0a0a0a;
  text-decoration: none;
  padding: 12px 32px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  background: rgba(255,255,255,0.92);
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.btn:hover {
  background: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 0 20px rgba(255,255,255,0.15),
    0 0 50px rgba(255,255,255,0.08),
    0 0 100px rgba(255,255,255,0.03);
}
.btn:active {
  transform: translateY(0px) scale(0.97);
}

.btn-ghost {
  background: transparent;
  color: #888;
  border: 1px solid #222;
}
.btn-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.03);
  box-shadow:
    0 0 20px rgba(255,255,255,0.06),
    0 0 50px rgba(255,255,255,0.03);
}
.btn-ghost:active {
  transform: translateY(0px) scale(0.97);
}

.btn-dc {
  background: rgba(255,255,255,0.06);
  color: #aaa;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}
.btn-dc:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.15);
  box-shadow:
    0 0 20px rgba(255,255,255,0.08),
    0 0 50px rgba(255,255,255,0.03);
}
.btn-dc:active {
  transform: translateY(0px) scale(0.97);
}
.btn-dc svg { width: 14px; height: 14px; fill: currentColor; }

.section {
  width: 100%;
  max-width: 520px;
  padding: 48px 24px;
  animation: rise 0.7s ease-out both;
  position: relative;
  z-index: 1;
}
.section:nth-child(2) { animation-delay: 0.1s; }
.section:nth-child(3) { animation-delay: 0.2s; }

h2 {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 28px;
  text-align: center;
}

.gadgets { display: flex; flex-direction: column; gap: 10px; }

.g-card {
  padding: 26px 30px;
  background: rgba(255,255,255,0.02);
  border-radius: 14px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  border: 1px solid rgba(255,255,255,0.03);
}
.g-card:hover {
  background: rgba(255,255,255,0.05);
  padding-left: 36px;
  border-color: rgba(255,255,255,0.08);
  box-shadow:
    0 0 20px rgba(255,255,255,0.04),
    0 0 50px rgba(255,255,255,0.02);
}

.g-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.g-tag {
  font-size: 9px;
  color: #0a0a0a;
  font-weight: 500;
  background: rgba(255,255,255,0.85);
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 1px;
}

.g-name {
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.g-desc {
  font-size: 12px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
}

.g-stat {
  display: inline-block;
  font-size: 9px;
  color: #666;
  background: rgba(255,255,255,0.03);
  padding: 3px 12px;
  border-radius: 100px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.g-card:hover .g-stat {
  background: rgba(255,255,255,0.06);
  color: #999;
}

.logo-wrap {
  width: 100%;
  max-width: 640px;
  padding: 10px 24px 40px;
  text-align: center;
  animation: rise 0.7s ease-out;
  position: relative;
  z-index: 1;
}
.logo-wrap .tilt-inner {
  outline: 1px solid rgba(255,255,255,0.04);
  outline-offset: 0;
  border-radius: 16px;
}
.logo-wrap img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  opacity: 0.85;
  display: block;
}
.logo-wrap:hover .tilt-inner {
  opacity: 1;
  outline: 2px solid rgba(255,255,255,0.2);
  box-shadow:
    0 0 40px rgba(255,255,255,0.12),
    0 0 80px rgba(255,255,255,0.06),
    0 0 160px rgba(255,255,255,0.03),
    inset 0 0 40px rgba(255,255,255,0.02);
}
.logo-wrap:hover img { opacity: 1; }

.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  padding: 16px 0;
  display: flex;
  align-items: baseline;
  gap: 14px;
  transition: all 0.3s ease;
}
.step:hover { padding-left: 10px; }
.step-i {
  font-size: 10px;
  color: #555;
  min-width: 28px;
  font-weight: 400;
}
.step-t { font-size: 13px; color: #555; line-height: 1.6; transition: color 0.3s ease; }
.step:hover .step-t { color: #888; }

.faq { display: flex; flex-direction: column; }
.faq-item {
  padding: 18px 0;
  transition: all 0.3s ease;
  cursor: default;
}
.faq-item:hover { padding-left: 14px; }
.faq-q { font-size: 13px; color: #999; margin-bottom: 4px; }
.faq-a { font-size: 12px; color: #444; line-height: 1.7; }

/* Reviews */
.rv-container { width: 100%; max-width: 640px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.rv-login { text-align: center; margin: 40px 0; }
.rv-login .btn { display: inline-flex; align-items: center; gap: 8px; }
.rv-login .btn svg { width: 18px; height: 18px; fill: #050505; }
.rv-user { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 32px; color: #555; font-size: 12px; }
.rv-user img { width: 28px; height: 28px; border-radius: 50%; }
.rv-user button { background: none; border: none; color: #333; cursor: pointer; font-size: 11px; text-decoration: underline; font-family: inherit; }
.rv-user button:hover { color: #777; }
.rv-form { margin-bottom: 40px; }
.rv-form textarea { width: 100%; background: #0a0a0a; border: 1px solid #1a1a1a; border-radius: 12px; padding: 14px; color: #eee; font-size: 13px; font-family: inherit; resize: vertical; min-height: 80px; outline: none; transition: border-color 0.3s ease; }
.rv-form textarea:focus { border-color: #333; }
.rv-stars { display: flex; gap: 4px; margin-bottom: 12px; direction: rtl; }
.rv-stars input { display: none; }
.rv-stars label { font-size: 24px; color: #222; cursor: pointer; transition: color 0.15s ease; }
.rv-stars label:hover, .rv-stars label:hover ~ label, .rv-stars input:checked ~ label { color: #fff; }
.rv-submit { display: flex; justify-content: flex-end; margin-top: 10px; }
.rv-submit .btn { font-size: 11px; padding: 8px 18px; }
.rv-list { margin-bottom: 40px; }
.rv-card { background: #0a0a0a; border: 1px solid #141414; border-radius: 14px; padding: 20px 22px; margin-bottom: 14px; transition: all 0.25s ease; }
.rv-card:hover { border-color: #222; }
.rv-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.rv-card-user { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #666; }
.rv-card-user img { width: 22px; height: 22px; border-radius: 50%; }
.rv-card-stars { color: #fff; font-size: 14px; letter-spacing: 2px; }
.rv-card-body { font-size: 13px; color: #aaa; line-height: 1.6; margin-bottom: 12px; }
.rv-card-date { font-size: 10px; color: #333; }
.rv-reply-form { margin-top: 12px; padding-top: 12px; border-top: 1px solid #141414; display: flex; gap: 8px; }
.rv-reply-form input { flex: 1; background: #050505; border: 1px solid #1a1a1a; border-radius: 8px; padding: 8px 12px; color: #eee; font-size: 12px; font-family: inherit; outline: none; }
.rv-reply-form input:focus { border-color: #333; }
.rv-reply-form button { background: none; border: 1px solid #222; border-radius: 8px; color: #666; padding: 8px 14px; cursor: pointer; font-size: 11px; font-family: inherit; transition: all 0.2s ease; }
.rv-reply-form button:hover { border-color: #555; color: #fff; }
.rv-reply { margin-left: 16px; padding: 10px 0 10px 16px; border-left: 1px solid #141414; }
.rv-reply:last-child { padding-bottom: 0; }
.rv-reply-user { display: flex; align-items: center; gap: 6px; font-size: 11px; color: #555; margin-bottom: 4px; }
.rv-reply-user img { width: 16px; height: 16px; border-radius: 50%; }
.rv-reply-body { font-size: 12px; color: #888; line-height: 1.5; }
.rv-empty { text-align: center; padding: 60px 0; color: #222; font-size: 13px; font-style: italic; }
.rv-error { color: #f55; font-size: 12px; text-align: center; margin-bottom: 16px; }
.rv-votes { display: flex; gap: 12px; margin-bottom: 10px; }
.rv-vote { display: inline-flex; align-items: center; gap: 4px; background: none; border: 1px solid #1a1a1a; border-radius: 8px; color: #444; padding: 4px 10px; cursor: pointer; font-size: 12px; font-family: inherit; transition: all 0.2s ease; }
.rv-vote svg { fill: currentColor; }
.rv-vote:hover { border-color: #555; color: #888; }
.rv-vote.rv-vote-on[onclick*="1"] { border-color: #2a7a3a; color: #3ccf5e; }
.rv-vote.rv-vote-on[onclick*="-1"] { border-color: #7a2a2a; color: #cf3e3e; }
.faq-a a { color: #777; text-decoration: none; border-bottom: 1px solid #222; transition: all 0.3s ease; }
.faq-a a:hover { color: #fff; border-color: #555; }

footer {
  width: 100%;
  padding: 36px 24px;
  text-align: center;
  color: #222;
  font-size: 11px;
  letter-spacing: 2px;
  animation: fadeIn 0.8s ease-out 0.4s both;
  position: relative;
  z-index: 1;
}
footer a { color: #444; text-decoration: none; transition: color 0.3s ease; }
footer a:hover { color: #fff; }
.sep { color: #1a1a1a; margin: 0 10px; }

::selection { background: rgba(255,255,255,0.06); }

@media (max-width: 600px) {
  .corner { top: 14px; left: 14px; width: 30px; height: 30px; }
  h1 { font-size: 26px; letter-spacing: 6px; }
  nav { padding: 16px 12px 16px 48px; }
  nav a { padding: 5px 10px; font-size: 10px; letter-spacing: 2px; }
  .hero { padding: 20px 20px 10px; }
  .container { padding: 40px 20px; }
  .g-card { padding: 20px 22px; }
  .g-card:hover { padding-left: 26px; }
  .rv-container { padding: 0 16px; }
  .rv-card { padding: 16px 18px; }
}
