/* Ashnikko Shrine CSS */

/* Body styling for shrine vibe */
body {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #f7f7f7;
  font-family: 'Montserrat', 'Arial', sans-serif;
  margin: 0;
  padding: 0;
}

/* Shrine container */
.shrine-container {
  max-width: 800px;
  margin: 40px auto;
  background: rgba(34, 40, 49, 0.95);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.3);
  padding: 32px;
  text-align: center;
}

/* Shrine title */
.shrine-title {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #00fff5;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px #00fff5aa;
}

/* Shrine image */
.shrine-image {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #00fff5;
  box-shadow: 0 4px 24px #00fff5aa;
  margin-bottom: 24px;
}

/* Shrine description */
.shrine-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #f7f7f7;
  margin-bottom: 24px;
}

/* Shrine links */
.shrine-links a {
  display: inline-block;
  margin: 0 12px;
  padding: 10px 24px;
  background: #00fff5;
  color: #16213e;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.shrine-links a:hover {
  background: #16213e;
  color: #00fff5;
  border: 2px solid #00fff5;
}

/* Decorative glowing effect */
.shrine-glow {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle at 50% 30%, #00fff5 0%, transparent 70%);
  opacity: 0.3;
}

/* Album section grid */
.albums {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

/* Individual album card */
.album {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s;
}

.album:hover {
  transform: scale(1.04);
  background: rgba(255, 0, 200, 0.12);
}

/* Album image */
.album .shrine-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

/* Album title */
.album h3 {
  margin: 0.5rem 0 0.25rem 0;
  font-size: 1.2rem;
  color: #e040fb;
  letter-spacing: 1px;
}

/* Album description */
.album p {
  font-size: 1rem;
  color: #fff;
  opacity: 0.85;
}

/* Shrine links styling */
.shrine-links {
  margin-top: 2rem;
  text-align: center;
}

.shrine-links a {
  display: inline-block;
  margin: 0 0.75rem;
  padding: 0.5rem 1.2rem;
  background: #e040fb;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
}

.shrine-links a:hover {
  background: #ff8ae2;
  color: #222;
}