/* AR City Builder CSS for Download Page */

/* Import global styles */
@import url('styles.css');

/* Download Page Styling */
.download-page {
  background: linear-gradient(135deg, var(--light-blue), var(--light-green));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="40" y="40" width="20" height="20" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
  position: relative;
  z-index: 2;
}

.download-page h1 {
  font-size: 48px;
  line-height: 1.07143;
  font-weight: 700;
  letter-spacing: -0.005em;
  margin-bottom: 16px;
  background: linear-gradient(to right, var(--primary-blue), var(--primary-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.download-page p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--dark-text);
}

/* Download Sections */
.download-sections {
  padding: 80px 0;
  background: var(--background);
}

.download-item {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  text-align: center;
  padding: 60px 40px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.download-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, var(--primary-blue), var(--light-green));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.download-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.download-item:hover::before {
  opacity: 0.6;
}

.download-item h2 {
  font-size: 32px;
  line-height: 1.07143;
  font-weight: 600;
  letter-spacing: 0em;
  margin-bottom: 16px;
  color: var(--dark-text);
}

.download-item p {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.016em;
  margin-bottom: 24px;
  color: var(--dark-text);
}

/* Buttons */
.download-item a.button-primary {
  background: linear-gradient(to right, var(--primary-blue), var(--primary-green));
  color: white;
  box-shadow: 0 4px 14px rgba(10, 115, 232, 0.4);
}

.download-item a.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 14px rgba(10, 115, 232, 0.6);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .download-page h1 {
    font-size: 36px;
  }

  .download-page p {
    font-size: 18px;
  }

  .download-item h2 {
    font-size: 28px;
  }

  .download-item p {
    font-size: 16px;
  }
}