/* ============================================
   MODERN FUTURISTIC PROFILE CARD STYLES
   ============================================ */

/* CSS Variables */
:root {
  --primary-color: #00d4ff;
  --secondary-color: #7b2ff7;
  --accent-color: #ff006e;
  --dark-bg: #0a0e27;
  --card-bg: rgba(15, 23, 42, 0.85);
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --glow-color: rgba(0, 212, 255, 0.5);
  --transition-speed: 0.3s;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100vh;
  overflow: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  height: 100vh;
  overflow: hidden;
  position: fixed;
  width: 100%;
  margin: 0;
  padding: 0;
}

body.no-scroll-viewport {
  display: block;
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */

.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
    #0a0e27 0%,
    #1a1f3a 25%,
    #2a1f3f 50%,
    #1a1f3a 75%,
    #0a0e27 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

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

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.6;
  animation: float 20s linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100px) translateX(100px);
    opacity: 0;
  }
}

/* ============================================
   NO-SCROLL VIEWPORT ARCHITECTURE
   ============================================ */

/* Fixed Top Bar */
.fixed-top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.3);
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.3),
    0 0 50px rgba(0, 212, 255, 0.1);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.top-bar-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 320px;
}

.top-bar-logo {
  display: flex;
  align-items: center;
  position: relative;
}

.top-bar-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
  animation: logo-pulse 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.logo-glow {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.4), transparent);
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes logo-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
  }
}

@keyframes glow-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.top-bar-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  margin: 0;
  letter-spacing: 2px;
  line-height: 1;
}

.top-bar-title .glitch {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.top-bar-subtitle {
  color: var(--text-secondary);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  margin: 7px 0 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.top-bar-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-controls .music-mute-btn {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(123, 47, 247, 0.2) 100%);
  border: 2px solid rgba(0, 212, 255, 0.4);
  border-radius: 50%;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.top-bar-controls .music-mute-btn:hover {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.4) 0%, rgba(123, 47, 247, 0.4) 100%);
  border-color: rgba(0, 212, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

.top-bar-social-icons {
  display: flex;
  gap: 12px;
}

.top-bar-social-icons .social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.top-bar-social-icons .social-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.top-bar-social-icons .social-icon.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
}

.top-bar-social-icons .social-icon.apple:hover {
  background: #000000;
  border-color: #000000;
}

.top-bar-social-icons .social-icon.spotify:hover {
  background: #1db954;
  border-color: #1db954;
}

.top-bar-social-icons .social-icon.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #bc1888;
}

.top-bar-social-icons .social-icon.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.top-bar-social-icons .social-icon.tiktok:hover {
  background: #000000;
  border-color: #000000;
}

.top-bar-social-icons .social-icon.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
}

/* Viewport Container */
.viewport-container {
  display: grid;
  grid-template-columns: 250px 1fr 350px;
  height: calc(100vh - 80px);
  margin-top: 80px;
  overflow: hidden;
  position: relative;
}

/* Navigation Sidebar */
.nav-sidebar {
  position: fixed;
  left: 0;
  top: 80px;
  width: 250px;
  height: calc(100vh - 80px);
  background: linear-gradient(180deg,
    rgba(10, 14, 39, 0.98) 0%,
    rgba(15, 23, 42, 0.95) 50%,
    rgba(10, 14, 39, 0.98) 100%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-right: 1px solid rgba(0, 212, 255, 0.15);
  padding: 20px 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 100;
  box-shadow:
    4px 0 30px rgba(0, 0, 0, 0.5),
    inset -1px 0 0 rgba(255, 255, 255, 0.05);
}

/* Custom scrollbar for nav */
.nav-sidebar::-webkit-scrollbar {
  width: 4px;
}

.nav-sidebar::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

.nav-sidebar::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  border-radius: 4px;
}

.nav-indicator {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 52px;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  box-shadow:
    0 0 15px var(--primary-color),
    0 0 30px rgba(0, 212, 255, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 4px 4px 0;
  pointer-events: none;
}

.nav-item {
  position: relative;
  width: 100%;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: none;
  color: rgba(148, 163, 184, 0.8);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
  border-left: 3px solid transparent;
  margin: 2px 0;
  overflow: visible;
}

/* Icon container with tech styling */
.nav-item i {
  font-size: 1.1rem;
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover state for non-active items */
.nav-item:hover:not(.active) {
  color: #ffffff;
  background: linear-gradient(90deg,
    rgba(0, 212, 255, 0.08) 0%,
    rgba(0, 212, 255, 0.02) 100%);
  border-left-color: rgba(0, 212, 255, 0.5);
  padding-left: 25px;
}

.nav-item:hover:not(.active) i {
  background: rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.3);
  color: var(--primary-color);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
  transform: scale(1.05);
}

/* Active state - prominent high-tech design */
.nav-item.active {
  color: #ffffff;
  background: linear-gradient(90deg,
    rgba(0, 212, 255, 0.2) 0%,
    rgba(123, 47, 247, 0.1) 50%,
    rgba(0, 212, 255, 0.05) 100%);
  border-left-color: var(--primary-color);
  font-weight: 600;
}

.nav-item.active i {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-color: transparent;
  color: #000000;
  box-shadow:
    0 0 20px rgba(0, 212, 255, 0.5),
    0 4px 15px rgba(0, 212, 255, 0.3);
  transform: scale(1.05);
}

/* Active item text glow */
.nav-item.active span:not(.full-name) {
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

/* Glow effect behind active item */
.nav-item-glow {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    rgba(0, 212, 255, 0.1) 0%,
    transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: -1;
}

.nav-item.active .nav-item-glow {
  opacity: 1;
  animation: nav-pulse 3s ease-in-out infinite;
}

@keyframes nav-pulse {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Animated border effect for active */
.nav-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg,
    var(--primary-color) 0%,
    var(--secondary-color) 50%,
    var(--primary-color) 100%);
  background-size: 100% 200%;
  animation: border-flow 2s linear infinite;
  box-shadow: 0 0 10px var(--primary-color);
}

@keyframes border-flow {
  0% { background-position: 0% 0%; }
  100% { background-position: 0% 200%; }
}

/* External Nav Links */
.nav-external {
  text-decoration: none;
  position: relative;
}

/* Short name that fades out on hover */
.nav-external span:not(.full-name) {
  transition: opacity 0.25s ease;
}

/* Full name that replaces short name */
.nav-external .full-name {
  position: absolute;
  left: 70px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  white-space: normal;
  font-size: 0.85rem;
  line-height: 1.3;
  font-weight: 500;
  color: var(--primary-color);
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.nav-external:hover span:not(.full-name) {
  opacity: 0;
}

.nav-external:hover .full-name {
  opacity: 1;
}

.nav-item.nav-external:hover {
  color: var(--primary-color);
  background: linear-gradient(90deg,
    rgba(0, 212, 255, 0.08) 0%,
    rgba(0, 212, 255, 0.02) 100%);
  border-left-color: rgba(0, 212, 255, 0.5);
  padding-left: 25px;
}

.nav-item.nav-external:hover i {
  background: rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.3);
  color: var(--primary-color);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
  transform: scale(1.05);
}

/* No hover effect for specific nav items */
.nav-item.no-hover:hover {
  color: inherit;
  background: transparent;
  border-left-color: transparent;
  padding-left: 20px;
}

.nav-item.no-hover:hover i {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: inherit;
  box-shadow: none;
  transform: none;
}

/* External link indicator */
.nav-external::after {
  content: '\f35d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.6rem;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.3;
  transition: all 0.3s ease;
}

.nav-external:hover::after {
  opacity: 0.8;
  color: var(--primary-color);
  transform: translateY(-50%) translateX(3px);
}

/* Section Viewport */
.section-viewport {
  position: relative;
  overflow: hidden;
  background: transparent;
  grid-column: 2;
}

.viewport-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 40px;
  transition: none;
}

.viewport-section.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Custom Scrollbar for Sections */
.viewport-section::-webkit-scrollbar {
  width: 10px;
}

.viewport-section::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.5);
  border-radius: 5px;
}

.viewport-section::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.viewport-section::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--secondary-color), var(--primary-color));
}

/* Section Transition Animations */
.viewport-section.section-exit {
  animation: section-exit 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.viewport-section.section-enter {
  animation: section-enter 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fixed-top-bar.is-transitioning .top-bar-logo-img {
  animation: logo-transition-spin 0.65s ease-in-out;
}

@keyframes logo-transition-spin {
  from { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.08); }
  to { transform: rotate(360deg) scale(1); }
}

@keyframes section-exit {
  from {
    opacity: 1;
    transform: scale(1) translateZ(0);
    filter: blur(0px);
  }
  to {
    opacity: 0;
    transform: scale(0.95) translateZ(-100px);
    filter: blur(10px);
  }
}

@keyframes section-enter {
  from {
    opacity: 0;
    transform: scale(1.05) translateZ(-100px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateZ(0);
    filter: blur(0px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .viewport-section.section-exit,
  .viewport-section.section-enter,
  .fixed-top-bar.is-transitioning .top-bar-logo-img {
    animation: none;
  }
}

/* Widget Panel */
.widget-panel {
  position: fixed;
  right: 0;
  top: 80px;
  width: 350px;
  height: calc(100vh - 80px);
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(0, 212, 255, 0.2);
  padding: 30px;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  gap: 25px;
  z-index: 100;
}

/* Custom scrollbar for widget panel */
.widget-panel::-webkit-scrollbar {
  width: 8px;
}

.widget-panel::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.5);
  border-radius: 4px;
}

.widget-panel::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.widget-panel > * {
  flex-shrink: 0;
}

.widget-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.clock-widget,
.birthday-countdown {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 16px;
  padding: 20px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 0 30px rgba(0, 212, 255, 0.05);
}

/* YouTube Stats - Compact */
.youtube-stats-widget {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 0, 0, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.15),
    inset 0 0 20px rgba(255, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.youtube-stats-widget:hover {
  border-color: rgba(255, 0, 0, 0.4);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.2),
    0 0 15px rgba(255, 0, 0, 0.1),
    inset 0 0 20px rgba(255, 0, 0, 0.05);
}

.yt-stats-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.yt-stats-icon {
  color: #ff0000;
  font-size: 1.1rem;
  filter: drop-shadow(0 0 6px rgba(255, 0, 0, 0.5));
}

.yt-stats-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
}

.yt-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.yt-stat {
  flex: 1;
  text-align: center;
}

.yt-stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.yt-stat-label {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.yt-stat-divider {
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, transparent, rgba(255, 0, 0, 0.3), transparent);
  flex-shrink: 0;
}

.yt-channel-btn {
  margin-left: auto;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 0, 0, 0.15);
  border: 1px solid rgba(255, 0, 0, 0.3);
  color: #ff4444;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.yt-channel-btn:hover {
  background: rgba(255, 0, 0, 0.3);
  border-color: rgba(255, 0, 0, 0.6);
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.3);
  color: #ff6666;
  transform: translateY(-1px);
}

.yt-channel-btn i {
  font-size: 0.55rem;
}

/* Section Headers */
.section-header {
  margin-bottom: 30px;
  text-align: center;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-title.neon-text {
  color: var(--primary-color);
  text-shadow:
    0 0 5px var(--primary-color),
    0 0 10px var(--primary-color),
    0 0 20px var(--primary-color),
    0 0 40px var(--primary-color);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  padding: 20px 0;
  animation: grid-fade-in 0.6s ease-out;
}

@keyframes grid-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
}

.content-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  border-radius: 20px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s;
}

.content-card:hover::before {
  opacity: 0.3;
  animation: border-glow-rotate 3s linear infinite;
}

.content-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 40px var(--glow-color);
}

@keyframes border-glow-rotate {
  from { filter: hue-rotate(0deg); }
  to { filter: hue-rotate(360deg); }
}

.card-icon-large {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-align: center;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.card-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 15px;
}

.card-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 12px;
  display: block;
}

.card-profile-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  border: 3px solid var(--primary-color);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.card-image {
  width: 100%;
  border-radius: 12px;
  margin: 15px 0;
}

/* Marimba Studio Section Styles */
.card-logo-large {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 16px;
  display: block;
  box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.studio-hero {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(123, 47, 247, 0.1));
  border: 2px solid var(--primary-color);
}

.studio-features {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: all var(--transition-speed);
}

.feature-badge:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.feature-badge i {
  color: var(--secondary-color);
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  transition: all var(--transition-speed);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

/* Music Releases Section Styles */
.releases-loading,
.releases-error {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-secondary);
}

.loading-spinner {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  border: 4px solid rgba(0, 212, 255, 0.2);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  padding: 20px 0;
}

.release-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition-speed);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.release-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.release-thumbnail {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

.release-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed);
}

.release-card:hover .release-thumbnail img {
  transform: scale(1.05);
}

.release-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 212, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-speed);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.5);
}

.release-card:hover .release-play-overlay {
  opacity: 1;
}

.release-play-overlay i {
  font-size: 24px;
  color: #0a0e27;
  margin-left: 3px;
}

.release-track-count {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-color);
  backdrop-filter: blur(10px);
}

.release-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.release-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.release-artist {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.release-type {
  display: inline-block;
  padding: 4px 10px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #0a0e27;
  margin-top: auto;
}

/* Home Section Specific Styles */
.home-content {
  max-width: 1200px;
  margin: 0 auto;
}

.home-hero {
  display: none;
}

.home-roles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.role-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.role-badge:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  transform: translateY(-2px);
}

.role-icon {
  font-size: 1.2rem;
}

.role-divider {
  color: var(--text-secondary);
}

.quick-access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.quick-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quick-card:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.quick-card-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.quick-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.quick-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ============================================
   HOME ABOUT SECTION
   ============================================ */

.home-about-section {
  margin-top: 10px;
  padding: 30px 0;
}

/* Profile Hero */
.home-profile-hero {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-bottom: 30px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(255, 0, 110, 0.08)),
    rgba(15, 23, 42, 0.78);
  border-radius: 8px;
  border: 1px solid rgba(0, 212, 255, 0.22);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
}

.profile-image-wrapper {
  flex-shrink: 0;
}

.home-profile-image {
  width: 170px;
  height: 220px;
  border-radius: 28px;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--primary-color);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.profile-hero-text {
  flex: 1;
}

.profile-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.profile-kicker {
  color: var(--accent-color);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.profile-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
}

.profile-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.profile-highlights span {
  border: 1px solid rgba(0, 212, 255, 0.28);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 12px;
  text-transform: uppercase;
}

/* About Cards Grid */
.home-about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
  margin-bottom: 26px;
}

.home-about-card {
  background: rgba(15, 23, 42, 0.72);
  border-radius: 8px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.home-about-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.home-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.home-card-icon {
  font-size: 1.5rem;
}

.home-card-header h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.home-about-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.home-about-card .highlight-text {
  color: var(--primary-color);
}

/* Gear Section */
.home-gear-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.home-gear-card {
  background: rgba(15, 23, 42, 0.72);
  border-radius: 8px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-gear-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.gear-intro {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.gear-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.gear-item-compact {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.gear-item-compact:hover {
  background: rgba(0, 212, 255, 0.1);
}

.gear-emoji {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.gear-emoji-wrap {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  min-width: 30px;
}

.new-gear-badge {
  position: absolute;
  top: -12px;
  left: -8px;
  z-index: 1;
  padding: 2px 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #111827;
  font-size: 0.52rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(249, 115, 22, 0.35);
}

.gear-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.gear-info strong {
  font-size: 0.85rem;
  color: var(--text-primary);
}

.gear-info span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Responsive for About Section */
@media (max-width: 900px) {
  .home-profile-hero {
    flex-direction: column;
    text-align: center;
  }

  .home-about-grid,
  .home-gear-section {
    grid-template-columns: 1fr;
  }

  .gear-items-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   HOME SUPPORT/DONATION SECTION
   ============================================ */

.home-support-section {
  margin-top: 60px;
  padding: 0 10px;
}

.home-support-card {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(123, 47, 247, 0.1));
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.home-support-card:hover {
  border-color: rgba(255, 107, 107, 0.5);
  box-shadow: 0 10px 40px rgba(255, 107, 107, 0.2);
}

.support-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.support-content {
  max-width: 500px;
}

.support-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.support-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.home-donation-form {
  width: 100%;
  max-width: 400px;
}

.home-donation-input {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 8px 8px 8px 20px;
  transition: all 0.3s ease;
}

.home-donation-input:focus-within {
  border-color: rgba(255, 107, 107, 0.5);
  box-shadow: 0 0 20px rgba(255, 107, 107, 0.2);
}

.currency-symbol {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.home-donation-input input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  min-width: 80px;
}

.home-donation-input input::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}

.home-donate-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.home-donate-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
}

.home-donate-btn i {
  font-size: 0.9rem;
}

/* Responsive for Support Section */
@media (max-width: 600px) {
  .home-support-card {
    padding: 30px 20px;
  }

  .support-title {
    font-size: 1.3rem;
  }

  .home-donation-input {
    flex-direction: column;
    border-radius: 15px;
    padding: 15px;
    gap: 15px;
  }

  .home-donation-input input {
    width: 100%;
    text-align: center;
  }

  .home-donate-btn {
    width: 100%;
    justify-content: center;
  }
}

.home-footer {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-copyright {
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-contact {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 212, 255, 0.3);
}

.contact-dropdown {
  position: relative;
}

.contact-dropdown .dropdown-menu {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  overflow: hidden;
}

.contact-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: rgba(0, 212, 255, 0.2);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-color: rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.tos-btn:hover {
  background: rgba(0, 212, 255, 0.1);
}

/* Contact Form Expandable */
.contact-card .contact-form-expanded {
  display: none;
  margin-top: 20px;
}

.contact-card.active .contact-form-expanded {
  display: block;
}

.contact-form-group {
  margin-bottom: 20px;
}

.contact-form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-color);
  font-weight: 600;
}

.contact-form-group input,
.contact-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

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

.contact-submit-btn {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

.contact-success-message {
  display: none;
  padding: 15px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgb(16, 185, 129);
  border-radius: 10px;
  color: rgb(16, 185, 129);
  margin-bottom: 15px;
  text-align: center;
}

/* Donation Form Styles */
.donation-card .donation-form {
  margin-top: 20px;
}

.donation-input-group {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.donation-input-group input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.donation-input-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.donation-proceed-btn {
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.donation-proceed-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

/* Merch Slideshow Styles */
.merch-card .merch-expanded {
  display: none;
  margin-top: 20px;
}

.merch-card.active .merch-expanded {
  display: block;
}

.merch-product-slideshow {
  position: relative;
  min-height: 400px;
  margin-bottom: 20px;
}

.product-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-slide.active {
  display: block;
  opacity: 1;
}

.product-slide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  align-items: center;
}

.product-image-section {
  position: relative;
}

.product-image-section img {
  width: 100%;
  border-radius: 12px;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.product-image-section img:hover {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 6px 14px;
  background: var(--accent-color);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
}

.product-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.product-desc {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 15px;
}

.product-price-tag {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-slideshow-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
}

.nav-arrow {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.nav-arrow:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.1);
}

.nav-dots {
  display: flex;
  gap: 10px;
}

.nav-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot.active,
.nav-dot:hover {
  background: var(--primary-color);
  transform: scale(1.2);
}

.merch-store-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.merch-shop-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.merch-shop-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

.store-info {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-top: 10px;
}

/* Image Modal */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: pointer;
}

.image-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.image-modal-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
}

.image-modal-close {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.image-modal-close:hover {
  background: var(--secondary-color);
  transform: rotate(90deg);
}

.image-modal-caption {
  text-align: center;
  color: #ffffff;
  margin-top: 15px;
  font-size: 1.1rem;
}

/* Glitch Effect */
.glitch {
  position: relative;
  display: inline-block;
}

.glitch[data-text]::before,
.glitch[data-text]::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  left: 2px;
  text-shadow: -2px 0 #ff006e;
  clip: rect(24px, 550px, 90px, 0);
  animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch::after {
  left: -2px;
  text-shadow: -2px 0 #00d4ff;
  clip: rect(85px, 550px, 140px, 0);
  animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
  0% {
    clip: rect(39px, 9999px, 97px, 0);
  }
  20% {
    clip: rect(76px, 9999px, 40px, 0);
  }
  40% {
    clip: rect(80px, 9999px, 34px, 0);
  }
  60% {
    clip: rect(3px, 9999px, 77px, 0);
  }
  80% {
    clip: rect(60px, 9999px, 85px, 0);
  }
  100% {
    clip: rect(18px, 9999px, 96px, 0);
  }
}

/* Website Development Section Styles */
.websites-hero {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
}

.websites-logo-section {
  text-align: center;
}

.websites-main-logo {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 20px;
  display: block;
  border: 3px solid var(--primary-color);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
  animation: logo-pulse 3s ease-in-out infinite;
}

.websites-tagline {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin-bottom: 10px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.websites-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.websites-description {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.websites-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.websites-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.websites-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
}

.websites-cta-btn.primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.websites-cta-btn.secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.websites-cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
}

.service-card {
  min-height: 450px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li i {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.service-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 15px;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.service-link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

.websites-contact-section {
  text-align: center;
  margin-top: 60px;
  padding: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
}

.websites-contact-section h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.websites-contact-section p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.websites-contact-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   PROFILE CONTAINER & CARD (Legacy - Keep for compatibility)
   ============================================ */

.profile-container {
  width: 100%;
  max-width: 1200px;
  perspective: 1000px;
  margin-bottom: 30px;
}

.profile-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(0, 212, 255, 0.1),
    inset 0 0 100px rgba(0, 212, 255, 0.03);
  padding: 40px;
  animation: cardEntrance 1s ease-out;
  position: relative;
  overflow: visible;
}

.profile-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  border-radius: 30px;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-speed);
}

.profile-card:hover::before {
  opacity: 0.3;
  animation: borderGlow 3s linear infinite;
}

@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: translateY(50px) rotateX(10deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes borderGlow {
  0%, 100% {
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(360deg);
  }
}

/* ============================================
   NAVIGATION MENU - REMOVED
   ============================================ */
/* Navigation removed per user request */

/* ============================================
   WIDGETS CONTAINER (Clock & Birthday Countdown)
   ============================================ */

.widgets-container {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

/* ============================================
   CLOCK WIDGET
   ============================================ */

.clock-widget {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 16px;
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  transition: all var(--transition-speed);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.clock-widget:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  box-shadow: 0 4px 20px var(--glow-color);
  transform: translateY(-2px);
}

#clock-date {
  font-size: 0.7rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

#clock-time {
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 3s linear infinite;
}

/* ============================================
   BIRTHDAY COUNTDOWN
   ============================================ */

.birthday-countdown {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 16px;
  transition: all var(--transition-speed);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: none;
}

.birthday-countdown.show {
  display: block;
  animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.birthday-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown-display {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.countdown-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 35px;
  text-align: center;
}

.countdown-label {
  font-size: 0.6rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.birthday-celebration {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: celebrationPulse 1.5s ease-in-out infinite;
}

.birthday-celebration.show {
  display: flex;
}

@keyframes celebrationPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.birthday-message {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  background: linear-gradient(90deg, #FFD700, #FFA500, #FF69B4, #9370DB);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rainbowText 3s linear infinite;
  text-align: center;
  line-height: 1.3;
}

@keyframes rainbowText {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

.birthday-emoji {
  font-size: 2rem;
  animation: bounceEmoji 1s ease-in-out infinite;
}

@keyframes bounceEmoji {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

#confettiCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* ============================================
   MUSIC TOGGLE BUTTON (in social icons row)
   ============================================ */

.top-bar-social-icons .social-icon.music-toggle {
  cursor: pointer;
  color: var(--primary-color);
}

.top-bar-social-icons .social-icon.music-toggle:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.top-bar-social-icons .social-icon.music-toggle.muted {
  color: #ff6b6b;
}

.top-bar-social-icons .social-icon.music-toggle.muted:hover {
  background: #ff6b6b;
  border-color: #ff6b6b;
  color: #fff;
}

/* ============================================
   PROFILE HEADER
   ============================================ */

.profile-header {
  text-align: center;
  margin-bottom: 40px;
}

/* Logo */
.logo-container {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
  animation: pulse 2s ease-in-out infinite;
  z-index: -1;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.profile-logo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  box-shadow:
    0 0 30px var(--glow-color),
    inset 0 0 20px rgba(0, 212, 255, 0.2);
  transition: all var(--transition-speed);
  position: relative;
  z-index: 1;
}

.profile-logo:hover {
  transform: scale(1.05) rotate(5deg);
  box-shadow:
    0 0 50px var(--glow-color),
    inset 0 0 30px rgba(0, 212, 255, 0.3);
}

/* Title with Glitch Effect */
.profile-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 3s linear infinite;
  position: relative;
}

@keyframes gradientText {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glitch::before {
  animation: glitchBefore 3s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch::after {
  animation: glitchAfter 3s infinite;
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitchBefore {
  0%, 90%, 100% {
    transform: translate(0);
  }
  92% {
    transform: translate(-2px, 2px);
  }
  94% {
    transform: translate(2px, -2px);
  }
}

@keyframes glitchAfter {
  0%, 90%, 100% {
    transform: translate(0);
  }
  92% {
    transform: translate(2px, -2px);
  }
  94% {
    transform: translate(-2px, 2px);
  }
}

/* Roles Section */
.profile-roles {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.role-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-speed);
  position: relative;
}

.role-item::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) scale(0);
  background: rgba(0, 0, 0, 0.9);
  color: var(--primary-color);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-speed);
  border: 1px solid var(--primary-color);
}

.role-item:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.role-item:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px var(--glow-color);
}

.role-icon {
  font-size: 20px;
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.role-divider {
  color: var(--text-secondary);
  font-size: 18px;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 20px;
  text-decoration: none;
  transition: all var(--transition-speed);
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
  z-index: -1;
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  border-color: currentColor;
}

.social-icon:hover::before {
  width: 100%;
  height: 100%;
}

.social-icon.youtube { color: #FF0000; }
.social-icon.youtube::before { background: #FF0000; }

.social-icon.apple { color: #FA243C; }
.social-icon.apple::before { background: #FA243C; }

.social-icon.spotify { color: #1DB954; }
.social-icon.spotify::before { background: #1DB954; }

.social-icon.youtube-music { color: #FF0000; }
.social-icon.youtube-music::before { background: #FF0000; }

.social-icon.instagram { color: #E1306C; }
.social-icon.instagram::before {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.facebook { color: #1877F2; }
.social-icon.facebook::before { background: #1877F2; }

.social-icon.tiktok { color: #000000; }
.social-icon.tiktok::before {
  background: linear-gradient(45deg, #25F4EE, #FE2C55);
}

.social-icon.linkedin { color: #0077b5; }
.social-icon.linkedin::before { background: #0077b5; }

.social-icon:hover {
  color: white;
  box-shadow: 0 5px 20px currentColor;
}

/* ============================================
   YOUTUBE STATS SECTION
   ============================================ */

.youtube-stats-section {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 18px 15px;
  text-align: center;
  transition: all var(--transition-speed);
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity var(--transition-speed);
  z-index: -1;
}

.stat-box:hover::before {
  opacity: 0.1;
}

.stat-box:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px var(--glow-color);
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 3s linear infinite;
}

/* ============================================
   WEBSITE VIEWER GOAL WIDGET (Compact)
   ============================================ */

.viewer-goal-widget {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 12px;
  padding: 12px 16px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.15),
    inset 0 0 20px rgba(0, 212, 255, 0.03);
  transition: all 0.3s ease;
}

.viewer-goal-widget:hover {
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.2),
    0 0 15px rgba(0, 212, 255, 0.1),
    inset 0 0 20px rgba(0, 212, 255, 0.05);
}

.viewer-goal-widget.goal-reached {
  border-color: #ffd700;
  box-shadow:
    0 0 15px rgba(255, 215, 0, 0.3),
    0 0 30px rgba(255, 215, 0, 0.15),
    inset 0 0 15px rgba(255, 215, 0, 0.05);
  animation: goalReachedGlow 2s ease-in-out infinite;
}

@keyframes goalReachedGlow {
  0%, 100% {
    box-shadow:
      0 0 15px rgba(255, 215, 0, 0.3),
      inset 0 0 15px rgba(255, 215, 0, 0.05);
  }
  50% {
    box-shadow:
      0 0 25px rgba(255, 215, 0, 0.5),
      inset 0 0 20px rgba(255, 215, 0, 0.1);
  }
}

.viewer-goal-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.viewer-goal-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--primary-color);
  opacity: 0;
  animation: floatParticle 6s ease-in-out infinite;
}

@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(100%) scale(0); }
  20% { opacity: 0.6; }
  80% { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-60px) scale(1.2); }
}

.viewer-goal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.viewer-goal-header .widget-title {
  margin-bottom: 0;
  text-align: left;
  font-size: 0.7rem;
}

.viewer-goal-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
  flex-shrink: 0;
}

.viewer-goal-count-inline {
  margin-left: auto;
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.viewer-count {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  background: linear-gradient(90deg, #00d4ff, #7b2ff7, #ff006e);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 3s linear infinite;
  line-height: 1;
}

.viewer-goal-slash {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 300;
}

.viewer-goal-target {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

/* Progress Bar */
.viewer-goal-bar-container {
  position: relative;
  z-index: 1;
}

.viewer-goal-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.viewer-goal-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00d4ff, #7b2ff7, #ff006e);
  background-size: 200% 100%;
  border-radius: 3px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  animation: barShimmer 3s ease-in-out infinite;
}

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

.viewer-goal-bar-glow {
  position: absolute;
  top: -2px;
  right: 0;
  width: 14px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.5s ease, left 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.viewer-goal-widget.has-progress .viewer-goal-bar-glow {
  opacity: 1;
}

.viewer-goal-bar-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 0.6rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.viewer-goal-bar-labels span:first-child {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Orbitron', sans-serif;
}

/* Milestones */
.viewer-goal-milestones {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  padding: 0 5px;
  position: relative;
  z-index: 1;
}

.milestone {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.milestone.reached {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-color: var(--primary-color);
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
  transform: scale(1.1);
}

.milestone.reached::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  animation: milestoneRipple 2s ease-out infinite;
}

@keyframes milestoneRipple {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Bottom Row */
.viewer-goal-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.viewer-goal-streak {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6rem;
  color: var(--text-secondary);
}

.viewer-goal-streak i {
  color: var(--primary-color);
  font-size: 0.65rem;
}

.viewer-goal-reset-info {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.3);
}

.viewer-goal-reset-info i {
  font-size: 0.6rem;
}

/* Celebration Overlay */
.viewer-goal-celebration {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  border-radius: 12px;
}

.viewer-goal-celebration.active {
  display: flex;
  animation: celebrationFadeIn 0.5s ease-out;
}

@keyframes celebrationFadeIn {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

.celebration-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  background: linear-gradient(90deg, #ffd700, #ff006e, #ffd700);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 2s linear infinite;
  text-shadow: none;
  margin-bottom: 3px;
}

.celebration-emoji {
  font-size: 1.5rem;
  animation: celebrationBounce 1s ease-in-out infinite;
}

@keyframes celebrationBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

#goalConfettiCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ============================================
   CONTENT BUTTONS ROW
   ============================================ */

.content-buttons-row {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 30px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.content-button-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.content-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  min-height: 80px;
  padding: 20px 25px;
}

.button-main-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  width: 100%;
}

.button-expanded-content {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
  padding: 0 25px;
  background: rgba(15, 23, 42, 1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  z-index: 10;
}

.content-button-wrapper:hover .button-expanded-content {
  max-height: 600px;
  opacity: 1;
  padding: 20px 25px 15px 25px;
}

.button-expanded-content h4 {
  font-size: 1.1rem;
  margin: 0 0 8px 0;
  color: var(--text-color);
}

.button-expanded-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0 0 8px 0;
  line-height: 1.5;
}

.button-expanded-content .preview-artist {
  font-weight: 600;
  font-size: 0.9rem;
}

.button-expanded-content .preview-info {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.8rem;
}

.button-expanded-content .preview-desc {
  line-height: 1.6;
}

.button-expanded-content .expanded-image {
  width: 100%;
  max-height: 150px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.content-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity var(--transition-speed);
  z-index: -1;
}

.content-button:hover::before {
  opacity: 0.15;
}

.content-button:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px var(--glow-color);
}

.content-button i {
  font-size: 2rem;
  flex-shrink: 0;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 3s linear infinite;
}

.content-button span {
  font-size: 0.85rem;
  line-height: 1.3;
}

.content-button strong {
  font-size: 1rem;
  font-weight: 700;
  display: block;
  white-space: nowrap;
}

.button-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

.button-profile-pic {
  border-radius: 50%;
  object-fit: cover;
}

/* RumbleUp Button Specific Styling */
.rumbleup-btn i {
  background: linear-gradient(90deg, #ff4500, #ff6b35);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rumbleup-btn:hover {
  border-color: #ff4500;
  box-shadow: 0 10px 30px rgba(255, 69, 0, 0.4);
}

/* Marimba Studio Button Specific Styling */
.marimba-studio-btn i {
  background: linear-gradient(90deg, #667eea, #764ba2);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.marimba-studio-btn:hover {
  border-color: #667eea;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Rumble Websites Button Specific Styling */
.rumble-websites-btn:hover {
  border-color: #0077ff;
  box-shadow: 0 10px 30px rgba(0, 119, 255, 0.4);
}

/* African Ethos Button Specific Styling */
.african-ethos-btn:hover {
  border-color: #d4a574;
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

/* Meet Alistair Button Specific Styling */
.meet-alistair-btn i {
  background: linear-gradient(90deg, #00d4ff, #7b2ff7);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.meet-alistair-btn:hover {
  border-color: #00d4ff;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

/* TRG Shop Button Specific Styling */
.trg-shop-btn {
  background: rgba(255, 255, 255, 0.03);
}

.trg-shop-btn i {
  font-size: 32px;
  background: linear-gradient(135deg, #f093fb, #f5576c);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trg-shop-btn:hover {
  border-color: #f093fb;
  box-shadow: 0 10px 30px rgba(240, 147, 251, 0.4);
}

/* RumbleTV Button Specific Styling */
.rumbletv-btn {
  background: rgba(255, 255, 255, 0.03);
}

.rumbletv-btn i {
  font-size: 32px;
  background: linear-gradient(135deg, #4cc9ff, #1d4ed8);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rumbletv-btn:hover {
  border-color: #4cc9ff;
  box-shadow: 0 10px 30px rgba(76, 201, 255, 0.4);
}

/* Xtreme Marimbas Button Specific Styling */
.xtreme-marimbas-btn {
  background: rgba(255, 255, 255, 0.03);
}

.xtreme-marimbas-btn i {
  font-size: 32px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.xtreme-marimbas-btn:hover {
  border-color: #f59e0b;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

/* Mobile Music Academy Button Specific Styling */
.mobile-music-btn {
  background: rgba(255, 255, 255, 0.03);
}

.mobile-music-btn i {
  font-size: 32px;
  background: linear-gradient(135deg, #10b981, #059669);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mobile-music-btn:hover {
  border-color: #10b981;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

/* ============================================
   PREVIEW CARD (OLD - HIDDEN, using expanding buttons instead)
   ============================================ */

.preview-card {
  display: none;
}

.preview-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-with-white-bg {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.preview-with-white-bg img {
  object-fit: contain;
  max-width: 80%;
  max-height: 80%;
}

.preview-content {
  padding: 20px;
}

.preview-content h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.preview-artist {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0 0 8px 0;
  font-weight: 600;
}

.preview-info {
  font-size: 0.85rem;
  color: var(--primary-color);
  margin: 0 0 8px 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.preview-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

/* ============================================
   MERCHANDISE STORE (for TRG Shop hover)
   ============================================ */

.merch-wrapper .button-expanded-content {
  width: 700px !important;
  max-width: 90vw;
  max-height: 650px;
  overflow-y: auto;
  overflow-x: hidden;
}

.merch-expanded {
  padding: 0 !important;
  overflow: visible !important;
  max-height: none !important;
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Custom scrollbar for merchandise section */
.merch-wrapper .button-expanded-content::-webkit-scrollbar {
  width: 8px;
}

.merch-wrapper .button-expanded-content::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.5);
  border-radius: 4px;
}

.merch-wrapper .button-expanded-content::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #f093fb, #f5576c);
  border-radius: 4px;
}

.merch-wrapper .button-expanded-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #f5576c, #f093fb);
}

/* Store Header */
.merch-store-header {
  padding: 20px 25px;
  background: linear-gradient(135deg, rgba(240, 147, 251, 0.15), rgba(245, 87, 108, 0.15));
  border-bottom: 1px solid rgba(240, 147, 251, 0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.merch-store-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.store-header-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.store-header-content i {
  font-size: 1.8rem;
  background: linear-gradient(135deg, #f093fb, #f5576c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
}

.store-header-content h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #f093fb, #f5576c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.store-header-content p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Product Slideshow Container */
.merch-product-slideshow {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.5);
}

/* Product Slide */
.product-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
}

.product-slide.active {
  opacity: 1;
  visibility: visible;
}

/* Product Slide Content - Horizontal Layout */
.product-slide-content {
  display: flex;
  flex-direction: row;
  gap: 30px;
  width: 100%;
  height: 100%;
  align-items: center;
}

/* Product Image Section (Left) */
.product-image-section {
  position: relative;
  flex: 0 0 45%;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(240, 147, 251, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-section img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 15px;
  transition: transform 0.4s ease;
  cursor: zoom-in;
}

.product-image-section:hover img {
  transform: scale(1.08);
}

/* Product Badge */
.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #f093fb, #f5576c);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
  animation: pulse-badge 2s ease-in-out infinite;
  z-index: 10;
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(240, 147, 251, 0.6);
  }
}

/* Product Info Section (Right) */
.product-info-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border-radius: 12px;
  border: 1px solid rgba(240, 147, 251, 0.2);
  height: 100%;
}

.product-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  background: linear-gradient(135deg, #f093fb, #f5576c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
  flex: 1;
}

.product-price-tag {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #f093fb, #f5576c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  letter-spacing: 1px;
}

/* Slideshow Navigation */
.product-slideshow-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background: rgba(15, 23, 42, 0.8);
  border-top: 1px solid rgba(240, 147, 251, 0.2);
}

.nav-arrow {
  background: linear-gradient(135deg, rgba(240, 147, 251, 0.2), rgba(245, 87, 108, 0.2));
  border: 1px solid rgba(240, 147, 251, 0.4);
  color: #f093fb;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-arrow:hover {
  background: linear-gradient(135deg, rgba(240, 147, 251, 0.4), rgba(245, 87, 108, 0.4));
  border-color: #f093fb;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(240, 147, 251, 0.5);
}

.nav-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.3);
}

.nav-dot.active {
  background: linear-gradient(135deg, #f093fb, #f5576c);
  width: 12px;
  height: 12px;
  box-shadow: 0 0 10px rgba(240, 147, 251, 0.6);
}

/* Store Footer */
.merch-store-footer {
  padding: 20px 25px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(26, 31, 58, 0.95));
  border-top: 1px solid rgba(240, 147, 251, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.merch-shop-now-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(240, 147, 251, 0.3);
  position: relative;
  overflow: hidden;
}

.merch-shop-now-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.merch-shop-now-btn:hover::before {
  left: 100%;
}

.merch-shop-now-btn:hover {
  background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
  box-shadow: 0 12px 35px rgba(240, 147, 251, 0.5);
  transform: translateY(-3px);
}

.merch-shop-now-btn i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.merch-shop-now-btn:hover i:first-child {
  animation: cart-shake 0.5s ease;
}

.merch-shop-now-btn:hover i:last-child {
  transform: translateX(5px);
}

@keyframes cart-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}

.store-info {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin: 0;
  text-align: center;
  line-height: 1.6;
  font-weight: 500;
}

/* Responsive Slideshow */
@media (max-width: 768px) {
  .merch-product-slideshow {
    height: 400px;
  }

  .product-slide {
    padding: 15px;
  }

  .product-slide-content {
    flex-direction: column;
    gap: 15px;
  }

  .product-image-section {
    flex: 0 0 auto;
    width: 100%;
    height: 180px;
  }

  .product-info-section {
    height: auto;
    padding: 15px;
  }

  .product-title {
    font-size: 1.2rem;
  }

  .product-desc {
    font-size: 0.85rem;
  }

  .product-price-tag {
    font-size: 1.6rem;
  }
}

/* Image Modal for Enlarged View */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.image-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}

.image-modal-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.image-modal-close:hover {
  background: rgba(255, 0, 0, 0.8);
  transform: rotate(90deg);
}

.image-modal-caption {
  margin-top: 20px;
  color: white;
  font-size: 1.1rem;
  text-align: center;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

/* ============================================
   DONATION BUTTON & FORM
   ============================================ */

.donation-btn {
  background: rgba(255, 255, 255, 0.03);
  flex-direction: row;
}

.donation-btn:hover {
  border-color: #ff6b6b;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.donation-form-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.donation-label {
  display: flex;
  align-items: center;
  gap: 15px;
}

.donation-label i {
  font-size: 20px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.donation-label span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-color);
}

.donation-input-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.donation-input-group input {
  flex: 1;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--text-color);
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.donation-input-group input:focus {
  outline: none;
  border-color: #ff6b6b;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(255, 107, 107, 0.3);
}

.donation-input-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.donation-proceed-btn {
  padding: 10px 20px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.donation-proceed-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.5);
}

.donation-proceed-btn:active {
  transform: translateY(0);
}

.donation-btn .button-expanded-content {
  padding: 0 25px;
}

.donation-wrapper:hover .button-expanded-content {
  padding: 20px 25px 0 25px;
}

.donation-btn .button-expanded-content h4 {
  font-size: 1.1rem;
  margin: 0 0 8px 0;
  color: var(--text-color);
}

.donation-btn .button-expanded-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0 0 8px 0;
  line-height: 1.5;
}

.donation-preview {
  width: 320px;
  padding: 20px;
}

.donation-content h4 {
  font-size: 1.2rem;
  margin: 0 0 15px 0;
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.donation-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0 0 12px 0;
  line-height: 1.5;
  text-align: left;
}

/* ============================================
   CONTENT SECTIONS - REMOVED
   ============================================ */
/* Content sections removed - simplified profile card only */

/* ============================================
   FOOTER DIVIDER & FOOTER
   ============================================ */

.footer-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--primary-color) 20%,
    var(--secondary-color) 50%,
    var(--primary-color) 80%,
    transparent 100%
  );
  margin: 60px 0 0 0;
  box-shadow: 0 0 20px var(--glow-color);
}

.site-footer {
  width: 100%;
  padding: 40px 20px;
  background: rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(10px);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-text {
  text-align: left;
}

.footer-copyright {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 8px 0;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 300;
}

.footer-contact {
  display: flex;
  gap: 15px;
  align-items: center;
}

.contact-dropdown {
  position: relative;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-color);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.contact-btn i {
  font-size: 1.2rem;
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  box-shadow: 0 4px 20px var(--glow-color);
  transform: translateY(-2px);
}

.email-btn:hover {
  border-color: #00d4ff;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

.whatsapp-btn {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  border-color: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  background: rgba(37, 211, 102, 0.15);
}

.tos-btn {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
}

.tos-btn:hover {
  border-color: #00d4ff;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
  background: rgba(0, 212, 255, 0.15);
}

.dropdown-menu {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 100;
  min-width: 220px;
}

.contact-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--text-color);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-color);
}

.dropdown-item i {
  font-size: 1.1rem;
  color: var(--primary-color);
}

.dropdown-item:first-child {
  margin-bottom: 4px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  .profile-card {
    padding: 30px 20px;
  }

  .profile-title {
    font-size: 2rem;
  }

  .profile-logo {
    width: 140px;
    height: 140px;
  }

  .logo-glow {
    width: 160px;
    height: 160px;
  }

  .role-item {
    font-size: 14px;
    padding: 8px 15px;
  }

  .role-icon {
    font-size: 18px;
  }

  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .stats-grid {
    gap: 10px;
  }

  .stats-title {
    font-size: 0.85rem;
  }

  .stat-value {
    font-size: 1rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .widgets-container {
    top: 15px;
    left: 15px;
    flex-direction: column;
    gap: 10px;
  }

  .clock-widget {
    padding: 10px 12px;
  }

  #clock-date {
    font-size: 0.6rem;
  }

  #clock-time {
    font-size: 0.95rem;
  }

  .birthday-countdown {
    padding: 10px 12px;
  }

  .birthday-title {
    font-size: 0.65rem;
  }

  .countdown-number {
    font-size: 1.2rem;
    min-width: 30px;
  }

  .countdown-label {
    font-size: 0.55rem;
  }
}

@media (max-width: 480px) {
  body {
    padding: 10px;
  }

  .profile-title {
    font-size: 1.5rem;
  }

  .role-item .role-text {
    font-size: 12px;
  }

  .profile-roles {
    gap: 8px;
  }

  .role-divider {
    display: none;
  }

  .widgets-container {
    top: 10px;
    left: 10px;
    gap: 8px;
  }

  .clock-widget {
    padding: 8px 10px;
  }

  #clock-date {
    font-size: 0.55rem;
    margin-bottom: 4px;
  }

  #clock-time {
    font-size: 0.85rem;
  }

  .birthday-countdown {
    padding: 8px 10px;
  }

  .birthday-title {
    font-size: 0.6rem;
  }

  .countdown-display {
    gap: 8px;
  }

  .countdown-number {
    font-size: 1rem;
    min-width: 25px;
  }

  .countdown-label {
    font-size: 0.5rem;
  }

  .content-buttons-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .content-button {
    padding: 25px 15px;
  }

  .content-button i {
    font-size: 2rem;
  }

  .preview-card {
    width: 240px;
  }
}

/* ====================================
   CONTACT FORM STYLES
   ==================================== */

.contact-wrapper .button-expanded-content {
  width: 600px !important;
  max-width: 90vw;
  padding: 30px;
}

.contact-form-expanded {
  width: 100%;
}

.contact-form-group {
  margin-bottom: 20px;
}

.contact-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.3px;
}

.contact-form-group input,
.contact-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(102, 126, 234, 0.3);
  background: rgba(15, 23, 42, 0.6);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
  outline: none;
  border-color: rgba(102, 126, 234, 0.6);
  background: rgba(15, 23, 42, 0.8);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.contact-form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

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

.contact-success-message {
  display: none;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.2), rgba(39, 174, 96, 0.2));
  border: 1px solid rgba(46, 204, 113, 0.4);
  color: rgba(255, 255, 255, 0.95);
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-submit-btn {
  width: 100%;
  padding: 14px 24px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

.contact-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .contact-wrapper .button-expanded-content {
    width: 100% !important;
    padding: 20px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* ============================================
   ROW CATEGORY LABELS & DIVIDERS
   ============================================ */

.row-category-label {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 15px auto;
  padding: 0 20px;
  position: relative;
}

.category-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.category-info {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: help;
}

.category-info i {
  font-size: 1rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 8px var(--glow-color));
  -webkit-text-fill-color: var(--primary-color);
  background: none;
}

.category-info:hover i {
  color: var(--secondary-color);
  transform: rotate(15deg) scale(1.1);
  filter: drop-shadow(0 0 12px rgba(123, 47, 247, 0.6));
  -webkit-text-fill-color: var(--secondary-color);
}

.category-tooltip {
  position: absolute;
  left: 0;
  top: 35px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(26, 31, 58, 0.98));
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 280px;
  max-width: 320px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(102, 126, 234, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 100;
  white-space: normal;
}

.category-info:hover .category-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.category-tooltip::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 10px;
  width: 12px;
  height: 12px;
  background: rgba(15, 23, 42, 0.98);
  border-top: 1px solid rgba(102, 126, 234, 0.3);
  border-left: 1px solid rgba(102, 126, 234, 0.3);
  transform: rotate(45deg);
}

.row-divider {
  width: 100%;
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
  position: relative;
}

.row-divider::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(102, 126, 234, 0.2) 10%,
    rgba(102, 126, 234, 0.5) 50%,
    rgba(102, 126, 234, 0.2) 90%,
    transparent 100%
  );
  box-shadow: 0 0 10px rgba(102, 126, 234, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .row-category-label {
    padding: 0 15px;
    margin-bottom: 12px;
  }

  .category-title {
    font-size: 1.1rem;
    gap: 8px;
  }

  .category-info i {
    font-size: 0.9rem;
  }

  .category-tooltip {
    min-width: 220px;
    max-width: 280px;
    font-size: 0.8rem;
    padding: 10px 14px;
  }

  .row-divider {
    margin: 15px auto;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .row-category-label {
    margin-bottom: 10px;
  }

  .category-title {
    font-size: 1rem;
    gap: 6px;
    flex-wrap: wrap;
  }

  .category-info i {
    font-size: 0.85rem;
  }

  .category-tooltip {
    left: -10px;
    min-width: 200px;
    max-width: 250px;
    font-size: 0.75rem;
  }

  .row-divider {
    margin: 12px auto;
  }
}

/* ========================
   MUSIC STORE STYLES
   ======================== */

/* Store-specific CSS Variables */
:root {
  --store-card-bg: rgba(15, 23, 42, 0.9);
  --store-border: rgba(0, 212, 255, 0.3);
  --store-hover-glow: 0 0 20px rgba(0, 212, 255, 0.5);
  --store-button-gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* Everything Bundle Card */
.store-everything-bundle {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(123, 47, 247, 0.1));
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  text-align: center;
  animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4),
                0 0 40px rgba(0, 212, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.8),
                0 0 80px rgba(0, 212, 255, 0.4);
  }
}

.bundle-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.bundle-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.bundle-details {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.bundle-price {
  margin: 25px 0;
}

.price-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.price-value {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-color);
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
}

.bundle-savings {
  font-size: 1rem;
  color: var(--accent-color);
  margin-bottom: 25px;
  font-weight: 600;
}

/* Release Cards Container */
.store-releases-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Collapsible Release Card */
.store-release-card {
  background: var(--store-card-bg);
  border: 1px solid var(--store-border);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.store-release-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--store-hover-glow);
  transform: translateY(-2px);
}

/* Release Header (Clickable) */
.release-header {
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: background 0.3s ease;
  user-select: none;
  min-height: 100px;
}

.release-header:hover {
  background: rgba(0, 212, 255, 0.1);
}

.release-info {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

/* Album Thumbnail in Header */
.release-thumb {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5),
              0 0 15px rgba(0, 212, 255, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.release-header:hover .release-thumb {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6),
              0 0 20px rgba(0, 212, 255, 0.6);
}

/* Singles Slideshow */
.singles-slideshow {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.singles-slideshow .singles-slide {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.singles-slideshow .singles-slide.active {
  opacity: 1;
}

/* Track Thumbnail for Singles */
.track-thumb {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.release-icon {
  font-size: 1.2rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.release-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-right: 15px;
}

.release-meta {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.expand-arrow {
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  margin-left: auto;
}

.expand-arrow.rotated {
  transform: rotate(180deg);
}

/* Release Content (Expandable) */
.release-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0 20px;
}

.release-content.expanded {
  max-height: 3000px;
  padding: 20px;
}

/* Release Details Section */
.release-details {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.release-artwork {
  width: 150px;
  height: 150px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4),
              0 0 20px rgba(0, 212, 255, 0.3);
  transition: transform 0.3s ease;
}

.release-artwork:hover {
  transform: scale(1.05) rotate(2deg);
}

.release-specs {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.release-specs-full {
  padding-left: 0;
}

.release-specs p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-secondary);
}

.release-specs strong {
  color: var(--primary-color);
  margin-right: 8px;
}

/* Track List */
.track-list {
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.track-item {
  display: grid;
  grid-template-columns: 50px 1fr auto 60px;
  align-items: center;
  padding: 12px 15px;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

/* Track items with thumbnails (Singles) */
.track-item:has(.track-thumb) {
  grid-template-columns: 50px 50px 1fr auto 60px;
}

.track-item:last-child {
  border-bottom: none;
}

.track-item:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.track-item:hover {
  background: rgba(0, 212, 255, 0.1);
  transform: translateX(5px);
}

.track-number {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 0.95rem;
}

.track-title {
  color: var(--text-primary);
  font-size: 0.95rem;
  padding: 0 10px;
}

.track-duration {
  color: var(--text-secondary);
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  text-align: right;
}

/* Track Play Button */
.track-play-btn {
  background: rgba(0, 212, 255, 0.2);
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--primary-color);
  font-size: 0.8rem;
}

.track-play-btn:hover {
  background: var(--primary-color);
  color: var(--dark-bg);
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

.track-play-btn.playing {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Audio Progress Bar */
.track-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s linear;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.track-item.playing .track-progress {
  animation: progress-glow 1.5s infinite;
}

@keyframes progress-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(0, 212, 255, 0.8); }
  50% { box-shadow: 0 0 20px rgba(0, 212, 255, 1); }
}

/* Purchase Button */
.store-purchase-btn {
  width: 100%;
  padding: 18px 30px;
  margin-top: 20px;
  background: var(--store-button-gradient);
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.store-purchase-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.store-purchase-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.5);
}

.store-purchase-btn:hover::before {
  width: 300px;
  height: 300px;
}

.store-purchase-btn:active {
  transform: scale(0.98);
}

.store-purchase-btn i {
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.store-purchase-btn span {
  position: relative;
  z-index: 1;
}

/* Coming Soon Modal */
.store-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes fadeOut {
  to { opacity: 0; }
}

.store-modal {
  background: var(--card-bg);
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.5);
  transform: scale(0.8);
  animation: modalEnter 0.4s forwards;
  position: relative;
}

@keyframes modalEnter {
  to {
    transform: scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-close:hover {
  color: var(--accent-color);
  background: rgba(255, 0, 110, 0.1);
  transform: rotate(90deg);
}

.store-modal h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
}

.store-modal p {
  text-align: center;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 25px;
}

.modal-cta {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 15px;
  padding: 20px;
  margin: 25px 0;
}

.modal-cta h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-align: center;
}

.modal-cta p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.modal-cta button,
.modal-cta a {
  display: inline-block;
  padding: 12px 24px;
  margin: 5px;
  background: var(--store-button-gradient);
  border: 2px solid var(--primary-color);
  border-radius: 25px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.modal-cta button:hover,
.modal-cta a:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.modal-btn {
  width: 100%;
  padding: 15px;
  background: transparent;
  border: 2px solid var(--primary-color);
  border-radius: 25px;
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  letter-spacing: 1px;
}

.modal-btn:hover {
  background: var(--primary-color);
  color: var(--dark-bg);
  box-shadow: 0 5px 20px rgba(0, 212, 255, 0.6);
}

/* Responsive Adjustments for Music Store */
@media (max-width: 1400px) {
  .bundle-title {
    font-size: 1.7rem;
  }

  .price-value {
    font-size: 2.5rem;
  }
}

@media (max-width: 1200px) {
  .release-details {
    flex-direction: column;
    align-items: center;
  }

  .release-artwork {
    width: 200px;
    height: 200px;
  }

  .track-item {
    grid-template-columns: 40px 1fr auto 50px;
  }
}

@media (max-width: 768px) {
  .store-everything-bundle {
    padding: 30px 20px;
  }

  .bundle-title {
    font-size: 1.4rem;
  }

  .price-value {
    font-size: 2rem;
  }

  .release-name {
    font-size: 1.1rem;
  }

  .track-item {
    grid-template-columns: 35px 1fr 50px;
    font-size: 0.85rem;
  }

  .track-play-btn {
    display: none;
  }

  .store-modal {
    padding: 30px 20px;
  }
}

/* ========================
   SHOPPING CART STYLES
   ======================== */

/* Floating Cart Icon */
.floating-cart {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #00d4ff, #7b2ff7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10000;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4),
              0 0 60px rgba(123, 47, 247, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: cartPulse 2s infinite;
}

.floating-cart:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.6),
              0 0 80px rgba(123, 47, 247, 0.5);
}

.floating-cart i {
  font-size: 1.5rem;
  color: #000;
}

.floating-cart .cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff3366;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(255, 51, 102, 0.5);
}

.floating-cart.hidden {
  display: none;
}

@keyframes cartPulse {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4),
                0 0 60px rgba(123, 47, 247, 0.3);
  }
  50% {
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.6),
                0 0 80px rgba(123, 47, 247, 0.5);
  }
}

/* Track Price */
.track-price {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  min-width: 60px;
  text-align: right;
}

/* Track Cart Button */
.track-cart-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #000;
  font-size: 0.9rem;
}

.track-cart-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.5);
}

.track-cart-btn.added {
  background: #00ff88;
  animation: cartAdded 0.5s ease;
}

@keyframes cartAdded {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* Cart Notification */
.cart-notification {
  position: fixed;
  bottom: 160px;
  right: 20px;
  background: rgba(0, 20, 30, 0.95);
  border: 1px solid var(--primary-color);
  border-radius: 12px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10002;
  animation: slideInNotification 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5),
              0 0 20px rgba(0, 212, 255, 0.3);
}

.cart-notification.success {
  border-color: #00ff88;
}

.cart-notification.success i {
  color: #00ff88;
}

.cart-notification.warning {
  border-color: #ffaa00;
}

.cart-notification.warning i {
  color: #ffaa00;
}

.cart-notification i {
  font-size: 1.2rem;
}

.cart-notification span {
  color: var(--text-primary);
  font-size: 0.9rem;
}

.cart-notification.fade-out {
  animation: slideOutNotification 0.3s ease forwards;
}

@keyframes slideInNotification {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutNotification {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(50px);
  }
}

/* Cart Modal */
.cart-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10003;
  animation: fadeIn 0.3s ease;
}

.cart-modal {
  background: linear-gradient(135deg, rgba(0, 20, 40, 0.98), rgba(10, 10, 30, 0.98));
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
              0 0 40px rgba(0, 212, 255, 0.3);
  animation: modalEnter 0.3s ease;
}

.cart-modal h2 {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-items {
  margin-bottom: 20px;
  max-height: 300px;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.cart-item:hover {
  background: rgba(0, 212, 255, 0.1);
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item-title {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.cart-item-album {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.cart-item-price {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1rem;
}

.cart-item-remove {
  background: rgba(255, 51, 102, 0.2);
  border: none;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ff3366;
  transition: all 0.3s ease;
}

.cart-item-remove:hover {
  background: #ff3366;
  color: #fff;
}

.cart-empty {
  text-align: center;
  color: var(--text-secondary);
  padding: 40px 20px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 20px;
}

.cart-total span:first-child {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.cart-total-price {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
}

.cart-actions {
  display: flex;
  gap: 15px;
}

.cart-clear-btn,
.cart-checkout-btn {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.cart-clear-btn {
  background: rgba(255, 51, 102, 0.2);
  color: #ff3366;
  border: 1px solid #ff3366;
}

.cart-clear-btn:hover {
  background: #ff3366;
  color: #fff;
}

.cart-checkout-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #000;
}

.cart-checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

/* Update track-item grid for price and cart button */
.track-item {
  grid-template-columns: 50px 1fr auto 70px 45px;
}

.track-item:has(.track-thumb) {
  grid-template-columns: 50px 50px 1fr auto 70px 45px;
}

@media (max-width: 768px) {
  .floating-cart {
    bottom: 85px;
  }

  .cart-notification {
    bottom: 155px;
    left: 20px;
    right: 20px;
  }

  .track-price {
    display: none;
  }

  .track-item {
    grid-template-columns: 35px 1fr 45px;
  }

  .track-item:has(.track-thumb) {
    grid-template-columns: 40px 35px 1fr 45px;
  }
}

/* ========================
   EMAIL MODAL STYLES
   ======================== */

.email-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.email-modal {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(10, 14, 39, 0.98));
  border: 2px solid rgba(0, 212, 255, 0.4);
  border-radius: 24px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  box-shadow:
    0 0 40px rgba(0, 212, 255, 0.3),
    0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalSlideIn 0.4s ease;
  position: relative;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.email-modal .modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.email-modal .modal-close:hover {
  color: #ff006e;
  background: rgba(255, 0, 110, 0.1);
  transform: rotate(90deg);
}

.email-modal h2 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.email-modal-subtitle {
  text-align: center;
  color: #94a3b8;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.email-input-container {
  position: relative;
  margin-bottom: 25px;
}

.email-input-container input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.email-input-container input:focus {
  outline: none;
  border-color: #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.email-input-container input::placeholder {
  color: #64748b;
}

.email-input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #00d4ff;
  font-size: 1.1rem;
}

.email-order-summary {
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
}

.email-order-summary h3 {
  color: #00d4ff;
  font-size: 1rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.email-order-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
  font-size: 0.9rem;
}

.email-order-item:last-of-type {
  border-bottom: none;
}

.email-order-total {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  margin-top: 10px;
  border-top: 2px solid rgba(0, 212, 255, 0.3);
  font-weight: 700;
  font-size: 1.1rem;
  color: #00d4ff;
}

.email-modal-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.email-cancel-btn,
.email-continue-btn {
  flex: 1;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.email-cancel-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #94a3b8;
}

.email-cancel-btn:hover {
  background: rgba(255, 0, 110, 0.1);
  border-color: #ff006e;
  color: #ff006e;
}

.email-continue-btn {
  background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 100%);
  border: none;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

.email-continue-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
}

.email-continue-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.email-modal-note {
  text-align: center;
  color: #64748b;
  font-size: 0.85rem;
}

.email-modal-note i {
  color: #00d4ff;
  margin-right: 5px;
}

/* Email Modal Responsive */
@media (max-width: 600px) {
  .email-modal {
    padding: 25px;
    margin: 15px;
  }

  .email-modal h2 {
    font-size: 1.4rem;
  }

  .email-modal-actions {
    flex-direction: column;
  }

  .email-cancel-btn,
  .email-continue-btn {
    width: 100%;
  }
}

/* Video Section Styles */
.home-video-section {
  margin: 60px 0;
  padding: 40px 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.video-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-subtitle {
  color: #00d4ff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-description {
  color: #ffffff;
  font-size: 16px;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.featured-video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.featured-video-player,
.featured-video-list {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.featured-video-player video {
  aspect-ratio: 16 / 9;
  background: #000;
  display: block;
  width: 100%;
}

.featured-video-caption {
  padding: 22px;
}

.featured-video-label {
  color: var(--primary-color);
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.featured-video-caption h4 {
  color: #fff;
  font-size: 1.35rem;
  margin: 0 0 10px;
}

.featured-video-caption p {
  color: #cbd5e1;
  line-height: 1.65;
  margin: 0;
}

.featured-video-list {
  padding: 18px;
}

.featured-video-list h4 {
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.featured-video-item {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: grid;
  gap: 12px;
  grid-template-columns: 112px 1fr;
  margin-bottom: 12px;
  padding: 10px;
  text-align: left;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  width: 100%;
}

.featured-video-item:hover,
.featured-video-item.active {
  background: rgba(0, 212, 255, 0.12);
  border-color: rgba(0, 212, 255, 0.38);
  transform: translateY(-1px);
}

.featured-video-item img {
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  object-fit: cover;
  width: 100%;
}

.featured-video-item strong,
.featured-video-item small {
  display: block;
}

.featured-video-item strong {
  font-size: 0.92rem;
  line-height: 1.35;
}

.featured-video-item small {
  color: #cbd5e1;
  font-size: 0.78rem;
  line-height: 1.45;
  margin-top: 5px;
}

/* Video Modal Styles */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-modal.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: #1a1a2e;
  border-radius: 15px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.modal-header {
  padding: 20px 20px 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.modal-video-container {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}

.modal-video {
  width: 100%;
  height: auto;
  max-height: 60vh;
  border-radius: 8px;
  outline: none;
}

.modal-footer {
  padding: 15px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-desc {
  color: #cccccc;
  font-size: 14px;
  margin: 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .video-categories {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .video-thumbnail {
    height: 140px;
  }

  .modal-content {
    width: 95%;
    margin: 20px;
  }

  .modal-video {
    max-height: 50vh;
  }
}

/* ============================================
   DAILY DEAL WIDGET STYLES - ULTRA COMPACT
   ============================================ */

.daily-deal-widget {
  border: 1px solid rgba(255, 0, 110, 0.6);
  border-radius: 8px;
  padding: 6px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(255, 0, 110, 0.4), 0 0 16px rgba(255, 0, 110, 0.2), inset 0 0 8px rgba(255, 0, 110, 0.1);
  animation: dealGlow 2s ease-in-out infinite;
}

@keyframes dealGlow {
  0%, 100% {
    box-shadow: 0 0 8px rgba(255, 0, 110, 0.4), 0 0 16px rgba(255, 0, 110, 0.2), inset 0 0 8px rgba(255, 0, 110, 0.1);
  }
  50% {
    box-shadow: 0 0 12px rgba(255, 0, 110, 0.6), 0 0 24px rgba(255, 0, 110, 0.3), inset 0 0 12px rgba(255, 0, 110, 0.15);
  }
}

.deal-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  z-index: 0;
}

.deal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.7), rgba(26, 31, 58, 0.75));
  z-index: 1;
}

.deal-content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.deal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1px;
}

.deal-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.deal-title i {
  color: #ff006e;
  margin-right: 2px;
}

.deal-badge {
  background: linear-gradient(135deg, #ff006e, #ff4d94);
  color: white;
  padding: 1px 4px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.55rem;
  box-shadow: 0 0 6px rgba(255, 0, 110, 0.5);
}

.deal-info {
  text-align: center;
  line-height: 1;
}

.deal-name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.deal-type {
  display: block;
  font-size: 0.5rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.deal-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
}

.deal-prices {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.deal-original-price {
  text-decoration: line-through;
  color: var(--text-secondary);
  font-size: 0.6rem;
  opacity: 0.7;
}

.deal-discounted-price {
  color: #00ff88;
  font-size: 0.85rem;
  font-weight: bold;
  text-shadow: 0 0 6px rgba(0, 255, 136, 0.5);
}

.deal-bottom {
  display: flex;
  align-items: center;
  gap: 4px;
}

.deal-play-btn {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
}

.deal-play-btn:hover {
  box-shadow: 0 0 8px var(--primary-color);
}

.deal-countdown {
  font-family: 'Orbitron', monospace;
  font-size: 0.8rem;
  color: var(--primary-color);
  text-shadow: 0 0 6px var(--glow-color);
  background: rgba(0, 0, 0, 0.3);
  padding: 3px 6px;
  border-radius: 4px;
}

.deal-countdown span {
  font-weight: bold;
}

.deal-add-to-cart-btn {
  flex: 1;
  padding: 4px 6px;
  border: none;
  border-radius: 4px;
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  color: #0a0e27;
  font-weight: bold;
  font-size: 0.55rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.deal-add-to-cart-btn:hover {
  box-shadow: 0 2px 6px rgba(0, 255, 136, 0.4);
}

.deal-add-to-cart-btn.added {
  background: linear-gradient(135deg, #00ff88, #00ff88);
}

/* Store Deal Badge (for highlighting items in the store) */
.store-deal-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #ff006e, #ff4d94);
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: bold;
  box-shadow: 0 0 15px rgba(255, 0, 110, 0.5);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 5px;
  animation: pulseBadge 2s ease-in-out infinite;
}

.store-deal-badge i {
  font-size: 0.7rem;
}

/* Daily Deal Item Highlight */
.daily-deal-item {
  position: relative;
  border-color: rgba(255, 0, 110, 0.5) !important;
  box-shadow: 0 0 20px rgba(255, 0, 110, 0.2) !important;
}

.daily-deal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 0, 110, 0.05), transparent);
  pointer-events: none;
}

/* Strikethrough price in store */
.original-price-strike {
  text-decoration: line-through;
  color: var(--text-secondary);
  opacity: 0.7;
  margin-right: 8px;
}

.discounted-price-green {
  color: #00ff88;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Partners Section */
.partners-intro-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) 1.2fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
  padding: 28px;
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 20px;
  background:
    radial-gradient(circle at top left, rgba(0, 212, 255, 0.16), transparent 36%),
    rgba(15, 23, 42, 0.78);
}

.partners-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-color);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.partners-intro-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.55rem;
  line-height: 1.25;
}

.partners-intro-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

.partner-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 0.82)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.partner-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0, 212, 255, 0.12), transparent 34%);
  pointer-events: none;
}

.partner-card > * {
  position: relative;
  z-index: 1;
}

.partner-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.partner-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 118px;
  min-height: 58px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
}

.partner-logo-dark {
  background: rgba(12, 18, 32, 0.96);
}

.partner-logo {
  width: 100%;
  max-height: 38px;
  object-fit: contain;
}

.partner-badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.14);
  color: var(--primary-color);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.35rem;
}

.partner-card p,
.partner-feature-list,
.partner-mini-offer span {
  color: var(--text-secondary);
  line-height: 1.6;
}

.partner-feature-list {
  display: grid;
  gap: 9px;
  padding-left: 18px;
  font-size: 0.9rem;
}

.partner-link,
.partner-mini-offer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 12px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #020617;
  font-weight: 800;
  text-decoration: none;
}

.partner-offer-stack {
  display: grid;
  gap: 14px;
}

.partner-mini-offer {
  display: grid;
  gap: 10px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
}

.partner-mini-offer strong {
  color: var(--text-primary);
}

.partner-sublogos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.partner-sublogos img {
  max-width: 110px;
  max-height: 34px;
  padding: 7px 9px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  object-fit: contain;
}

.partner-claim-box {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.partner-qr {
  width: 112px;
  height: 112px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  padding: 6px;
}

.partner-code-label {
  display: block;
  color: var(--accent-color);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.partner-code {
  display: block;
  margin: 4px 0 8px;
  color: var(--text-primary);
  font-family: 'Orbitron', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .partners-intro-card,
  .partner-claim-box {
    grid-template-columns: 1fr;
  }
}
