.verified-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  padding-bottom: 100px;
  font-family: system-ui, -apple-system, sans-serif;
  min-height: calc(100vh - 45px);
}

.verified-apps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 60px;
  padding: 20px 0;
}

.verified-app {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.app-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  text-align: center;
}

.app-header a {
  text-decoration: none;
  color: inherit;
}

.app-header .icon {
  width: 150px;
  height: 150px;
  overflow: hidden;
  transition: transform 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.app-header .icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.app-header .icon:hover {
  transform: scale(1.1);
}

.app-header .icon-ios {
  border-radius: 44.74px;
}

.app-header .icon-windows {
  border-radius: 8px;
}

.app-header h2 {
  font-size: 1.5em;
  margin: 0;
  font-weight: 600;
}

.verified-content {
  width: 100%;
}

.revenuecat-iframe {
  width: 100%;
  height: 600px;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  display: block;
}

.no-revenuecat {
  background-color: #f0f0f0;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  color: #999;
  font-size: 1.1em;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-revenuecat p {
  margin: 0;
}

/* Responsive design */
@media (max-width: 768px) {
  .verified-apps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .verified-container h1 {
    font-size: 2em;
  }

  .verified-container .subtitle {
    font-size: 1em;
  }

  .app-header .icon {
    width: 120px;
    height: 120px;
  }

  .app-header h2 {
    font-size: 1.3em;
  }

  .revenuecat-iframe {
    height: 400px;
  }
}
