:root {
  --bg-deep:       #0a0a0f;
  --bg-card:       #016100;
  --bg-panel:      #16162a;
  --accent-cyan:   #00e5ff;
  --accent-magenta:#00ff00;
  --accent-yellow: #f5c400;
  --accent-purple: #7b2fff;
  --text-primary:  #f0f0f8;
  --text-muted:    #7a9afa;
  --border:        rgba(0,229,255,0.15);
  --glow-cyan:     0 0 20px rgba(0,229,255,0.4);
  --glow-magenta:  0 0 20px rgba(0,255,0,0.4);
  --nav-height:    72px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: 'Radley', serif; 
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: 0.35;
}

/* ---- HEADER ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-height);
  background: rgba(10,10,15,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.nav-inner {
  max-width: 1200px; width: 100%; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-logo-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Radley', cursive; font-size: 0.7rem; font-weight: 900;
  color: var(--bg-deep);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name { font-family: 'Radley', cursive; font-size: 0.95rem; font-weight: 700; color: var(--text-primary); }
.nav-logo-sub { font-size: 0.65rem; font-weight: 300; color: var(--accent-cyan); letter-spacing: 0.2em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 0.2rem; list-style: none; }
.nav-links a {
  color: var(--text-primary); text-decoration: none;
  font-family: 'Radley', cursive; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.5rem 0.8rem; border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--accent-cyan); background: rgba(0,229,255,0.07); }
.nav-cta {
  background: #4B1D9E !important; color: #fff !important;
  box-shadow: 0 0 20px rgba(31,15,61,0.6); transition: box-shadow 0.2s, transform 0.2s !important;
}
.nav-cta:hover { transform: translateY(-1px) !important; box-shadow: 0 0 30px rgba(123,47,255,0.7) !important; background: #2d1660 !important; }

/* ---- HERO ---- */
.hero {
  position: relative; overflow: hidden;
  padding: 5rem 0 4rem;
  min-height: 85vh; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 50%, rgba(123,47,255,0.2) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(0,255,0,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 90% 10%, rgba(0,229,255,0.1) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-grid::before {
  content: '';
  position: absolute; inset: -50%;
  width: 200%; height: 200%;
  background:
    radial-gradient(ellipse 35% 25% at 20% 30%, rgba(0,229,255,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 45% 35% at 75% 20%, rgba(123,47,255,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 30% 40% at 60% 70%, rgba(0,255,0,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 30% at 10% 80%, rgba(0,100,255,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 25% 20% at 90% 60%, rgba(180,0,255,0.18) 0%, transparent 50%);
  animation: nebulaDrift 30s ease-in-out infinite alternate;
  filter: blur(30px);
}
.hero-grid::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 25%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 15%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 40% 60%, rgba(0,229,255,0.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 80%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 10%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 25% 75%, rgba(180,100,255,0.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 92% 45%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 5% 55%, rgba(0,229,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 63% 35%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 48% 88%, rgba(0,255,0,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 42%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 78% 67%, rgba(255,255,255,0.6) 0%, transparent 100%);
  animation: starTwinkle 6s ease-in-out infinite alternate;
}
@keyframes nebulaDrift {
  0%   { transform: translate(0%, 0%) rotate(0deg) scale(1); }
  33%  { transform: translate(3%, -4%) rotate(2deg) scale(1.05); }
  66%  { transform: translate(-4%, 3%) rotate(-1deg) scale(0.97); }
  100% { transform: translate(2%, 5%) rotate(3deg) scale(1.03); }
}
@keyframes starTwinkle {
  0%   { opacity: 0.6; }
  50%  { opacity: 1; }
  100% { opacity: 0.7; }
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; transform: translateY(-30px);
}
.hero-eyebrow {
  font-family: 'Radley', cursive; font-size: 0.72rem;
  color: var(--accent-cyan); letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Radley', cursive;
  font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 900; line-height: 1.08;
  margin-bottom: 1.5rem;
}
.hero-title .line-accent { color: var(--accent-magenta); }
.hero-title .line-dim { color: var(--text-muted); }
.hero-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 420px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Featured image placeholder */
.hero-featured { position: relative; }
.hero-img-wrap {
  width: 100%; aspect-ratio: 4/3; border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(123,47,255,0.25), 0 30px 80px rgba(0,0,0,0.6);
  background: linear-gradient(135deg, #1a1a35 0%, #0f1128 50%, #1a0a25 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-img-inner {
  text-align: center;
}
.hero-img-inner .art-placeholder {
  font-size: 5rem; display: block; margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 20px rgba(0,229,255,0.5));
}
.hero-img-inner p { font-family: 'Radley', cursive; font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.2em; }
.hero-featured-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,10,15,0.95));
  padding: 2.5rem 1.5rem 1.25rem; border-radius: 0 0 10px 10px;
}
.hero-featured-label span {
  font-family: 'Radley', cursive; font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-yellow);
}
.hero-featured-label p { font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-top: 0.2rem; }

/* ---- BUTTONS ---- */
.btn {
  display: block-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: 'Radley', cursive; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  border-radius: 4px; transition: all 0.25s;
}
.btn-primary {
  background: var(--accent-cyan); color: var(--bg-deep);
  box-shadow: var(--glow-cyan);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 35px rgba(0,229,255,0.6); }
.btn-outline {
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent-cyan); color: var(--accent-cyan); }


/* ============ WEBCOMIC STREAM STYLES ============ *//* ============ WEBCOMIC STREAM STYLES ============ */
/* ============ WEBCOMIC STREAM STYLES ============ */

.comic-viewer-section {
  padding: 0;
  background: var(--bg-deep);
  display: flex;
  justify-content: center;
  align-items: center;
}

.comic-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.comic-stream {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.comic-panel {
  width: 100%;
  max-width: 600px;
  margin: 0;
  padding: 0;
  line-height: 0;
  font-size: 0;
  display: block;
}

.comic-panel img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  vertical-align: bottom;
}

/* Comic Navigation Footer */
.comic-navigation-footer {
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  padding: 2rem 1rem;
  text-align: center;
}

.comic-nav-inner {
  max-width: 800px;
  margin: 0 auto;
}

.comic-navigation-footer h4 {
  font-family: 'Radley', cursive;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 1rem;
}

.episode-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 0.6rem 3rem;
  font-family: 'Radley', cursive;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  border: 3px solid var(--border);
  color: var(--text-muted);
  background: var(--bg-deep);
  transition: all 0.25s ease;
}

.episode-btn:hover {
  border-color: var(--accent-magenta);
  color: var(--text-primary);
  box-shadow: var(--glow-magenta);
}

.episode-btn.active {
  background: rgba(0, 229, 255, 0.08);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: var(--glow-cyan);
}

@media (max-width: 600px) {
  .episode-btn {
    width: 100%;
    text-align: center;
  }
}
/* ============ WEBCOMIC STREAM STYLES ============ */

/* ---- SECTION HELPERS ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-label {
  font-family: 'Radley', cursive; font-size: 0.62rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent-cyan);
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem;
}
.section-label::before { content: ''; display: block; width: 30px; height: 1px; background: var(--accent-cyan); }
.section-title {
  font-family: 'Radley', cursive;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem); font-weight: 900; line-height: 1.1;
  margin-bottom: 1rem;
}
.section-title em { font-style: normal; color: var(--accent-magenta); }

/* Content container - Updated to position below header */
.content {
    position: relative;
    z-index: 2;
    padding: 10px 20px 20px; /* Top padding to clear fixed header */
   margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    margin-top: 30px; /* push content 30px lower */
}
* Additional styles for genre page - Updated for wider container */
.genre-content-container {
    max-width: 700px; /* Increased from 600px */
    margin: 20px 0 10px;
    padding-left: 30px;
    background: rgba(0, 20, 0, 0.7);
    border-radius: 10px;
    border: 1px solid var(--fg1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    color: var(--fg1);
    text-align: center;
}
/* ---- GALLERY ---- */
.gallery-section { padding: 5rem 0; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 2.5rem;
}
.gallery-card img {
  width: 100%;
  height: 220px; /* Default height */
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.gallery-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-cyan);
  box-shadow: var(--glow-cyan);
}
.gallery-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  transition: transform 0.4s;
}
.gallery-card:hover .gallery-img-placeholder { transform: scale(1.04); }
.gallery-card-info { padding: 1rem 1.25rem 1.25rem; }
.gallery-card-info h3 {
 font-family: 'Radley', cursive; font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.05em; color: var(--text-primary);
}
.gallery-card-info p { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.2rem; }
.gallery-card-tag {
  position: absolute; top: 0.75rem; right: 0.75rem;
  background: rgba(10,10,15,0.85); backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  padding: 0.25rem 0.65rem; border-radius: 3px;
  font-family: 'Radley', cursive; font-size: 0.52rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent-cyan);
}
.gallery-cta-card {
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; padding: 2.5rem 2rem; text-align: center;
  background: var(--bg-panel);
}

/* ---- SERVICES ---- */
.services-section {
  padding: 4.5rem 0;
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2.5rem;
}
.service-card {
  padding: 1.75rem 1.5rem; border-radius: 8px;
  border: 1px solid var(--border); background: var(--bg-card);
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover { border-color: var(--accent-magenta); transform: translateY(-3px); }
.service-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.service-card h3 {
  font-family: 'Radley', cursive; font-size: 0.78rem;
  font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem;
}
.service-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }

/* ---- MUSIC ---- */

.music-player {
    background: #222;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    width: 300px;
    margin: 10px auto;
}

.track-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.controls button {
    margin: 5px;
    padding: 5px 10px;
    cursor: pointer;
}

.progress-container {
    margin: 10px 0;
}

.progress-bar,
.volume-bar {
    width: 100%;
}

/* Music Gallery Styles - Optimized for thinner viewports */
.musicgallery {
    max-width: 500px; /* Reduced from typical 700px+ for thinner viewports */
    margin: 15px auto;
    padding: 20px;
    background: rgba(2, 20, 50, 0.7);
    border-radius: 8px;
    border: 1px solid var(--accent-cyan);
    box-shadow: 0 3px 15px rgba(0,0,0,0.4);
    color: var(--bg-card);
    text-align: left;
    line-height: 1.4;
}

.musicgallery h1,
.musicgallery h2,
.musicgallery h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.3em; /* Smaller headings */
    color: var(--accent-yellow);
}

.musicgallery h1 {
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 20px;
}

.musicgallery p {
    font-size: 14px; /* Smaller paragraph text */
    line-height: 1.5;
    margin-bottom: 12px;
    max-width: 100%;
    text-align: left;
    color: var(--accent-cyan);
}

.musicgallery ul,
.musicgallery ol {
    font-size: 14px;
    line-height: 1.5;
    margin: 10px 0;
    padding-left: 20px;
}

.musicgallery li {
    margin-bottom: 8px;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .musicgallery {
        max-width: 95%;
        margin: 10px auto;
        padding: 15px;
    }
    
    .musicgallery p {
        font-size: 13px;
    }
    
    .musicgallery h1 {
        font-size: 1.3em;
    }
    
    .musicgallery h2,
    .musicgallery h3 {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .musicgallery {
        padding: 12px;
        margin: 8px;
        border-radius: 6px;
    }
    
    .musicgallery p {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    
    .musicgallery h1 {
        font-size: 1.2em;
        margin-bottom: 15px;
    }
    
    .musicgallery h2,
    .musicgallery h3 {
        font-size: 1.1em;
        margin-bottom: 10px;
    }
    
    .musicgallery ul,
    .musicgallery ol {
        font-size: 12px;
        padding-left: 15px;
    }
}
}
.cta-section > * { position: relative; }
.cta-section .section-label { justify-content: center; }
.cta-section p { color: var(--text-muted); max-width: 500px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  padding: 3.5rem 2rem 2rem;
  margin-top: 2rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem;
}
.footer-brand-name { font-family: 'Radley', cursive; font-size: 1.1rem; font-weight: 900; color: var(--text-primary); }
.footer-brand-sub { color: var(--accent-cyan); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 0.2rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.8rem; line-height: 1.55; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.25rem; flex-wrap: wrap; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 8px;
  border: 1px solid var(--border); color: var(--text-muted);
  font-family: 'Radley', cursive; font-size: 0.68rem;
  text-decoration: none; transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--accent-cyan); color: var(--accent-cyan); box-shadow: var(--glow-cyan); }
.footer-col h4 {
  font-family: 'Radley', cursive; font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent-magenta); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul a { color: var(--text-muted); text-decoration: none; font-size: 0.92rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--accent-cyan); }
.footer-bottom {
  max-width: 1200px; margin: 2rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.78rem; }
.footer-bottom a { color: var(--accent-cyan); text-decoration: none; }

/* ---- GALLERY COLORS ---- */
.gc-1 { background: linear-gradient(135deg, #1a1535 0%, #2a1050 100%); }
.gc-2 { background: linear-gradient(135deg, #0f1828 0%, #102030 100%); }
.gc-3 { background: linear-gradient(135deg, #1a2810 0%, #0f2015 100%); }
.gc-4 { background: linear-gradient(135deg, #281510 0%, #201008 100%); }
.gc-5 { background: linear-gradient(135deg, #101828 0%, #152030 100%); }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.fd1 { animation-delay: 0.05s; } .fd2 { animation-delay: 0.2s; }
.fd3 { animation-delay: 0.35s; } .fd4 { animation-delay: 0.5s; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .gallery-grid, .services-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .music-player { flex-direction: column; text-align: center; }
} /* Modern Dashboard Layout */
    .genre-content-container {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 20px;
    }

    /* Playlist Section */
    .genre-links {
        flex: 1;
        min-width: 250px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .music-link {
        padding: 15px 20px;
        background: #2a2a2a;
        color: #e0e0e0;
        border: 2px solid transparent;
        border-radius: 8px;
        text-align: left;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .music-link:hover {
        background: #3a3a3a;
        transform: translateX(5px);
    }

    .music-link.active {
        background: #4CAF50;
        color: white;
        border-color: #4CAF50;
        box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
    }

    /* Player & Content Section */
    .song-container, #default-message {
        flex: 2;
        min-width: 300px;
        background: #1e1e1e;
        color: #f5f5f5;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }

    .musicgallery h2 {
        margin-top: 0;
        color: #4CAF50;
        border-bottom: 2px solid #333;
        padding-bottom: 10px;
    }

    .musicgallery p {
        line-height: 1.6;
        color: #ccc;
    }

    /* Custom Player Controls */
    .music-player {
        background: #2a2a2a;
        padding: 20px;
        border-radius: 8px;
        margin-top: 20px;
    }

    .track-title {
        font-weight: bold;
        font-size: 1.2em;
        margin-bottom: 15px;
        color: #fff;
    }

    .controls {
        display: flex;
        gap: 10px;
        margin-bottom: 15px;
    }

    .controls button {
        padding: 10px 20px;
        background: #444;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        transition: background 0.2s;
    }

    .controls button:hover {
        background: #666;
    }

    /* Sliders */
    .progress-container, .volume-control {
        margin-top: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    input[type=range] {
        flex-grow: 1;
        accent-color: #4CAF50; /* Colors the slider path */
        cursor: pointer;
    }

    .volume-control label {
        font-size: 0.9em;
        color: #aaa;
    }

/* ============ INNER PAGE STYLES ============ */

/* Page hero banner (non-homepage) */
.page-hero {
  position: relative; overflow: hidden;
  padding: 5rem 0 3.5rem;
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(123,47,255,0.15) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 30%, rgba(0,229,255,0.08) 0%, transparent 60%);
}
.page-hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
}
.page-hero .breadcrumb {
  font-family: 'Radley', cursive; font-size: 0.72rem;
  color: var(--text-muted); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.page-hero .breadcrumb a { color: var(--accent-cyan); text-decoration: none; }
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 {
  font-family: 'Radley', cursive;
  font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 900; line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero h1 em { font-style: normal; color: var(--accent-cyan); }
.page-hero .lead {
  font-size: 1.1rem; color: var(--text-muted); max-width: 620px; line-height: 1.7;
}

/* Content section */
.content-section { padding: 4rem 0; }
.content-section .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.prose {
  font-size: 1.05rem; color: var(--text-muted); line-height: 1.0;
  max-width: 780px;
}
.prose p { margin-bottom: 1.00rem; }
.prose strong { color: var(--text-primary); }
.prose a { color: var(--accent-cyan); }

/* Image gallery grid */
.img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem; margin-top: 2.5rem;
}
.img-grid img {
  width: 100%; border-radius: 8px;
  border: 1px solid var(--border);
  display: block; transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  object-fit: cover;
}
.img-grid img:hover {
  transform: translateY(-3px);
  border-color: var(--accent-cyan);
  box-shadow: var(--glow-cyan);
}
.img-caption {
  font-size: 0.82rem; color: var(--text-muted);
 font-family: 'Radley', cursive; font-style: italic;
  margin-top: 0.5rem; text-align: center;
}

/* Sub-nav tabs (for genre/style selectors) */
.sub-tabs {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin: 2rem 0;
}
.sub-tabs a {
  padding: 0.6rem 1.4rem;
 font-family: 'Radley', cursive; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border-radius: 4px;
  border: 1px solid var(--border);
  color: var(--text-muted); background: var(--bg-card);
  transition: all 0.2s;
}
.sub-tabs a:hover, .sub-tabs a.active {
  border-color: var(--accent-cyan); color: var(--accent-cyan);
  background: rgba(0,229,255,0.07);
}

/* Info box */
.info-box {
  background: var(--bg-panel); border: 1px solid var(--border);
  border-left: 3px solid var(--accent-cyan);
  border-radius: 8px; padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}
.info-box p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin: 0; }
.info-box strong { color: var(--text-primary); }

/* Step list */
.step-list { list-style: none; margin: 1.5rem 0; padding: 0; }
.step-list li {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.25rem 0; border-bottom: 1px solid var(--border);
}
.step-list li:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,229,255,0.1); border: 1px solid var(--accent-cyan);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Radley', cursive; font-size: 0.8rem; font-weight: 700;
  color: var(--accent-cyan);
}
.step-list li div h4 {
  font-family: 'Radley', cursive; font-size: 0.9rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 0.25rem;
}
.step-list li div p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.55; }

/* Services grid (for services.php) */
.services-category { margin-bottom: 3.5rem; }
.services-category h3 {
  font-family: 'Radley', cursive; font-size: 1rem; font-weight: 700;
  color: var(--accent-green, #00ff00); margin-bottom: 1.25rem;
  display: flex; 
  justify-content: center; /* This centers the content horizontally */
  align-items: center; 
  gap: 0.75rem;
  text-align: center; /* This ensures text itself is centered */
}
.services-category h3::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.services-link-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}
.services-link-grid a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.25rem; border-radius: 8px;
  border: 1px solid var(--border); background: var(--bg-card);
  color: var(--text-primary); text-decoration: none;
  font-size: 0.92rem; transition: all 0.2s;
}
.services-link-grid a:hover {
  border-color: var(--accent-cyan); color: var(--accent-cyan);
  background: rgba(0,229,255,0.05);
}
.services-link-grid a::before { content: '→'; color: var(--accent-cyan); font-size: 0.8rem; }

/* Music player */
.track-list { margin-top: 2rem; }
.track-card {
  background: var(--bg-panel); border: 1px solid var(--border);	
  border-radius: 10px; padding: 1.5rem 1.75rem;
  margin-bottom: 1rem; transition: border-color 0.3s;
}
.track-card:hover { border-color: var(--accent-purple); }
.track-card h3 {
  font-family: 'Radley', cursive; font-size: 1rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 0.5rem;
}
.track-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }
.track-card audio { width: 100%; accent-color: var(--accent-cyan); }

/* About two-col */
.about-grid {
  display: grid; grid-template-columns: 2fr 1fr; gap: 3rem;
  align-items: start; margin-top: 1rem;
}
.about-sidebar {
  background: var(--bg-panel); border: 1px solid var(--border);
  border-radius: 10px; padding: 1.5rem;
  position: sticky; top: 90px;
}
.about-sidebar h4 {
  font-family: 'Radley', cursive; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent-cyan); margin-bottom: 1rem;
}
.about-sidebar ul { list-style: none; }
.about-sidebar ul li {
  padding: 0.4rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.9rem; color: var(--text-muted);
}
.about-sidebar ul li:last-child { border-bottom: none; }

.section-divider {
  border: none; border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}
.sub-heading {
 font-family: 'Radley', cursive; font-size: 1.1rem; font-weight: 700;
  color: var(--accent-green, #00ff00); margin: 2rem 0 0.75rem;
}

/* CTA inline */
.inline-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: 4px;
  background: var(--accent-cyan); color: var(--bg-deep);
  font-family: 'Radley', cursive; font-size: 0.8rem; font-weight: 700;
  text-decoration: none; margin-top: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--glow-cyan);
}
.inline-cta:hover { transform: translateY(-2px); box-shadow: 0 0 35px rgba(0,229,255,0.6); }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
  .gallery-card img {
    height: 180px; /* Smaller on mobile */
}
