/* styles.css */
:root {
  --bg-dark: #121212;
  --section-dark: #1e1e1e;
  --card-dark: #2a2a2a;
  --text-light: #e0e0e0;
  --text-muted: #bbb;
  --accent-red: #e50914;
  --accent-red-hover: #bf0812;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {
  background: #000;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .logo {
  font-size: 1.5rem;
  color: var(--accent-red);
  text-decoration: none;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}

.nav ul li a:hover {
  color: var(--accent-red);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
}

/* Hero */
.hero {
  background: url("images/hero-bg.jpg") center/cover no-repeat;
  background-blend-mode: multiply;
  background-color: rgba(0, 0, 0, 0.6);
  text-align: center;
  padding: 8rem 0;
  max-height: 500px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--accent-red);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.buttons .btn {
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-primary {
  background: var(--accent-red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-red-hover);
}

.btn-secondary {
  background: var(--section-dark);
  color: var(--text-light);
}

.btn-secondary:hover {
  background: #333;
}

/* Screenshots */
.screenshots {
  padding: 4rem 0;
  background: var(--section-dark);
  text-align: center;
}

.screenshots h2 {
  color: var(--accent-red);
  margin-bottom: 2rem;
  font-size: 2rem;
}

.carousel {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  min-width: 100%;
}

.carousel-item img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(229, 9, 20, 0.8);
  border: none;
  color: #fff;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 1.5rem;
}

.carousel-control.prev {
  left: 10px;
}
.carousel-control.next {
  right: 10px;
}

/* Features */
.features {
  padding: 4rem 0;
  background: var(--section-dark);
}

.features h2 {
  text-align: center;
  color: var(--accent-red);
  margin-bottom: 2rem;
  font-size: 2rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  background: var(--card-dark);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.feature-item label {
  display: flex;
  align-items: flex-start;
}

.feature-item input[type="checkbox"] {
  margin-right: 1rem;
  width: 20px;
  height: 20px;
  accent-color: var(--accent-red);
}

.feature-content h3 {
  margin-bottom: 0.5rem;
  color: #fff;
}

.feature-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Download */
.download {
  padding: 4rem 0;
  background: var(--section-dark);
  text-align: center;
}

.download h2 {
  color: var(--accent-red);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* Contact */
.contact {
  padding: 4rem 0;
  background: var(--section-dark);
}

.contact h2 {
  color: var(--accent-red);
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact form {
  display: grid;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact form input,
.contact form textarea {
  padding: 0.75rem;
  background: var(--card-dark);
  border: 1px solid #444;
  border-radius: 5px;
  color: var(--text-light);
  font-family: inherit;
}

.contact form button {
  justify-self: start;
  padding: 0.75rem 1.5rem;
  background: var(--accent-red);
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact form button:hover {
  background: var(--accent-red-hover);
}

/* Footer */
.footer {
  background: #000;
  color: var(--text-light);
  padding: 2rem 0;
  text-align: center;
}

.footer .socials img {
  filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width: 768px) {
  .nav ul {
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    display: none;
  }
  .nav.nav--open ul {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
}
