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

/* =============================================
   HINTERGRUND-KACHEL
   =============================================
   Option 1: CSS Punkt-Raster (Standard)
   Option 2: Josuke Bild als Kachel
   Option 3: Beides kombiniert
   
   Für Option 2/3: Bild muss existieren!
   ============================================= */

body {
  background-color: #111d35;
  
  /* Option 1: Nur CSS Punkte (aktiv) */
  background-image:
    radial-gradient(circle at 1px 1px, rgba(80,120,200,.15) 1px, transparent 0);
  background-size: 26px 26px;
  background-repeat: repeat;
  
  
     
  background-image: url('josuke_tile.png');
  background-size: 100px 100px;
  background-repeat: repeat;
  
  

     
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(80,120,200,.15) 1px, transparent 0),
    url('josuke_tile.png');
  background-size: 26px 26px, 100px 100px;
  background-repeat: repeat, repeat;
  
  
  font-family: "Comic Sans MS", "Comic Neue", cursive;
  font-size: 14px;
  color: #111;
  min-height: 100vh;
}

.wrapper {
  max-width: 680px;
  margin: 0 auto;
  background: #eef2fa;
  border-left: 3px solid #111d35;
  border-right: 3px solid #111d35;
  min-height: 100vh;
  padding-bottom: 40px;
}

/* header */
.header {
  background: #111d35;
  color: #b8caee;
  text-align: center;
  padding: 14px 10px;
  font-size: 19px;
  font-weight: bold;
  letter-spacing: 2px;
  border-bottom: 3px solid #050a14;
}

/* top gif row */
.gif-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 8px 6px;
  background: #bfcfe8;
  border-bottom: 2px solid #111d35;
  flex-wrap: wrap;
}

.gif-row img {
  height: 68px;
  image-rendering: pixelated;
  border: 2px solid #111d35;
  display: block;
}

/* shrine label */
.shrine-label {
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: #111d35;
  padding: 7px 0 3px;
  letter-spacing: 1px;
  border-bottom: 1px solid #99aacc;
}

/* music bar */
.music-bar {
  background: #111d35;
  color: #b8caee;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 5px 14px;
  font-size: 11px;
  border-bottom: 2px solid #050a14;
  flex-wrap: wrap;
}

.song-title {
  font-style: italic;
  flex: 1;
  min-width: 100px;
  text-align: center;
  opacity: .85;
}

.music-btn {
  background: #b8caee;
  color: #111d35;
  border: none;
  padding: 2px 10px;
  cursor: pointer;
  font-family: inherit;
  font-weight: bold;
  font-size: 11px;
}

.music-btn:hover { background: #dde8ff; }

audio { display: none; }

/* content area */
.content { padding: 12px 18px; }

/* birthday box */
.birthday-box {
  background: #111d35;
  color: #b8caee;
  text-align: center;
  padding: 10px 14px;
  margin: 12px 0;
  border: 2px solid #050a14;
}

.birthday-box .days {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  display: block;
  line-height: 1.1;
}

.birthday-box .blabel {
  font-size: 11px;
  opacity: .7;
  margin-top: 3px;
  letter-spacing: 1px;
}

/* intro */
.intro {
  border: 2px solid #111d35;
  padding: 10px 14px;
  margin: 10px 0;
  background: #e4ecff;
  line-height: 1.8;
  font-size: 13px;
}

.intro .song-line {
  font-style: italic;
  color: #111d35;
  display: block;
  margin-bottom: 9px;
  font-size: 11.5px;
  opacity: .75;
  border-left: 3px solid #111d35;
  padding-left: 8px;
}

/* pat */
.pat-label {
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  margin: 14px 0 5px;
  color: #111d35;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.pat-wrap { text-align: center; margin: 5px 0 3px; }

.pat-wrap img {
  cursor: pointer;
  border: 3px solid #111d35;
  max-height: 175px;
  display: inline-block;
  transition: transform .07s;
}

.pat-wrap img:active { transform: scale(0.92); }

.pat-count {
  text-align: center;
  font-size: 12px;
  color: #111d35;
  margin: 5px 0 14px;
  font-weight: bold;
  letter-spacing: .5px;
}

hr {
  border: none;
  border-top: 2px dashed #111d35;
  margin: 14px 0;
}

/* gallery */
.gallery-img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  border: 3px solid #111d35;
}

.gallery-container {
  margin: 0 auto;
  text-align: center;
}

.caption {
  text-align: center;
  font-size: 12px;
  color: #111d35;
  margin: 4px 0 10px;
  letter-spacing: .5px;
}

.img-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 8px 0;
}

.img-row img {
  flex: 1;
  max-width: 48%;
  border: 3px solid #111d35;
  display: block;
}

.baka {
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: #7a0000;
  margin: 12px 0 4px;
  letter-spacing: 2px;
}

.footer {
  text-align: center;
  font-size: 11px;
  color: #555;
  margin-top: 22px;
  padding-top: 10px;
  border-top: 1px solid #99aacc;
}

.footer a { color: #111d35; }