body {
    margin: 0;
    font-family: 'Brush Script MT', cursive;
    background: #111827;
    color: #f9fafb;
    min-height: 100vh;
}

.page {
    flex: 1;
    display: flex;
}

.container {
  justify-content: center;
  align-items: center;
  max-width: 600px;
  width: 100%;
  padding: 20px;
  text-align: center;
}

h1 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.icon-card {
  background: #1f2937;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #f9fafb;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.icon-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  background: #111827;
}

.icon-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 8px;
  overflow: hidden;
}

.icon-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon-label {
  font-size: 0.7rem;
  margin-top: 4px;
  opacity: 0.9;
}

.icon-label-ofo {
  font-size: 0.7rem;
  margin-top: 4px;
  color: red;
  opacity: 0.9;
}

nav {
  background: #222;
  color: white;
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo {
  font-size: 1.4rem;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
}

nav ul li a:hover {
  color: #00aaff;
}

.dropdown-content {
  position: absolute;
  top: 35px;
  left: 0;
  background: #333;
  min-width: 170px;
  border-radius: 6px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.dropdown-content a {
  padding: 10px 15px;
  color: white;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background: #444;
}

li:hover .dropdown-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.content {
  padding: 40px;
  text-align: center;
}
