@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
              url('assets/imgs/wallpaperflare.com_wallpaper.png') no-repeat center center fixed;
  color: #ffffff;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 50px;
}



.site-header {
    position: fixed;
    top: -25px;
    left: 20px;
    z-index: 100;
  }
  
  .site-logo {
    width: 120px;
    height: auto;
    border-radius: 8px; /* Optional: rounded logo */
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4); /* Optional: subtle shadow */
  }
  
header {
  text-align: center;
  padding: 50px 20px 30px;
}

header h1 {
  font-size: 2.8rem;
  color: #00ffd5;
}

header p {
  font-size: 1.4rem;
  color: #f1f1f1;
}

section {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
  padding: 0 20px;
}

section h2 {
  font-size: 1.8rem;
  color: #00ffd5;
  margin-bottom: 20px;
  border-left: 6px solid #00ffd5;
  padding-left: 10px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
}

.download-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1); /* fallback transparent */
  background-image: url('img/card-bg.jpg');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 18px;
  color: white;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(8px); /* blur behind the content */
  -webkit-backdrop-filter: blur(8px); /* safari support */
}


.download-card:hover {
  background: #2a2a45;
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 255, 213, 0.2);
}

.download-card span {
  margin-top: 10px;
  font-size: 1rem;
}

.app-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
