/* resolveX - Cyberpunk Theme Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Space+Mono:wght@400;700&display=swap');

:root {
  --bg-0: #070A0F;
  --bg-1: #0D1320;
  --neon-green: #39FF14;
  --neon-green-dim: #22AA10;
  --text-primary: #E6F1FF;
  --text-secondary: #8AA0B8;
  --danger: #FF3B30;
  --warning: #FFB020;
  --border-color: rgba(57, 255, 20, 0.3);
  --glow: 0 0 10px var(--neon-green), 0 0 20px var(--neon-green), 0 0 30px var(--neon-green);
  --glow-dim: 0 0 5px var(--neon-green-dim), 0 0 10px var(--neon-green-dim);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Mono', monospace;
  background-color: var(--bg-0);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Scanline overlay effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.15) 1px,
    transparent 1px,
    transparent 2px
  );
  pointer-events: none;
  z-index: 9999;
  animation: scanline 8s linear infinite;
}

@keyframes scanline {
  0% { transform: translateY(0); }
  100% { transform: translateY(10px); }
}

/* Grid background effect */
.grid-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(57, 255, 20, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Press Start 2P', cursive;
  line-height: 1.4;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(1.5rem, 4vw, 3rem);
  text-shadow: var(--glow);
  animation: flicker 3s infinite;
}

h2 {
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  color: var(--neon-green);
  margin-bottom: 2rem;
}

h3 {
  font-size: clamp(0.8rem, 1.5vw, 1.2rem);
  color: var(--neon-green);
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  41%, 43% { opacity: 0.9; }
  45%, 47% { opacity: 0.95; }
}

/* Navigation */
nav {
  background: rgba(13, 19, 32, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 2px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(57, 255, 20, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Press Start 2P', cursive;
  font-size: 1.2rem;
  color: var(--neon-green);
  text-decoration: none;
  text-shadow: var(--glow-dim);
  transition: all 0.3s ease;
}

.logo:hover {
  text-shadow: var(--glow);
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-green);
  transition: width 0.3s ease;
  box-shadow: var(--glow-dim);
}

.nav-menu a:hover {
  color: var(--neon-green);
}

.nav-menu a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--neon-green);
  transition: all 0.3s ease;
  box-shadow: var(--glow-dim);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Sections */
section {
  padding: 6rem 0;
  position: relative;
}

section:nth-child(even) {
  background: rgba(13, 19, 32, 0.3);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-0) 0%, var(--bg-1) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.app-icon {
  width: 150px;
  height: 150px;
  margin: 0 auto 2rem;
  border-radius: 30px;
  border: 3px solid var(--neon-green);
  box-shadow: var(--glow);
  animation: float 3s ease-in-out infinite;
  background: var(--bg-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.app-icon-img {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  border-radius: 22px;
  border: 2px solid var(--neon-green);
  box-shadow: var(--glow);
  animation: float 3s ease-in-out infinite;
  display: block;
  object-fit: cover;
}

.tagline {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--text-secondary);
  margin: 2rem 0;
  font-family: 'Space Mono', monospace;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid;
  cursor: pointer;
  font-size: 1rem;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
  transform: translate(-50%, -50%);
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--neon-green);
  color: var(--bg-0);
  border-color: var(--neon-green);
  box-shadow: var(--glow);
}

.btn-primary:hover {
  background: var(--neon-green-dim);
  transform: translateY(-2px);
  box-shadow: 0 0 20px var(--neon-green), 0 0 40px var(--neon-green), 0 0 60px var(--neon-green);
}

.btn-secondary {
  background: transparent;
  color: var(--neon-green);
  border-color: var(--neon-green);
}

.btn-secondary:hover {
  background: var(--neon-green);
  color: var(--bg-0);
  box-shadow: var(--glow);
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}

/* Cards */
.card {
  background: rgba(13, 19, 32, 0.8);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(57, 255, 20, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  border-color: var(--neon-green);
  transform: translateY(-5px);
  box-shadow: var(--glow-dim);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.card h3 {
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-secondary);
}

/* Grid Layouts */
.features-grid,
.testimonials-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--neon-green);
  color: var(--bg-0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Press Start 2P', cursive;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
  box-shadow: var(--glow);
}

/* Screenshots Gallery */
.screenshots-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.screenshot-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  aspect-ratio: 9/19;
  background: linear-gradient(135deg, var(--bg-1) 0%, rgba(57, 255, 20, 0.1) 100%);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  flex-shrink: 0;
}

.screenshot-item:hover {
  border-color: var(--neon-green);
  transform: scale(1.05);
  box-shadow: var(--glow);
}

.screenshot-placeholder {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
}

.screenshot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Lightbox Gallery Modal */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 400px;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 20px;
  border: 3px solid var(--neon-green);
  box-shadow: var(--glow);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  font-size: 2rem;
  color: var(--neon-green);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  text-shadow: var(--glow);
  transform: scale(1.2);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: var(--neon-green);
  cursor: pointer;
  background: rgba(13, 19, 32, 0.8);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  user-select: none;
}

.lightbox-nav:hover {
  border-color: var(--neon-green);
  box-shadow: var(--glow-dim);
}

.lightbox-prev {
  left: -80px;
}

.lightbox-next {
  right: -80px;
}

.lightbox-counter {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-secondary);
  font-family: 'Space Mono', monospace;
}

/* Pricing */
.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: rgba(13, 19, 32, 0.8);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--neon-green);
  transform: scale(1.05);
  box-shadow: var(--glow);
}

.pricing-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--neon-green);
  color: var(--bg-0);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: var(--glow);
}

.pricing-card:hover {
  border-color: var(--neon-green);
  transform: translateY(-5px) scale(1.02);
}

.price {
  font-size: 3rem;
  font-family: 'Press Start 2P', cursive;
  color: var(--neon-green);
  margin: 1rem 0;
  text-shadow: var(--glow-dim);
}

.price-period {
  font-size: 1rem;
  color: var(--text-secondary);
  font-family: 'Space Mono', monospace;
}

.features-list {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.features-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.features-list li::before {
  content: '✓ ';
  color: var(--neon-green);
  font-weight: 700;
  margin-right: 0.5rem;
}

/* Testimonials */
.testimonial-card {
  background: rgba(13, 19, 32, 0.8);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 5rem;
  color: var(--neon-green);
  opacity: 0.3;
  font-family: serif;
}

.testimonial-text {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--neon-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Press Start 2P', cursive;
  font-size: 1.2rem;
  color: var(--bg-0);
  box-shadow: var(--glow-dim);
}

.author-info h4 {
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* FAQ */
.faq-container {
  max-width: 900px;
  margin: 3rem auto;
}

.faq-item {
  background: rgba(13, 19, 32, 0.8);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--neon-green);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--text-primary);
  user-select: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--neon-green);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--neon-green);
  font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  background: rgba(13, 19, 32, 0.8);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--neon-green);
  box-shadow: var(--glow-dim);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

/* Contact Cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.contact-card {
  background: rgba(13, 19, 32, 0.8);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: var(--neon-green);
  box-shadow: var(--glow-dim);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.contact-card a {
  color: var(--neon-green);
  text-decoration: none;
  word-break: break-all;
}

/* Footer */
footer {
  background: var(--bg-1);
  border-top: 2px solid var(--border-color);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

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

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--neon-green);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-links a:hover {
  border-color: var(--neon-green);
  background: var(--neon-green);
  color: var(--bg-0);
  box-shadow: var(--glow-dim);
  padding-left: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Legal Pages */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
}

.legal-content h1 {
  font-size: clamp(1.2rem, 3vw, 2rem);
  margin-bottom: 1rem;
  text-align: center;
}

.legal-content .last-updated {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-style: italic;
}

.legal-content h2 {
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.legal-content h3 {
  font-size: clamp(0.7rem, 1.5vw, 1rem);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  margin-left: 2rem;
  line-height: 1.8;
}

.legal-content li {
  margin-bottom: 0.8rem;
}

.legal-content a {
  color: var(--neon-green);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.legal-content a:hover {
  border-bottom-color: var(--neon-green);
}

.contact-info {
  background: rgba(13, 19, 32, 0.8);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 3rem 0;
}

/* Stats Counter */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-family: 'Press Start 2P', cursive;
  color: var(--neon-green);
  text-shadow: var(--glow-dim);
  display: block;
}

.stat-label {
  color: var(--text-secondary);
  margin-top: 0.5rem;
  font-size: 1rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(57, 255, 20, 0.1) 0%, transparent 100%);
  border: 2px solid var(--neon-green);
  border-radius: 20px;
  padding: 4rem 2rem;
  text-align: center;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.1) 0%, transparent 70%);
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-section > * {
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(13, 19, 32, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    transition: left 0.3s ease;
    border-right: 2px solid var(--border-color);
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  section {
    padding: 4rem 0;
  }

  .features-grid,
  .testimonials-grid,
  .steps-grid,
  .pricing-container {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .screenshot-item {
    width: 100px;
  }

  .lightbox-prev {
    left: -60px;
  }

  .lightbox-next {
    right: -60px;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1rem;
  }

  h3 {
    font-size: 0.8rem;
  }

  .container {
    padding: 0 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 1rem;
  }

  .logo {
    font-size: 0.8rem;
  }

  .app-icon {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }

  .app-icon-img {
    width: 70px;
    height: 70px;
    border-radius: 16px;
  }

  .screenshot-item {
    width: 80px;
    border-radius: 8px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-content {
    max-width: 90vw;
  }

  .price {
    font-size: 2rem;
  }

  .card {
    padding: 1.5rem;
  }

  .legal-content {
    padding: 7rem 1rem 2rem;
  }
}

/* Print Styles */
@media print {
  body::before,
  .grid-background,
  nav,
  .btn,
  footer {
    display: none;
  }

  body {
    background: white;
    color: black;
  }
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--neon-green);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
