body {
  font-family: sans-serif;
  background: #f5f5f5;
  text-align: center;
  margin: 0;
  padding: 20px;
  padding-bottom: 50px; /* space for privacy bar so content isn't covered */
}

h1 {
  font-size: 2em;
  margin-bottom: 20px;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: auto;
}

.app-icon {
  cursor: pointer;
  transition: transform 0.2s;
}

.app-icon:hover {
  transform: scale(1.05);
}

.app-icon img {
  width: 80px;
  height: 80px;
  border-radius: 20%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.app-icon p {
  margin-top: 8px;
  font-weight: bold;
  font-size: 14px;
  color: #333;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: left;
  max-width: 400px;
  margin: auto;
}

.close {
  float: right;
  font-size: 24px;
  cursor: pointer;
}

/* Base style: full-width bar fixed at bottom */
.privacy-button {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;           /* full width */
  background: #333;
  color: white;
  padding: 14px 0;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: block;
    cursor: pointer;
  transition: background 0.2s ease;
}

/* Hover effect */
.privacy-button:hover {
  background: #555;
}

/* Mobile: smaller button at bottom-right */
@media (max-width: 600px) {
  .privacy-button {
    width: auto;
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 8px;
    right: 10px;
    bottom: 10px;
    left: auto;
    display: inline-block;
  }
}
.logo-container {
  text-align: center;
  margin-bottom: 15px;
  padding: 10px;  /* optional, adds some spacing */
}
.logo {
  width: 360px;      /* Fixed width for desktop */
  height: auto;      /* Keep aspect ratio */
  display: block;
  margin: 0 auto 15px auto; /* center + margin bottom */
  max-width: 100%;   /* prevent overflow on small screens */
}

@media (max-width: 600px) {
  .logo {
    width: 120px;    /* Smaller fixed width on mobile */
  }
}





