:root {
  --primary-color: #ffb800;
  --secondary-color: #000000;
  --text-color: #ffffff;
  --background-color: #1a1a1a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("assets/hero-bg.jpg") center/cover fixed;
}

.texture {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-top: 35px;
  background-image: radial-gradient(
    rgba(145, 145, 145, 0.15) 1.5px,
    transparent 1.5px
  );
  background-size: 4px 4px;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards 0.8s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.pedigree-logo {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 101;
}

.pedigree-logo img {
  width: 80px;
  height: auto;
  opacity: 0.95;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
}

.main-logo {
  margin-top: 60px;
  margin-bottom: 2rem;
}

.main-logo img {
  width: 400px;
  height: auto;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.download-container {
  background: rgba(0, 0, 0, 0.7);
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  width: 100%;
  margin: 2rem auto;
  margin-top: 100px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.download-info {
  margin-bottom: 2rem;
}

.download-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 1rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

.download-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
}

.battersea-logo {
  height: 30px;
  vertical-align: middle;
  margin-left: 0.5rem;
  background-color: white;
  padding: 5px 10px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.battersea-logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.5s;
}

.battersea-logo:hover::before {
  left: 100%;
}

.battersea-logo:hover {
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.download-details {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: #888;
}

.features h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1180px) {
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

.feature-card {
  background: rgba(255, 184, 0, 0.1);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 64px !important;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: block;
  transition: transform 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

footer {
  background: rgba(0, 0, 0, 0.9);
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 184, 0, 0.2);
  position: relative;
  backdrop-filter: blur(10px);
}

.developer-info {
  margin-top: 1rem;
  color: #888;
}

.developer-info a {
  color: #c78f00;
}

@media (max-width: 768px) {
  .pedigree-logo img {
    width: 80px;
  }

  .main-logo img {
    width: 280px;
  }

  h2 {
    font-size: 1.2rem;
  }

  .download-details {
    flex-direction: column;
    gap: 1rem;
  }
}
