/* Variables CSS para el tema gótico de Mu Online */
:root {
  --background: #1f2937;
  --foreground: #ffffff;
  --card: #374151;
  --card-foreground: #ffffff;
  --primary: #8b5cf6;
  --primary-foreground: #ffffff;
  --secondary: #ffcc00;
  --secondary-foreground: #1f2937;
  --accent: #ffcc00;
  --accent-foreground: #1f2937;
  --border: #4b5563;
  --muted: #6b7280;
  --destructive: #e3342f;
  --radius: 0.5rem;
}

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

body {
  font-family: "Open Sans", sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Corrigiendo la ruta de la imagen de fondo */
  background-image: url("../public/mu-online-fantasy-rpg-landscape-with-lorencia-castle.png"),
    radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 204, 0, 0.05) 0%, transparent 50%);
  background-size: cover, auto, auto;
  background-position: center, 25% 25%, 75% 75%;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-attachment: fixed;
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: rgba(31, 41, 55, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
  margin: 0;
}

.logo-subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--primary);
  margin-top: -5px;
}

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

.nav-link {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
  transform: translateY(-2px);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Agregando estilos para usuario logueado y botón admin */
.nav-user {
  color: var(--accent);
  font-weight: 600;
  padding: 0.5rem 1rem;
  background: rgba(255, 204, 0, 0.1);
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  text-shadow: 0 0 5px rgba(255, 204, 0, 0.3);
}

.nav-admin {
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid var(--primary);
  color: var(--primary);
}

.nav-admin:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}

/* Main Content */
.main {
  position: relative;
  z-index: 1;
}

/* Hero Section */
.hero {
  padding: 6rem 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(55, 65, 81, 0.9);
  padding: 3rem;
  border-radius: calc(var(--radius) * 2);
  border: 2px solid var(--accent);
  box-shadow: 0 0 30px rgba(255, 204, 0, 0.3);
}

.hero-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--accent);
  text-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--foreground);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: var(--accent);
  color: var(--accent-foreground);
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  margin-top: 1rem;
}

/* Sections */
.features,
.stats,
.news {
  padding: 5rem 0;
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
  margin-bottom: 3rem;
}

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

.feature-card {
  background: rgba(55, 65, 81, 0.9);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(255, 204, 0, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--foreground);
  line-height: 1.6;
}

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

.stat-card {
  background: rgba(55, 65, 81, 0.9);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--accent);
  box-shadow: 0 5px 20px rgba(255, 204, 0, 0.2);
}

.stat-number {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

.stat-label {
  color: var(--foreground);
  font-weight: 600;
  margin-top: 0.5rem;
}

/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.news-card {
  background: rgba(55, 65, 81, 0.9);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 8px 25px rgba(255, 204, 0, 0.2);
}

.news-date {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.news-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.news-excerpt {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.news-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.news-link:hover {
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
}

/* Auth Section Styles */
.auth-section {
  padding: 4rem 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.auth-container {
  max-width: 400px;
  margin: 0 auto;
  background: rgba(55, 65, 81, 0.95);
  padding: 2.5rem;
  border-radius: calc(var(--radius) * 2);
  border: 2px solid var(--accent);
  box-shadow: 0 0 30px rgba(255, 204, 0, 0.3);
}

.auth-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--accent);
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(31, 41, 55, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  color: var(--foreground);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

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

.error-message {
  background: rgba(227, 52, 47, 0.2);
  color: #ff6b6b;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid #ff6b6b;
  margin-bottom: 1rem;
  text-align: center;
}

.success-message {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid #4ade80;
  margin-bottom: 1rem;
  text-align: center;
}

.alert {
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  font-weight: 600;
}

.alert-success {
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid #22c55e;
  color: #22c55e;
}

.alert-error {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid #ef4444;
  color: #ef4444;
}

.auth-link {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--foreground);
}

.auth-link a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.auth-link a:hover {
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
}

/* News Detail Styles */
.news-detail {
  padding: 4rem 0;
}

.news-article {
  background: rgba(55, 65, 81, 0.95);
  padding: 3rem;
  border-radius: calc(var(--radius) * 2);
  border: 2px solid var(--accent);
  box-shadow: 0 0 30px rgba(255, 204, 0, 0.3);
  margin-bottom: 3rem;
}

.news-meta {
  margin-bottom: 1rem;
}

.news-article .news-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
  margin-bottom: 2rem;
}

.news-content {
  color: var(--foreground);
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Comments Section */
.comments-section {
  background: rgba(55, 65, 81, 0.95);
  padding: 2.5rem;
  border-radius: calc(var(--radius) * 2);
  border: 1px solid var(--border);
}

.comments-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 2rem;
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

.comment-form {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.login-prompt {
  text-align: center;
  padding: 2rem;
  background: rgba(139, 92, 246, 0.1);
  border-radius: var(--radius);
  border: 1px solid var(--primary);
  margin-bottom: 2rem;
}

.login-prompt a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.login-prompt a:hover {
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.7);
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comment {
  background: rgba(31, 41, 55, 0.8);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.comment:hover {
  border-color: var(--accent);
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.1);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.comment-author {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.comment-date {
  color: var(--muted);
  font-size: 0.8rem;
}

.comment-content {
  color: var(--foreground);
  line-height: 1.6;
}

.no-comments {
  text-align: center;
  color: var(--muted);
  font-style: italic;
  padding: 2rem;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.pagination-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(31, 41, 55, 0.8);
  color: var(--foreground);
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  font-weight: 600;
}

.pagination-link:hover {
  background: var(--accent);
  color: var(--accent-foreground);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.pagination-link.active {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

/* Footer */
.footer {
  background: rgba(31, 41, 55, 0.95);
  border-top: 2px solid var(--accent);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
}

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

.footer-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-text {
  color: var(--foreground);
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-menu {
    gap: 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .auth-container {
    margin: 0 1rem;
    padding: 2rem;
  }

  .news-article {
    padding: 2rem;
  }

  .news-article .news-title {
    font-size: 2rem;
  }

  .comments-section {
    padding: 2rem;
  }

  .comment-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .pagination {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .auth-container {
    padding: 1.5rem;
  }

  .auth-title {
    font-size: 1.5rem;
  }

  .news-article .news-title {
    font-size: 1.8rem;
  }

  .comments-title {
    font-size: 1.5rem;
  }
}

/* ===================================================
   DESCARGAS.CSS - Estilos para la página de descarga
   =================================================== */

/* Download Section Styles */
.download-section {
  padding: 4rem 0;
}

.download-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.download-description {
  font-size: 1.2rem;
  color: var(--foreground);
  margin-bottom: 4rem;
  line-height: 1.6;
  opacity: 0.9;
}

.download-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.download-card {
  background: rgba(55, 65, 81, 0.95);
  padding: 3rem 2rem;
  border-radius: calc(var(--radius) * 2);
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.download-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 204, 0, 0.1), transparent);
  transition: all 0.5s ease;
}

.download-card:hover::before {
  left: 100%;
}

.download-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(255, 204, 0, 0.3);
}

.download-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.5));
}

.download-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
  margin-bottom: 1rem;
}

.download-info {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.download-card .btn {
  font-size: 1.2rem;
  padding: 1.2rem 2.5rem;
  min-width: 200px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.download-card .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  z-index: -1;
}

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

/* Installation Guide Styles */
.installation-guide {
  background: rgba(55, 65, 81, 0.9);
  padding: 3rem;
  border-radius: calc(var(--radius) * 2);
  border: 1px solid var(--border);
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.guide-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
  margin-bottom: 2rem;
  text-align: center;
}

.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(31, 41, 55, 0.8);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.step:hover {
  border-color: var(--accent);
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.1);
  transform: translateX(5px);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--accent-foreground);
  font-weight: 900;
  font-size: 1.2rem;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
}

.step p {
  color: var(--foreground);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

/* Platform-specific styling */
.download-card:nth-child(1) {
  background: linear-gradient(135deg, rgba(55, 65, 81, 0.95) 0%, rgba(34, 197, 94, 0.1) 100%);
}

.download-card:nth-child(1) .download-icon {
  color: #22c55e;
  filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.5));
}

.download-card:nth-child(1):hover {
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.2);
}

.download-card:nth-child(2) {
  background: linear-gradient(135deg, rgba(55, 65, 81, 0.95) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.download-card:nth-child(2) .download-icon {
  color: var(--primary);
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.download-card:nth-child(2):hover {
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

/* Additional Information Boxes */
.info-box {
  margin-top: 3rem;
  text-align: center;
}

.info-card {
  padding: 2rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

.info-card h4 {
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.info-card p {
  margin: 0;
}

.info-recommendation {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid var(--primary);
}

.info-recommendation h4 {
  color: var(--primary);
}

.info-requirements {
  background: rgba(255, 204, 0, 0.1);
  border: 1px solid var(--accent);
}

.info-requirements h4 {
  color: var(--accent);
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.requirement-item strong {
  color: var(--accent);
}

.requirement-item p {
  margin: 0.5rem 0;
  color: var(--foreground);
}

/* ===================================================
   RESPONSIVE DESIGN PARA DESCARGAS
   =================================================== */

/* Tablet */
@media (max-width: 768px) {
  .download-options {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .download-card {
    padding: 2rem 1.5rem;
  }

  .download-title {
    font-size: 1.5rem;
  }

  .installation-guide {
    padding: 2rem;
    margin: 0 1rem;
  }

  .guide-title {
    font-size: 1.5rem;
  }

  .step {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .step-number {
    align-self: center;
  }

  .info-card {
    margin: 0 1rem 2rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .download-section {
    padding: 2rem 0;
  }

  .download-card {
    padding: 2rem 1rem;
  }

  .download-icon {
    font-size: 3rem;
  }

  .download-title {
    font-size: 1.3rem;
  }

  .download-card .btn {
    font-size: 1rem;
    padding: 1rem 2rem;
    min-width: auto;
    width: 100%;
  }

  .installation-guide {
    padding: 1.5rem;
  }

  .guide-title {
    font-size: 1.3rem;
  }

  .step {
    padding: 1rem;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

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

  .download-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

/* Extra small devices */
@media (max-width: 320px) {
  .download-card {
    padding: 1.5rem 0.5rem;
  }

  .download-title {
    font-size: 1.1rem;
  }

  .download-info {
    font-size: 0.9rem;
  }

  .installation-guide {
    padding: 1rem;
  }

  .guide-title {
    font-size: 1.2rem;
  }
}