@import url("./navbar.css");

/* ================= BASE ================= */

body {
  margin: 0;
  font-family: "Josefin Sans", sans-serif;
  background: url("../assets/backgrounds/aura2.jpg") no-repeat center center fixed;
  background-size: cover;
  color: #fff;
}

/* overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: -1;
}

/* ================= CONTAINER ================= */

.main-container {
  max-width: 1100px;
  margin: 120px auto;
  padding: 20px;
}

/* ================= TITLE ================= */

.title {
  text-align: center;
  color: #ffd700;
  font-size: 2.5em;
  margin-bottom: 40px;
  text-shadow: 0 0 20px #4e62e0;
}

/* ================= LAUNCHER BOX ================= */

.launcher-box {
  display: flex;
  gap: 40px;
  align-items: center;

  background: rgba(15,15,35,0.75);
  backdrop-filter: blur(12px);

  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;

  border: 1px solid rgba(120,120,255,0.3);
  box-shadow: 0 0 30px rgba(80,80,255,0.3);

  transition: 0.3s;
}

.launcher-box:hover {
  transform: scale(1.01);
}

/* INFO */
.launcher-info h3 {
  font-size: 1.8em;
  color: #ffd700;
}

.launcher-info p {
  color: #ccc;
}

.launcher-info ul {
  margin: 15px 0;
  padding-left: 0;
  list-style: none;
}

.launcher-info li {
  margin-bottom: 6px;
  color: #7aa2ff;
}

/* BOTÓN PRINCIPAL */
.download-main-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 14px 28px;

  font-size: 1.1em;
  border-radius: 14px;

  background: linear-gradient(90deg,#5865F2,#7289DA);
  color: white;
  text-decoration: none;

  box-shadow: 0 0 20px rgba(88,101,242,0.5);
  transition: 0.2s;
}

.download-main-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px #5865F2;
}

/* PREVIEW */
.launcher-preview img {
  width: 320px;
  border-radius: 12px;
  box-shadow: 0 0 20px #000;
}

/* ================= CARDS ================= */

.card {
  background: rgba(20,20,40,0.7);
  backdrop-filter: blur(10px);

  border-radius: 16px;
  padding: 25px;
  margin-bottom: 25px;

  border: 1px solid rgba(120,120,255,0.2);
}

.card h3 {
  color: #ffd700;
  margin-bottom: 15px;
}

/* ================= BUTTONS ================= */

.download-btn {
  padding: 10px 20px;
  border-radius: 10px;

  background: rgba(88,101,242,0.2);
  border: 1px solid rgba(88,101,242,0.5);

  color: #cfd8ff;
  text-decoration: none;

  transition: 0.2s;
}

.download-btn:hover {
  background: #5865F2;
  color: white;
}

/* ================= TOOLS ================= */

.tools-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* ================= STEPS ================= */

.steps {
  display: grid;
  gap: 10px;
}

.step {
  background: rgba(255,255,255,0.05);
  padding: 10px;
  border-radius: 8px;
}

.step span {
  color: #ffd700;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
.launcher-box {
  display: flex;
  gap: 90px;
  align-items: center;
}

.launcher-info {
  flex: 1;
}

.launcher-preview {
  flex: 5.4; /* 🔥 más grande que el texto */
}

.launcher-preview img {
  width: 200%;
  border-radius: 94px;
  box-shadow: 0 0 40px rgba(0,0,0,0.9);
}
}