/* ==========================================================================
   CLEO ICE QUEEN — OFFICIAL STATIC WEBSITE STYLESHEET
   Theme: Icy Glamour / Platinum Frost / Sapphire Royalty
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800;900&family=Montserrat:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-primary: #080c14;
  --bg-secondary: #0d1527;
  --bg-tertiary: #131e36;
  --bg-card: rgba(16, 26, 48, 0.75);
  --bg-card-hover: rgba(24, 38, 70, 0.9);
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-frost: #e0f2fe;

  --ice-100: #f0f9ff;
  --ice-200: #e0f2fe;
  --ice-300: #bae6fd;
  --ice-400: #7dd3fc;
  --ice-500: #38bdf8;
  --ice-600: #0284c7;

  --sapphire-900: #0f172a;
  --sapphire-800: #1e293b;
  --sapphire-700: #1e3a8a;
  --sapphire-accent: #2563eb;

  --platinum: #e2e8f0;
  --silver-glow: rgba(226, 232, 240, 0.25);
  --gold-accent: #f59e0b;
  --gold-light: #fef3c7;

  --border-subtle: rgba(186, 230, 253, 0.15);
  --border-glow: rgba(56, 189, 248, 0.4);
  --glass-blur: blur(16px);
  --shadow-frost: 0 10px 30px -10px rgba(56, 189, 248, 0.2);
  --shadow-glow: 0 0 25px rgba(56, 189, 248, 0.35);

  /* Typography */
  --font-display: 'Cinzel', serif, system-ui;
  --font-body: 'Plus Jakarta Sans', sans-serif, system-ui;
  --font-accent: 'Montserrat', sans-serif, system-ui;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 80px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(56, 189, 248, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(30, 58, 138, 0.22) 0%, transparent 50%),
    radial-gradient(circle at 50% 30%, rgba(224, 242, 254, 0.06) 0%, transparent 60%);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Background Diamond & Snowflake Rain Canvas */
#iceCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Subtle Shimmer & Sparkle Keyframe Animations */
@keyframes diamondShimmer {
  0%, 100% { opacity: 0.4; transform: scale(0.95); filter: drop-shadow(0 0 4px var(--ice-400)); }
  50% { opacity: 1; transform: scale(1.1); filter: drop-shadow(0 0 12px #ffffff); }
}

@keyframes frostGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(56, 189, 248, 0.25); }
  50% { box-shadow: 0 0 35px rgba(186, 230, 253, 0.55), 0 0 10px rgba(255, 255, 255, 0.4); }
}

@keyframes textSparkle {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.sparkle-icon {
  display: inline-block;
  animation: diamondShimmer 3s ease-in-out infinite;
  color: var(--ice-300);
}

.frost-text {
  background: linear-gradient(90deg, #ffffff 0%, #bae6fd 25%, #ffffff 50%, #38bdf8 75%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textSparkle 6s linear infinite;
  display: inline-block;
}

/* Layout Wrapper */
.main-wrapper {
  flex: 1;
  position: relative;
  z-index: 2;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-sm {
  max-width: 900px;
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
}

h4 {
  font-size: 1.2rem;
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

p.lead {
  font-size: 1.25rem;
  color: var(--text-frost);
  line-height: 1.7;
}

a {
  color: var(--ice-400);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: #ffffff;
}

/* Shimmer & Frost Text Accent */
.frost-text {
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 30%, #7dd3fc 70%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gold-text {
  background: linear-gradient(135deg, #fef3c7 0%, #f59e0b 60%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.eyebrow {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--ice-400);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.75rem;
}

.eyebrow::before, .eyebrow::after {
  content: "✧";
  color: var(--ice-300);
  font-size: 0.9rem;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  transition: background var(--transition-normal), border var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(6, 9, 15, 0.96);
  border-bottom-color: var(--border-glow);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.8);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.4));
  transition: transform var(--transition-fast);
}

.brand-logo:hover img {
  transform: scale(1.03);
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
}

.brand-logo-text .name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  color: #ffffff;
  line-height: 1.1;
}

.brand-logo-text .title {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--ice-400);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--ice-200);
}

.nav-link.active {
  color: #ffffff;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--ice-400), #ffffff);
  box-shadow: 0 0 10px var(--ice-400);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(30, 58, 138, 0.4));
  border: 1px solid var(--border-glow);
  color: #ffffff;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--ice-500), var(--sapphire-700));
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 1.5rem;
  padding: 8px 12px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mobile-toggle:hover {
  background: rgba(56, 189, 248, 0.1);
  border-color: var(--ice-400);
}

/* Mobile Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--nav-height));
  background: rgba(8, 12, 20, 0.98);
  backdrop-filter: blur(20px);
  padding: 32px 24px;
  flex-direction: column;
  gap: 20px;
  z-index: 999;
  border-top: 1px solid var(--border-subtle);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
  pointer-events: none;
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  display: flex;
}

.mobile-nav-drawer .nav-link {
  font-size: 1.15rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: block;
}

/* ==========================================================================
   BUTTONS & INTERACTIVE ELEMENTS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #38bdf8 0%, #0284c7 50%, #1e3a8a 100%);
  color: #ffffff;
  border-color: rgba(224, 242, 254, 0.3);
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #7dd3fc 0%, #0284c7 60%, #1d4ed8 100%);
  box-shadow: 0 6px 28px rgba(56, 189, 248, 0.55);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-outline {
  background: rgba(16, 26, 48, 0.6);
  color: var(--ice-200);
  border-color: var(--border-glow);
  backdrop-filter: var(--glass-blur);
}

.btn-outline:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(56, 189, 248, 0.25);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #b45309 100%);
  color: #0f172a;
  font-weight: 800;
  border-color: rgba(254, 243, 199, 0.4);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #fde68a 0%, #fbbf24 60%, #d97706 100%);
  box-shadow: 0 6px 25px rgba(245, 158, 11, 0.5);
  transform: translateY(-2px);
  color: #0f172a;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}

/* ==========================================================================
   CARDS & CONTAINERS
   ========================================================================== */
.card-glass {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.card-glass:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-frost);
  transform: translateY(-3px);
}

/* Crystalline corner accent */
.card-glass::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, transparent 50%, rgba(56, 189, 248, 0.15) 100%);
  pointer-events: none;
}

/* Section Decorators */
.section {
  padding: 90px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 55px auto;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--ice-400), transparent);
  margin: 16px auto 24px auto;
}

.section-header.text-left .section-divider {
  margin-left: 0;
}

/* ==========================================================================
   HERO SECTION (HOME)
   ========================================================================== */
.hero-section {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  position: relative;
  padding: 60px 0 80px 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-title {
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ice-300);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 580px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 28px;
}

.hero-badge-item {
  display: flex;
  flex-direction: column;
}

.hero-badge-item .num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
}

.hero-badge-item .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glow);
  box-shadow: var(--shadow-glow), 0 20px 50px rgba(0, 0, 0, 0.9);
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-image-frame img {
  width: 100%;
  height: auto;
  max-height: 560px;
  min-height: 380px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform var(--transition-slow);
}

.hero-image-frame:hover img {
  transform: scale(1.03);
}

.hero-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(0deg, rgba(8, 12, 20, 0.95) 0%, rgba(8, 12, 20, 0.5) 60%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-image-caption h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.hero-image-caption p {
  color: var(--ice-400);
  font-size: 0.85rem;
  margin: 0;
  font-family: var(--font-accent);
}

/* Diamond Floating Badges */
.floating-crystal {
  position: absolute;
  padding: 12px 20px;
  background: rgba(13, 21, 39, 0.85);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  z-index: 4;
}

.floating-crystal.top-right {
  top: -15px;
  right: -15px;
}

.floating-crystal.bottom-left {
  bottom: 25px;
  left: -25px;
}

.floating-crystal .tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ice-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.floating-crystal .val {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

/* ==========================================================================
   HIGHLIGHT BENTO GRID (HOME QUICK LINKS)
   ========================================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.bento-col-4 {
  grid-column: span 4;
}

.bento-col-6 {
  grid-column: span 6;
}

.bento-col-8 {
  grid-column: span 8;
}

.bento-col-12 {
  grid-column: span 12;
}

.bento-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--ice-400);
  margin-bottom: 20px;
}

.bento-footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bento-link {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ice-400);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.bento-card:hover .bento-link {
  color: #ffffff;
  gap: 10px;
}

/* ==========================================================================
   PAGE BANNER (INTERNAL PAGES)
   ========================================================================== */
.page-banner {
  padding: 70px 0 50px 0;
  position: relative;
  background: linear-gradient(180deg, rgba(13, 21, 39, 0.8) 0%, rgba(8, 12, 20, 0.95) 100%);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.page-banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-banner h1 {
  margin-bottom: 12px;
}

.page-banner p {
  font-size: 1.15rem;
  color: var(--ice-200);
  margin-bottom: 0;
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.about-image-sticky {
  position: sticky;
  top: 110px;
}

.about-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glow);
  box-shadow: var(--shadow-frost);
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 5;
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.bio-card-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.bio-stat-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  padding: 16px;
  border-radius: var(--radius-sm);
}

.bio-stat-item .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bio-stat-item .val {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #ffffff;
  font-weight: 700;
  margin-top: 4px;
}

/* Career Timeline */
.timeline {
  position: relative;
  padding-left: 32px;
  margin: 36px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--ice-400), var(--sapphire-700), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ice-400);
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 10px var(--ice-400);
}

.timeline-year {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ice-300);
  letter-spacing: 0.1em;
}

.timeline-title {
  font-size: 1.15rem;
  color: #ffffff;
  margin: 4px 0 8px 0;
}

/* ==========================================================================
   MUSIC PAGE
   ========================================================================== */
.album-featured {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, rgba(16, 26, 48, 0.9) 0%, rgba(13, 21, 39, 0.95) 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-glow);
  margin-bottom: 60px;
}

.album-cover-art {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glow);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
  aspect-ratio: 1 / 1;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 360px;
  width: 100%;
}

.album-cover-art.album-cover-poster {
  aspect-ratio: 4 / 5;
  max-width: 360px;
  width: 100%;
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9), 0 0 35px rgba(245, 158, 11, 0.25);
}

.album-cover-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.album-info h3 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.album-meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 20px 0;
}

.badge-tag {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid var(--border-subtle);
  color: var(--ice-300);
}

.badge-tag.gold {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.3);
  color: #fde68a;
}

/* Tracklist Grid */
.tracklist-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.track-side-box {
  background: rgba(8, 12, 20, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.track-side-header {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ice-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
}

.track-list {
  list-style: none;
}

.track-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 6px;
  transition: background var(--transition-fast);
  cursor: pointer;
}

.track-item:hover {
  background: rgba(56, 189, 248, 0.1);
}

.track-item.active {
  background: rgba(56, 189, 248, 0.2);
  border-left: 3px solid var(--ice-400);
}

.track-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.track-num {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  width: 20px;
}

.track-name {
  font-size: 0.92rem;
  color: #ffffff;
  font-weight: 500;
}

.track-duration {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Singles & Features Grid */
.singles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.single-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.single-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.single-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--sapphire-700), var(--ice-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ffffff;
  flex-shrink: 0;
}

.streaming-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-family: var(--font-accent);
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.stream-btn:hover {
  background: rgba(56, 189, 248, 0.2);
  border-color: var(--ice-400);
  color: #ffffff;
}

/* Interactive Player Bar UI */
.interactive-player-bar {
  background: rgba(13, 21, 39, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow-glow);
}

.player-track-info {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 220px;
}

.player-thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ice-400);
  font-size: 1.2rem;
  border: 1px solid var(--border-subtle);
}

.player-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 500px;
}

.player-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.play-pause-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ice-400), var(--ice-600));
  border: none;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 15px var(--ice-400);
  transition: transform var(--transition-fast);
}

.play-pause-btn:hover {
  transform: scale(1.08);
}

.player-progress-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.progress-bar-bg {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

.progress-bar-fill {
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, var(--ice-400), #ffffff);
  border-radius: 2px;
}

/* ==========================================================================
   TV & MEDIA PAGE
   ========================================================================== */
.tv-hero-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.tv-broadcast-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 14px;
  background: linear-gradient(145deg, rgba(16, 26, 48, 0.96) 0%, rgba(8, 14, 26, 0.98) 100%);
  border: 1px solid var(--border-glow);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(56, 189, 248, 0.18);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  width: 100%;
}

.tv-broadcast-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.95), 0 0 45px rgba(56, 189, 248, 0.3);
  border-color: rgba(56, 189, 248, 0.7);
}

.tv-broadcast-frame.gold-broadcast {
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(245, 158, 11, 0.18);
}

.tv-broadcast-frame.gold-broadcast:hover {
  border-color: rgba(245, 158, 11, 0.8);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.95), 0 0 45px rgba(245, 158, 11, 0.35);
}

.tv-screen-bar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 8px 12px 8px;
  font-family: var(--font-accent);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.18);
  border: 1px solid rgba(239, 68, 68, 0.55);
  color: #fca5a5;
  padding: 4px 12px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.72rem;
}

.live-indicator.gold {
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.55);
  color: #fde68a;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 8px #ef4444;
  animation: liveDotPulse 1.8s infinite ease-in-out;
}

.live-dot.gold {
  background: #f59e0b;
  box-shadow: 0 0 8px #f59e0b;
}

@keyframes liveDotPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.85);
  }
}

.tv-broadcast-meta {
  color: var(--ice-300);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tv-video-mockup {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #040812;
  aspect-ratio: 16 / 10;
  max-height: 440px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.tv-video-mockup.tv-aspect-original {
  aspect-ratio: 1440 / 1795;
  max-height: 620px;
}

.tv-video-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform var(--transition-slow);
}

.tv-video-mockup.tv-aspect-original img {
  object-position: center top;
}

.tv-broadcast-frame:hover .tv-video-mockup img {
  transform: scale(1.03);
}

.tv-screen-lower-third {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(4, 8, 18, 0.75) 30%, rgba(4, 8, 18, 0.98) 100%);
  padding: 24px 18px 14px 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  z-index: 2;
}

.tv-lower-third-left h5 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 2px 0;
  letter-spacing: 0.03em;
}

.tv-lower-third-left span {
  font-family: var(--font-accent);
  font-size: 0.74rem;
  color: var(--ice-400);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tv-lower-third-badge {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid var(--border-glow);
  color: var(--ice-300);
  white-space: nowrap;
}

.tv-lower-third-badge.gold {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.4);
  color: var(--gold-accent);
}

.tv-show-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(239, 68, 68, 0.9);
  color: #ffffff;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 3;
}

.tv-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

/* ==========================================================================
   AWARDS & ACHIEVEMENTS PAGE
   ========================================================================== */
.awards-hero-banner {
  background: linear-gradient(135deg, rgba(16, 26, 48, 0.95) 0%, rgba(10, 18, 32, 0.98) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glow);
  padding: 40px;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.awards-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.awards-hero-inner {
  position: relative;
  z-index: 2;
}

.awards-hero-image-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.5);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.88), 0 0 35px rgba(245, 158, 11, 0.25);
  aspect-ratio: 1440 / 1800;
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
  background: var(--bg-secondary);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.awards-hero-image-frame:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.8);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.95), 0 0 45px rgba(245, 158, 11, 0.35);
}

.awards-hero-image-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1440 / 1800;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.award-card {
  position: relative;
  background: linear-gradient(145deg, rgba(16, 26, 48, 0.85) 0%, rgba(13, 21, 39, 0.95) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.award-card:hover {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 10px 30px -5px rgba(245, 158, 11, 0.2);
  transform: translateY(-4px);
}

.award-trophy-icon {
  font-size: 2.2rem;
  color: var(--gold-accent);
  margin-bottom: 16px;
  filter: drop-shadow(0 0 12px rgba(245, 158, 11, 0.5));
}

.award-year {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.award-card h3 {
  font-size: 1.35rem;
  margin: 8px 0 12px 0;
  color: #ffffff;
}

.award-org {
  font-family: var(--font-accent);
  font-size: 0.88rem;
  color: var(--ice-300);
  font-weight: 600;
  margin-bottom: 12px;
}

/* ==========================================================================
   GALLERY PAGE
   ========================================================================== */
.gallery-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-tab {
  background: rgba(16, 26, 48, 0.6);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-tab:hover, .filter-tab.active {
  background: linear-gradient(135deg, var(--ice-600), var(--sapphire-700));
  border-color: var(--ice-400);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}

.gallery-grid {
  column-count: 3;
  column-gap: 24px;
  width: 100%;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
  cursor: pointer;
  transition: all var(--transition-normal);
  break-inside: avoid;
  margin-bottom: 24px;
  display: inline-block;
  width: 100%;
}

.gallery-item:hover {
  border-color: var(--ice-400);
  box-shadow: var(--shadow-frost);
  transform: translateY(-4px);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 35%, rgba(8, 12, 20, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ice-400);
  letter-spacing: 0.1em;
}

.gallery-caption {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 7, 13, 0.96);
  backdrop-filter: blur(20px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 960px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrapper {
  max-height: 80vh;
  max-width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glow);
  box-shadow: var(--shadow-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
}

.lightbox-img-wrapper img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.lightbox-caption {
  margin-top: 16px;
  color: var(--ice-200);
  font-size: 1.05rem;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
}

/* ==========================================================================
   CONTACT & FAN ZONE PAGE
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-box-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.info-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ice-400);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-text-block h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.info-text-block p, .info-text-block a {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.info-text-block a:hover {
  color: var(--ice-300);
}

/* Form Styles */
.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ice-300);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: rgba(8, 12, 20, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.98rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--ice-400);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.25);
  background: rgba(13, 21, 39, 0.9);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-success-banner {
  display: none;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #86efac;
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.95rem;
  text-align: center;
}

/* IceyGang Fan Box */
.iceygang-banner {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.4) 0%, rgba(15, 23, 42, 0.8) 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  margin-top: 40px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #05080e;
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 30px 0;
  margin-top: auto;
  position: relative;
  z-index: 10;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h3 {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.footer-brand p {
  max-width: 340px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  color: var(--text-secondary);
  font-size: 0.92rem;
  transition: color var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--ice-400);
  padding-left: 4px;
}

.footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.social-icon-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  position: relative;
}

.social-icon-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform var(--transition-fast);
}

.social-icon-link:hover {
  background: var(--ice-500);
  border-color: var(--ice-400);
  color: #080c14;
  transform: translateY(-3px);
  box-shadow: 0 0 12px var(--ice-400);
}

.social-icon-link:hover svg {
  transform: scale(1.1);
  fill: #080c14;
}

/* Individual Brand Accent Colors on Hover */
.social-icon-link.icon-fb:hover { background: #1877F2; border-color: #1877F2; color: #ffffff; box-shadow: 0 0 12px #1877F2; }
.social-icon-link.icon-fb:hover svg { fill: #ffffff; }

.social-icon-link.icon-ig:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); border-color: #d6249f; color: #ffffff; box-shadow: 0 0 12px #d6249f; }
.social-icon-link.icon-ig:hover svg { fill: #ffffff; }

.social-icon-link.icon-yt:hover { background: #FF0000; border-color: #FF0000; color: #ffffff; box-shadow: 0 0 12px #FF0000; }
.social-icon-link.icon-yt:hover svg { fill: #ffffff; }

.social-icon-link.icon-tk:hover { background: #000000; border-color: #25F4EE; color: #ffffff; box-shadow: 0 0 12px #25F4EE; }
.social-icon-link.icon-tk:hover svg { fill: #ffffff; }

.social-icon-link.icon-tw:hover { background: #000000; border-color: #ffffff; color: #ffffff; box-shadow: 0 0 12px rgba(255,255,255,0.6); }
.social-icon-link.icon-tw:hover svg { fill: #ffffff; }

.social-icon-link.icon-sp:hover { background: #1DB954; border-color: #1DB954; color: #000000; box-shadow: 0 0 12px #1DB954; }
.social-icon-link.icon-sp:hover svg { fill: #000000; }

.social-icon-link.icon-am:hover { background: #FA243C; border-color: #FA243C; color: #ffffff; box-shadow: 0 0 12px #FA243C; }
.social-icon-link.icon-am:hover svg { fill: #ffffff; }

.social-icon-link.icon-bp:hover { background: #00ADEE; border-color: #00ADEE; color: #ffffff; box-shadow: 0 0 12px #00ADEE; }
.social-icon-link.icon-bp:hover svg { fill: #ffffff; }

.social-icon-link.icon-ak:hover { background: #FFA200; border-color: #FFA200; color: #000000; box-shadow: 0 0 12px #FFA200; }
.social-icon-link.icon-ak:hover svg { fill: #000000; }

.footer-bottom {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
}

.footer-bottom-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
}

/* Vigorish Media Low-Key Prominent Showcase Card */
.vigorish-ad-card {
  width: 100%;
  background: linear-gradient(135deg, rgba(16, 26, 48, 0.7) 0%, rgba(13, 21, 39, 0.9) 100%);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-normal);
}

.vigorish-ad-card:hover {
  border-color: var(--ice-400);
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.25);
}

.vigorish-ad-content {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.vigorish-ad-icon {
  height: 46px;
  min-width: 46px;
  max-width: 140px;
  padding: 5px 9px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: all var(--transition-normal);
}

.vigorish-ad-card:hover .vigorish-ad-icon {
  box-shadow: 0 0 22px rgba(56, 189, 248, 0.6);
  transform: translateY(-2px);
}

.vigorish-logo-img {
  height: 100%;
  width: auto;
  max-height: 36px;
  max-width: 120px;
  display: block;
  object-fit: contain;
}

.vigorish-ad-title {
  color: #ffffff;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.vigorish-ad-subtitle {
  color: var(--ice-200);
  font-size: 0.85rem;
  line-height: 1.4;
}

.vigorish-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid var(--ice-400);
  color: #ffffff;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.vigorish-cta-btn:hover {
  background: var(--ice-400);
  color: #080c14;
  box-shadow: 0 0 15px var(--ice-400);
}

.footer-credit {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-credit a {
  color: var(--ice-300);
  font-weight: 600;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image-frame img {
    max-height: 480px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image-sticky {
    position: static;
  }

  .album-featured {
    grid-template-columns: 1fr;
  }

  .tv-hero-feature {
    grid-template-columns: 1fr;
  }

  .awards-hero-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    column-count: 2;
    column-gap: 20px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .nav-menu, .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .bento-col-4, .bento-col-6, .bento-col-8 {
    grid-column: span 12;
  }

  .tracklist-container {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .interactive-player-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .player-controls {
    width: 100%;
  }

  .floating-crystal {
    display: none;
  }

  .gallery-grid {
    column-count: 1;
    column-gap: 0;
  }
}
