* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  color: #f4f4f9;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #f4f4f9;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
}

.tile {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
  text-decoration: none;
  color: #f4f4f9;
  transition: transform 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.tile:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: #3b82f6;
}

.tile-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.tile-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.placeholder-icon {
  width: 64px;
  height: 64px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  border: 2px dashed #3b82f6;
}

.tile h2 {
  font-size: 1.5rem;
  margin: 10px 0;
  color: #f4f4f9;
}

.tile p {
  color: #94a3b8;
  font-size: 0.9rem;
}

.coming-soon {
  opacity: 0.7;
  cursor: not-allowed;
}

.footer {
  padding: 8px;
  font-size: 11px;
  color: #94a3b8;
  text-align: center;
  margin-top: 20px;
}

.footer a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

.footer a:hover {
  color: #3b82f6;
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }
  
  h1 {
    font-size: 2rem;
  }
}

.footer {
  padding: 8px;
  font-size: 11px;
  color: #94a3b8;
}

.footer a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

.footer a:hover {
  color: #3b82f6;
}