/* Background wallpaper */
.site-title {
    text-align: center;        /* centers horizontally */
    font-family: 'Verdana', sans-serif;
    font-size: 36px;
    color: #ff69b4;            /* neon pink */
    text-shadow: 
        0 0 5px #ff69b4, 
        0 0 10px #ff1493, 
        0 0 20px #ff69b4;     /* glowing Y2K effect */
    margin: 20px 0;
}
body {
  background-image: url("background/kkmanga.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  color: #FFFFFF;
  text-shadow: 1px 1px 2px #000000;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Navigation bar */
nav {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  text-align: center;
}

nav a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  margin: 0 15px;
  font-size: 18px;
}

nav a:hover {
  color: #FFA500;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #FFD700;
  text-shadow: 1px 1px 2px #000000;
}

/* Main content wrapper */
.main-content {
  background-color: rgba(0, 0, 0, 0.4);
  margin: 20px auto;
  padding: 20px;
  max-width: 900px;
  border-radius: 10px;
}

.prefecture-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.prefecture-list li {
  display: inline-block;                /* box fits text closely */
  background: linear-gradient(145deg, #ffffff, #c0e0ff); /* Y2K gradient */
  border: 2px solid #00f0ff;
  border-radius: 12px;
  padding: 8px 12px;                    /* minimal padding, just around text */
  box-shadow:
    2px 2px 6px rgba(0,0,0,0.4),
    inset 0 2px 4px rgba(255,255,255,0.6);
  transition: all 0.3s ease;
  text-align: center;
}

.prefecture-list li a {
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  font-size: 18px;
  font-family: 'Verdana', sans-serif;
}

.prefecture-list li a .kanji {
  display: block;
  font-size: 12px;
  color: #555555;
}

.prefecture-list li a:hover {
  color: #00f0ff;
  text-shadow: 0 0 5px #00f0ff, 0 0 10px #00c0ff;
  transform: scale(1.05);
}

.livehouse-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.livehouse-list li {
  display: inline-block;
  background: linear-gradient(145deg, #fffcf0, #ffd0c0); /* slight Y2K gradient */
  border: 2px solid #ff69b4;             /* neon pink border */
  border-radius: 12px;
  padding: 10px 15px;
  box-shadow:
    2px 2px 6px rgba(0,0,0,0.4),
    inset 0 2px 4px rgba(255,255,255,0.6);
  transition: all 0.3s ease;
  text-align: center;
}

.livehouse-list li a {
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  font-size: 16px;
  font-family: 'Verdana', sans-serif;
}

.livehouse-list li a:hover {
  color: #ff69b4;
  text-shadow: 0 0 5px #ff69b4, 0 0 10px #ff1493;
  transform: scale(1.05);
}

.email-link {
    color: #ff85c1;              /* softer, easier-on-the-eyes pink */
    text-decoration: none;
    font-weight: bold;
}

.email-link:hover {
    color: #ffb6d9;
    text-shadow: 0 0 5px #ff85c1, 0 0 10px #ffb6d9;
    transform: scale(1.05);
}


