/* Reset 스타일 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f9;
  color: #333;
  text-align: center;
}

/* 광고 배너 스타일 */
.banner, .footer-banner {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 10px 0;
}

.ad-banner {
  width: 320px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
}

/* 게임 메뉴 스타일 */
.menu {
  padding: 20px;
}

h1 {
  font-size: 1.8em;
  color: #4CAF50;
  margin-bottom: 0.5em;
}

p {
  margin-bottom: 1.5em;
  color: #666;
}

/* 게임 아이콘 그리드 */
.game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 400px;
  margin: 0 auto;
}

.game-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.game-icon:hover {
  transform: translateY(-5px);
}

.game-icon img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  margin-bottom: 0.5em;
}

.game-icon p {
  font-size: 1em;
  color: #333;
}
