/* VerifiedAppstore Homepage Styles */

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  background-color: #f9f9f9;
  color: #333;
}

/* Header Section */
header {
  background-color: #ffffff;
  text-align: center;
  padding: 20px;
  border-bottom: 2px solid #e0e0e0;
}

header img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

header h1 {
  font-size: 2.2em;
  color: #0078D7;
  margin: 15px 0 5px;
}

header p {
  font-size: 1em;
  color: #555;
}

/* App Grid */
.apps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 40px;
}

.app-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.app-card img {
  max-width: 100px;
  margin-bottom: 15px;
}

.app-card h2 {
  font-size: 1.3em;
  color: #2c3e50;
  margin: 10px 0;
}

.app-card p {
  font-size: 0.95em;
  color: #666;
}

/* Download Button with Google Play Icon */
.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #0078D7;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.download-btn img {
  width: 20px;
  height: 20px;
}

.download-btn:hover {
  background-color: #005fa3;
  transform: scale(1.05);
}

.download-btn:active {
  background-color: #004c82;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border-top: 2px solid #e0e0e0;
  font-size: 0.9em;
  color: #777;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.8em;
  }
  .apps {
    padding: 20px;
  }
}
