/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #120000;
  color: #f8e6ff;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Fonts */
h1, h2, h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

code, .terminal {
  font-family: 'Source Code Pro', monospace;
  background: #3a0000;
  color: #ff6b35;
  padding: 2px 6px;
  border-radius: 4px;
}

h1 {
  font-size: 3.8rem;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 0 0 15px rgba(255, 87, 87, 0.5);
}

h2 {
  font-size: 2.6rem;
  margin-bottom: 2.5rem;
  text-align: center;
  background: linear-gradient(90deg, #ff5757, #ff8787, #d62828);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 {
  font-size: 1.6rem;
  color: #ffe5e5;
  margin-bottom: 0.8rem;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 50, 50, 0.3) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255, 100, 0, 0.2) 0%, transparent 30%),
    linear-gradient(135deg, #d62828 0%, #800000 50%, #3a0000 100%);
  background-size: 400% 400%;
  animation: gradientPulse 15s ease infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

@keyframes gradientPulse {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-content {
  z-index: 10;
  max-width: 800px;
  padding: 2rem;
}

.logo-text {
  font-size: 4.5rem;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(255, 87, 87, 0.6);
}

.tagline {
  font-size: 1.5rem;
  color: #ffadad;
  margin: 1.5rem 0;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(45deg, #d62828, #ff5757);
  color: white;
  padding: 1.1rem 2.8rem;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 60px;
  text-decoration: none;
  box-shadow: 0 6px 25px rgba(230, 57, 70, 0.5);
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.7);
  background: linear-gradient(45deg, #ff5757, #d62828);
}

/* Features Section */
.features-section {
  padding: 6rem 2rem;
  background: #1a0000;
}

.features-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #ff6b6b;
}

.features-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(214, 40, 40, 0.1);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 87, 87, 0.3);
}

.features-list li {
  font-size: 1.25rem;
  margin: 1.2rem 0;
  color: #ffd6d6;
  position: relative;
  padding-left: 30px;
}

.features-list li::before {
  content: "🔥";
  position: absolute;
  left: 0;
  top: 0;
}

/* Screenshots Section */
.screenshots-section {
  padding: 6rem 2rem;
  background: #0e0000;
  text-align: center;
}

.screenshots-section h2 {
  color: #ff5757;
  margin-bottom: 3rem;
}

.screenshots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem;
  margin-top: 2rem;
}

.screenshots img {
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
  max-width: 48%;
  height: auto;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 87, 87, 0.4);
}

.screenshots img:hover {
  transform: scale(1.04);
  box-shadow: 0 16px 40px rgba(255, 87, 87, 0.4);
}

/* Requirements Section */
.requirements-section {
  padding: 6rem 2rem;
  background: #150000;
}

.requirements-section h2 {
  text-align: center;
  color: #ff8787;
  margin-bottom: 2.5rem;
}

.requirements-section ul {
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
  background: rgba(255, 69, 69, 0.08);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 100, 100, 0.2);
}

.requirements-section ul li {
  font-size: 1.2rem;
  color: #ffe0e0;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.requirements-section ul li::before {
  content: "⚙️";
}

/* Download Section */
.download-section {
  padding: 6rem 2rem;
  text-align: center;
  background: #1a0000;
}

.download-section h2 {
  color: #ff5757;
  margin-bottom: 2rem;
}

.btn-download {
  display: inline-block;
  background: linear-gradient(45deg, #ff3838, #d62828);
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 1.2rem 3rem;
  border-radius: 60px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(255, 56, 56, 0.4);
  transition: all 0.35s ease;
}

.btn-download:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 40px rgba(255, 56, 56, 0.6);
  background: linear-gradient(45deg, #d62828, #ff3838);
}

/* Comparison Section */
.comparison-section {
  padding: 6rem 2rem;
  background: #100000;
}

.comparison-section h2 {
  text-align: center;
  color: #ff7a7a;
  margin-bottom: 3rem;
}

.comparison-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  background: rgba(214, 40, 40, 0.15);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 87, 87, 0.3);
}

.comparison-table th,
.comparison-table td {
  padding: 1.2rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
  background: linear-gradient(to right, #d62828, #ff5757);
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.comparison-table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table tr:hover {
  background: rgba(255, 87, 87, 0.1);
}