@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;700&display=swap');

body {
  margin: 0;
  padding: 0;
  background-color: #f2f4f7;
  font-family: 'Noto Sans KR', sans-serif;
  color: #1e1e1e;
}

/* ¸ÞÀÎ °øÅë ·¹ÀÌ¾Æ¿ô */
.container {
  max-width: 600px;
  margin: 80px auto;
  background: #ffffff;
  padding: 48px 40px;
  border-radius: 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
}

/* Á¦¸ñ ½ºÅ¸ÀÏ */
h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #1a1a1a;
}

/* º»¹® ¹®´Ü */
p {
  font-size: 18px;
  margin-bottom: 28px;
  color: #333;
}

/* ±âº» ¹öÆ° */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  margin: 8px;
  transition: all 0.3s ease;
}

/* ¹öÆ° »ö»ó */
.btn-primary {
  background-color: #1c2e4a;
  color: white;
}
.btn-primary:hover {
  background-color: #2f4c7e;
}

.btn-secondary {
  background-color: #e0e0e0;
  color: #333;
}
.btn-secondary:hover {
  background-color: #c5c5c5;
}

/* ·Î¶Ç °ø ½ºÅ¸ÀÏ */
.lotto-balls {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.ball {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1c2e4a, #2f4c7e);
  color: white;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Header ½ºÅ¸ÀÏ */
.site-header {
  background-color: #1c2e4a;
  padding: 20px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.header-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

.nav .nav-link {
  color: #ffffff;
  margin-left: 20px;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s;
}

.nav .nav-link:hover {
  color: #a3c5ff;
}

/* Footer ½ºÅ¸ÀÏ */
.site-footer {
  background-color: #f2f4f7;
  padding: 30px 0;
  text-align: center;
  font-size: 14px;
  color: #777;
  margin-top: 80px;
}

.site-footer a {
  color: #777;
  text-decoration: none;
  margin: 0 8px;
}

.site-footer a:hover {
  text-decoration: underline;
}

