/* Color Palette Styles */
html, body {

  margin: 0;
  padding: 0;
}

body {
  background: #111622;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
  gap: 1.5rem;
  max-width: 480px;
  width: 100%;
}

.swatch {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  box-shadow: 0 2px 8px #0002;
  border: 2px solid #29293d;
  cursor: pointer;
}

.color-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
}

.hex {
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  font-family: monospace;
  cursor: pointer;
  transition: color 0.2s;
}

.color-block:active .hex,
.color-block:focus .hex {
  color: #ffc759;
}

/* Color swatches */
.color-block[data-hex="#8b5cf6"] .swatch { background: #8b5cf6; }
.color-block[data-hex="#a684f5"] .swatch { background: #a684f5; }
.color-block[data-hex="#e2e7ee"] .swatch { background: #e2e7ee; }
.color-block[data-hex="#e380f9"] .swatch { background: #e380f9; }
.color-block[data-hex="#f0a3ff"] .swatch { background: #f0a3ff; }
.color-block[data-hex="#d4c6fc"] .swatch { background: #d4c6fc; }
.color-block[data-hex="#ded4f7"] .swatch { background: #ded4f7; }
.color-block[data-hex="#121212"] .swatch { background: #121212; }
.color-block[data-hex="#111622"] .swatch { background: #111622; }
.color-block[data-hex="#111122"] .swatch { background: #111122; }
.color-block[data-hex="#29293d"] .swatch { background: #29293d; }
.color-block[data-hex="#373644"] .swatch { background: #373644; }
.color-block[data-hex="#006C67"] .swatch { background: #006C67; }
.color-block[data-hex="#ffc759"] .swatch { background: #ffc759; }
.color-block[data-hex="#ff5724"] .swatch { background: #ff5724; }

/* Logo Section */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 800px;
}

.logo-item {
  border: rgb(255, 255, 255) 2px solid;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.logo-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.logo-image {
  width: 100%;
  height: auto;
  max-height: 100px;
  object-fit: contain;
}

.logo-title {
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
}

.logo-download {
  background: #8b5cf6;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s;
}

.logo-download:hover {
  background: #a684f5;
}
