/* 80s neon + glitch + kinetic layout */
:root {
  --bg: #000;
  --neon-pink: #ff0080;
  --neon-blue: #00e5ff;
  --neon-green: #39ff14;
  --font: 'Orbitron', sans-serif;
}

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

body {
  background: var(--bg);
  color: #eee;
  font-family: var(--font);
  line-height: 1.4;
}

header {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: rgba(0,0,0,0.8);
}

.logo {
  width: 50px;
  height: 50px;
  margin-right: 1rem;
}

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: var(--white);
  position: relative;
  font-weight: bold;
}

nav a:hover::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--neon-pink);
}

.hero {
  position: relative;
  text-align: center;
}

.hero img {
  width: 100%;
  height: auto;
  opacity: 0.85;
}

.hero h1 {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -30%);
  font-size: 4rem;
  color: var(--white);
  animation: glitch 1s infinite;
}

@keyframes glitch {
  0% { text-shadow: 2px 0 var(--white); }
  26% { text-shadow: -2px 0 var(--neon-green); }
  40% { text-shadow: 2px 0 var(--white); }
  67% { text-shadow: -2px 0 var(--neon-red); }
  80% { text-shadow: 2px 0 var(--neon-pink); }
}

section {
  padding: 3rem 1rem;
}

h2 {
  font-size: 2.5rem;
  color: var(--white);
  text-align: left;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.8rem;
  margin-top: 2rem;
  color: var(--neon-blue);
}

article {
  margin: 1rem 0;
  padding: 1rem;
  border-left: 4px solid var(--neon-green);
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.8rem;
  color: #555;
}

/* About section: kanji image + text side-by-side */
.about-container {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 0;
}

.about-kanji {
  flex: 0 0 auto;
  width: 200px;    /* adjust as you like */
  height: auto;
}

.about-text {
  flex: 1;
}

