/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Primary Colors */
  --purple-primary: #7C3AED;
  --purple-light: #A78BFA;
  --purple-dark: #5B21B6;
  --gold: #F59E0B;
  --gold-light: #FCD34D;
  --gold-dark: #D97706;
  
  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --light-gray: #F3F4F6;
  --gray: #9CA3AF;
  --dark-gray: #6B7280;
  --charcoal: #374151;
  --black: #111827;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-purple: 0 10px 30px -5px rgba(124, 58, 237, 0.3);
  --shadow-gold: 0 10px 30px -5px rgba(245, 158, 11, 0.3);
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-nav {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===================================
   NAVBAR
   =================================== */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.container-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
}

.logo i {
  color: var(--purple-primary);
  font-size: 1.75rem;
}

.logo .artist {
  color: var(--gold);
  margin-left: 0.25rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  padding: 0.5rem 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-primary), var(--gold));
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--purple-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a i {
  font-size: 1rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-btn {
  background: var(--light-gray);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  color: var(--dark-gray);
}

.search-btn:hover {
  background: var(--purple-light);
  color: var(--white);
  transform: scale(1.05);
}

.btn-primary-small {
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
  color: var(--white);
  border: none;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-purple);
}

.btn-primary-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -5px rgba(124, 58, 237, 0.4);
}

.btn-primary-small i {
  color: var(--gold);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  position: relative;
  padding: 6rem 0 4rem;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(245, 158, 11, 0.05));
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-purple);
}

.hero-badge i {
  color: var(--gold);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--black), var(--purple-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--dark-gray);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-player-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0, 0, 0, 0.05);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.player-thumbnail {
  position: relative;
  flex-shrink: 0;
}

.player-thumbnail img {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  opacity: 0;
  transition: var(--transition);
}

.player-thumbnail:hover .play-overlay {
  opacity: 1;
}

.play-btn-large {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  color: var(--purple-primary);
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.play-btn-large:hover {
  transform: scale(1.1);
}

.player-info {
  flex: 1;
  text-align: left;
}

.now-playing-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--purple-primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pulse {
  animation: pulse 2s infinite;
  font-size: 0.5rem;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.player-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: var(--black);
}

.player-info > p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: var(--light-gray);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple-primary), var(--gold));
  border-radius: 10px;
  transition: var(--transition);
}

.time-stamps {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.control-buttons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.control-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--light-gray);
  color: var(--dark-gray);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.control-btn:hover {
  background: var(--purple-light);
  color: var(--white);
  transform: scale(1.05);
}

.control-btn.play-main {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
  color: var(--white);
  box-shadow: var(--shadow-purple);
}

.control-btn.play-main:hover {
  transform: scale(1.1);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.btn-primary,
.btn-outline,
.btn-gold {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
  color: var(--white);
  box-shadow: var(--shadow-purple);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -5px rgba(124, 58, 237, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--purple-primary);
  border: 2px solid var(--purple-primary);
}

.btn-outline:hover {
  background: var(--purple-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -5px rgba(245, 158, 11, 0.4);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-item i {
  font-size: 2rem;
  color: var(--purple-primary);
}

.stat-item strong {
  display: block;
  font-size: 1.75rem;
  color: var(--black);
  font-weight: 700;
}

.stat-item span {
  display: block;
  color: var(--gray);
  font-size: 0.9rem;
}

/* ===================================
   SECTIONS
   =================================== */
.section {
  padding: 5rem 0;
}

.section-dark {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--light-gray) 100%);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1.1rem;
}

.view-all {
  color: var(--purple-primary);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.view-all:hover {
  gap: 0.75rem;
}

/* ===================================
   SONG CARDS
   =================================== */
.songs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.song-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.song-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.song-thumbnail {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.song-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.song-card:hover .song-thumbnail img {
  transform: scale(1.05);
}

.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  color: var(--purple-primary);
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  box-shadow: var(--shadow-lg);
}

.play-btn:hover {
  transform: scale(1.15);
  background: var(--purple-primary);
  color: var(--white);
}

.song-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.song-info {
  padding: 1.5rem;
}

.song-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--black);
  font-weight: 700;
}

.artist-name {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.song-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--gray);
  font-size: 0.9rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--light-gray);
}

.song-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.song-meta i {
  color: var(--purple-primary);
}

.song-actions {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--light-gray);
}

.action-btn {
  flex: 1;
  padding: 0.6rem 1rem;
  border: 1px solid var(--light-gray);
  background: var(--white);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--dark-gray);
  font-weight: 500;
}

.action-btn:hover {
  background: var(--off-white);
  border-color: var(--purple-light);
  color: var(--purple-primary);
}

.action-btn.liked {
  background: rgba(124, 58, 237, 0.1);
  border-color: var(--purple-light);
  color: var(--purple-primary);
}

.action-btn.menu {
  flex: 0.3;
}

.action-btn i {
  font-size: 1rem;
}

.streaming-platforms {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  justify-content: center;
}

.platform-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.25rem;
}

.platform-link.spotify {
  background: #1DB954;
  color: var(--white);
}

.platform-link.apple {
  background: #000000;
  color: var(--white);
}

.platform-link.youtube {
  background: #FF0000;
  color: var(--white);
}

.platform-link:hover {
  transform: scale(1.15);
  box-shadow: var(--shadow-md);
}

/* ===================================
   EVENT CARDS
   =================================== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
}

.event-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.event-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.event-card:hover .event-image img {
  transform: scale(1.05);
}

.event-date-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--white);
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.event-date-badge .month {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--purple-primary);
  text-transform: uppercase;
}

.event-date-badge .day {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.event-content {
  padding: 2rem;
}

.event-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.event-tag.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.event-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--black);
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--dark-gray);
  font-size: 0.95rem;
}

.detail-item i {
  color: var(--purple-primary);
  font-size: 1.1rem;
  width: 20px;
}

.event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--light-gray);
}

.ticket-price {
  display: flex;
  flex-direction: column;
}

.ticket-price .from {
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
}

.ticket-price .price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--purple-primary);
}

/* ===================================
   GALLERY
   =================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(124, 58, 237, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ===================================
   DONATION SECTION
   =================================== */
.donation-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-primary));
  overflow: hidden;
}

.donation-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.donation-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: var(--white);
}

.donation-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  backdrop-filter: blur(10px);
}

.donation-icon i {
  font-size: 2.5rem;
  color: var(--gold);
}

.donation-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.donation-content > p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.95;
}

.donation-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.donation-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.donation-stat i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.donation-stat strong {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.donation-stat span {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo i {
  color: var(--purple-light);
  font-size: 1.75rem;
}

.footer-logo .artist {
  color: var(--gold);
}

.footer-section p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.1rem;
}

.social-links a:hover {
  background: var(--purple-primary);
  transform: translateY(-3px);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: var(--gray);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--purple-light);
  padding-left: 5px;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.95rem;
}

.newsletter-form input::placeholder {
  color: var(--gray);
}

.newsletter-form button {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--purple-light);
}

/* ===================================
   MUSIC PAGE
   =================================== */
.page-header-music {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  padding: 4rem 0 3rem;
  position: relative;
}

.page-header-music::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(245, 158, 11, 0.05));
  z-index: 0;
}

.page-header-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--purple-primary);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--purple-light);
}

.page-header-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--black);
}

.page-header-content > p {
  font-size: 1.2rem;
  color: var(--dark-gray);
  margin-bottom: 2rem;
}

.filter-tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--light-gray);
  background: var(--white);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--dark-gray);
}

.filter-tab:hover {
  border-color: var(--purple-light);
  color: var(--purple-primary);
  transform: translateY(-2px);
}

.filter-tab.active {
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
  color: var(--white);
  border-color: var(--purple-primary);
  box-shadow: var(--shadow-purple);
}

.filter-tab i {
  font-size: 1rem;
}

/* Featured Song Card */
.featured-song-card {
  position: relative;
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 4rem;
  box-shadow: var(--shadow-xl);
  height: 400px;
  display: flex;
  align-items: center;
}

.featured-song-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.featured-song-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
}

.featured-song-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-song-content {
  position: relative;
  z-index: 1;
  padding: 3rem;
  max-width: 600px;
  color: var(--white);
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-gold);
}

.featured-song-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.featured-artist {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.featured-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.featured-stats span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.featured-stats i {
  color: var(--gold);
}

.featured-actions {
  display: flex;
  gap: 1rem;
}

/* Music List */
.music-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.music-item {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.music-item:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.music-item-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
}

.music-item-left {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex: 1;
}

.music-thumbnail {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.music-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.music-item:hover .music-thumbnail img {
  transform: scale(1.1);
}

.play-btn-small {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  color: var(--purple-primary);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  padding-left: 3px;
}

.music-item:hover .play-btn-small {
  opacity: 1;
}

.play-btn-small:hover {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--purple-primary);
  color: var(--white);
}

.music-item-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.music-item-info > p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.music-item-meta {
  display: flex;
  gap: 0.75rem;
  color: var(--gray);
  font-size: 0.85rem;
  align-items: center;
}

.music-item-meta i {
  color: var(--purple-primary);
}

.divider {
  color: var(--gray);
}

.music-item-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.action-btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--light-gray);
  background: var(--white);
  color: var(--dark-gray);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.action-btn-icon:hover {
  background: var(--off-white);
  border-color: var(--purple-light);
  color: var(--purple-primary);
  transform: translateY(-2px);
}

.action-btn-icon.liked {
  background: rgba(124, 58, 237, 0.1);
  border-color: var(--purple-light);
  color: var(--purple-primary);
}

.action-btn-icon i {
  font-size: 1.1rem;
}

.action-btn-icon .count {
  font-size: 0.7rem;
  font-weight: 600;
}

.music-item-platforms {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-top: 1px solid var(--light-gray);
  align-items: center;
  flex-wrap: wrap;
}

.platform-label {
  color: var(--dark-gray);
  font-size: 0.9rem;
  font-weight: 600;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid var(--light-gray);
  background: var(--white);
  color: var(--dark-gray);
}

.platform-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.platform-badge.spotify {
  border-color: #1DB954;
  color: #1DB954;
}

.platform-badge.spotify:hover {
  background: #1DB954;
  color: var(--white);
}

.platform-badge.apple {
  border-color: #000000;
  color: #000000;
}

.platform-badge.apple:hover {
  background: #000000;
  color: var(--white);
}

.platform-badge.youtube {
  border-color: #FF0000;
  color: #FF0000;
}

.platform-badge.youtube:hover {
  background: #FF0000;
  color: var(--white);
}

/* Comments Section */
.music-item-comments {
  border-top: 1px solid var(--light-gray);
  padding: 1.5rem;
}

.comments-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.comments-header h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--black);
}

.comments-header i {
  color: var(--purple-primary);
}

.toggle-comments {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
  padding: 0.5rem;
}

.toggle-comments:hover {
  color: var(--purple-primary);
}

.comment-input-section {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.comment-input-wrapper {
  flex: 1;
  background: var(--off-white);
  border-radius: 16px;
  padding: 1rem;
  border: 2px solid transparent;
  transition: var(--transition);
}

.comment-input-wrapper:focus-within {
  background: var(--white);
  border-color: var(--purple-light);
}

.comment-input {
  width: 100%;
  border: none;
  background: none;
  font-size: 0.95rem;
  color: var(--black);
  outline: none;
  margin-bottom: 0.75rem;
}

.comment-input::placeholder {
  color: var(--gray);
}

.comment-input-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  align-items: center;
}

.emoji-btn {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
  padding: 0.5rem;
}

.emoji-btn:hover {
  color: var(--purple-primary);
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comment {
  display: flex;
  gap: 1rem;
}

.comment-content {
  flex: 1;
  background: var(--off-white);
  padding: 1rem;
  border-radius: 16px;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.comment-header strong {
  color: var(--black);
  font-size: 0.95rem;
}

.comment-time {
  color: var(--gray);
  font-size: 0.8rem;
}

.comment-content p {
  color: var(--dark-gray);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.comment-actions {
  display: flex;
  gap: 1rem;
}

.comment-action-btn {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  transition: var(--transition);
}

.comment-action-btn:hover {
  background: var(--white);
  color: var(--purple-primary);
}

.comment-action-btn.liked {
  color: var(--purple-primary);
}

.comment-action-btn i {
  font-size: 0.9rem;
}

/* ===================================
   PROFILE PAGE
   =================================== */
.profile-hero {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  padding: 4rem 0;
  position: relative;
}

.profile-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(245, 158, 11, 0.05));
}

.profile-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.profile-image-container {
  flex-shrink: 0;
}

.profile-image-wrapper {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
}

.profile-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-badge {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-lg);
}

.profile-badge i {
  color: var(--gold);
}

.social-proof {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-proof-item {
  flex: 1;
  background: var(--white);
  padding: 1rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
}

.social-proof-item i {
  font-size: 1.5rem;
  color: var(--purple-primary);
}

.social-proof-item strong {
  display: block;
  font-size: 1.1rem;
  color: var(--black);
}

.social-proof-item span {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
}

.profile-header-info {
  flex: 1;
}

.profile-header-info h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--black);
}

.profile-tagline {
  font-size: 1.2rem;
  color: var(--dark-gray);
  margin-bottom: 2rem;
}

.profile-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-box {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-box i {
  font-size: 2rem;
  color: var(--purple-primary);
}

.stat-box strong {
  display: block;
  font-size: 1.5rem;
  color: var(--black);
}

.stat-box span {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
}

.profile-actions {
  display: flex;
  gap: 1rem;
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
}

.content-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.content-header {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--light-gray);
}

.content-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.75rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}

.content-icon.purple {
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
  box-shadow: var(--shadow-purple);
}

.content-icon.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: var(--shadow-gold);
}

.content-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 0.25rem;
  color: var(--black);
}

.subtitle {
  color: var(--gray);
  font-size: 1rem;
}

.content-body p {
  color: var(--dark-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.mv-item {
  background: var(--off-white);
  padding: 2rem;
  border-radius: 16px;
  border-left: 4px solid var(--purple-primary);
}

.mv-item h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--black);
  font-size: 1.25rem;
}

.mv-item i {
  color: var(--purple-primary);
}

.core-values {
  margin-top: 2rem;
}

.core-values h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.core-values i {
  color: var(--gold);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-item i {
  font-size: 2rem;
  color: var(--purple-primary);
  margin-bottom: 0.75rem;
}

.value-item strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--black);
  font-size: 1.1rem;
}

.value-item span {
  font-size: 0.85rem;
  color: var(--gray);
}

.outreach-programs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.program-card {
  background: var(--off-white);
  padding: 2rem;
  border-radius: 16px;
  transition: var(--transition);
}

.program-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.program-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.program-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.program-card p {
  margin-bottom: 1rem;
}

.program-stats {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--purple-primary);
  font-size: 0.9rem;
  font-weight: 600;
}

.program-stats i {
  color: var(--gold);
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-card h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--black);
  font-size: 1.25rem;
}

.sidebar-card h3 i {
  color: var(--purple-primary);
}

.achievements-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.achievement-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.achievement-year {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.achievement-details strong {
  display: block;
  color: var(--black);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.achievement-details span {
  font-size: 0.85rem;
  color: var(--gray);
}

.social-links-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--off-white);
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
}

.social-link-item:hover {
  background: var(--white);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.social-link-item i {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.social-link-item.instagram i {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link-item.youtube i {
  background: #FF0000;
}

.social-link-item.facebook i {
  background: #1877F2;
}

.social-link-item.spotify i {
  background: #1DB954;
}

.social-link-item strong {
  display: block;
  color: var(--black);
  font-size: 1rem;
}

.social-link-item span {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
}

.cta-card {
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
  color: var(--white);
  text-align: center;
}

.cta-card i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.cta-card h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.profile-cta-section {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-primary));
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
}

.profile-cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.profile-cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-outline.white {
  border-color: var(--white);
  color: var(--white);
}

.btn-outline.white:hover {
  background: var(--white);
  color: var(--purple-primary);
}

/* ===================================
   EVENTS PAGE
   =================================== */
.events-hero {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  padding: 4rem 0 3rem;
  position: relative;
}

.events-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(245, 158, 11, 0.05));
}

.events-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.events-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-purple);
}

.events-badge i {
  color: var(--gold);
}

.events-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--black);
}

.events-hero-content > p {
  font-size: 1.2rem;
  color: var(--dark-gray);
  margin-bottom: 2rem;
}

.events-filter {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.event-filter-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--light-gray);
  background: var(--white);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--dark-gray);
}

.event-filter-btn:hover,
.event-filter-btn.active {
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
  color: var(--white);
  border-color: var(--purple-primary);
  box-shadow: var(--shadow-purple);
}

.view-options {
  display: flex;
  gap: 0.5rem;
}

.view-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--light-gray);
  background: var(--white);
  color: var(--dark-gray);
  cursor: pointer;
  transition: var(--transition);
}

.view-btn:hover,
.view-btn.active {
  background: var(--purple-primary);
  color: var(--white);
  border-color: var(--purple-primary);
}

.events-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  gap: 2.5rem;
}

.event-card-premium {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.event-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.event-card-premium.featured {
  border: 2px solid var(--gold);
}

.event-image-premium {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.event-image-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.event-card-premium:hover .event-image-premium img {
  transform: scale(1.05);
}

.event-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem;
}

.event-date-badge-large {
  background: var(--white);
  width: 80px;
  padding: 1rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.event-date-badge-large .month {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--purple-primary);
  text-transform: uppercase;
}

.event-date-badge-large .day {
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  margin: 0.25rem 0;
}

.event-date-badge-large .year {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 600;
}

.event-status-badge {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-status-badge.featured-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.event-card-content {
  padding: 2rem;
}

.event-location-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--purple-primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.event-card-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--black);
}

.event-description {
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.event-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.event-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.event-detail i {
  color: var(--purple-primary);
  font-size: 1.1rem;
  width: 20px;
  margin-top: 2px;
}

.event-detail .label {
  display: block;
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.event-detail strong {
  display: block;
  color: var(--black);
  font-size: 0.95rem;
}

.tickets-remaining {
  color: var(--gold) !important;
}

.tickets-available {
  color: var(--purple-primary) !important;
}

.ticket-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: 16px;
}

.ticket-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--light-gray);
}

.ticket-type:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ticket-info strong {
  display: block;
  color: var(--black);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.ticket-info span {
  font-size: 0.85rem;
  color: var(--gray);
}

.ticket-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--purple-primary);
}

.event-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.full-width {
  width: 100%;
}

.event-action-buttons {
  display: flex;
  gap: 0.75rem;
}

.action-icon-btn {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid var(--light-gray);
  background: var(--white);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  color: var(--dark-gray);
}

.action-icon-btn:hover {
  background: var(--off-white);
  border-color: var(--purple-light);
  color: var(--purple-primary);
}

.past-events-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.past-event-item {
  position: relative;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.past-event-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.past-event-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition);
}

.past-event-item:hover img {
  transform: scale(1.1);
}

.past-event-item:hover .past-event-overlay {
  opacity: 1;
}

.past-event-info {
  color: var(--white);
  margin-bottom: 1rem;
}

.past-event-info h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.past-event-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.past-event-info i {
  color: var(--gold);
}

.view-gallery-btn {
  background: var(--white);
  color: var(--purple-primary);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  transition: var(--transition);
}

.view-gallery-btn:hover {
  background: var(--gold);
  color: var(--white);
}

.events-newsletter {
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
  padding: 5rem 0;
}

.newsletter-content {
  text-align: center;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-content i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.newsletter-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.newsletter-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.newsletter-form-large {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form-large input {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 1rem;
}

.newsletter-form-large input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   DONATIONS PAGE
   =================================== */
.donate-hero {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-primary));
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.donate-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.donate-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
}

.donate-icon-large {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.donate-icon-large i {
  font-size: 3rem;
  color: var(--gold);
}

.donate-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.donate-hero-content > p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.95;
}

.impact-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
}

.impact-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.impact-stat i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.impact-stat strong {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.impact-stat span {
  font-size: 1rem;
  opacity: 0.9;
}

.section-header.centered {
  text-align: center;
  display: block;
}

.donation-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.donation-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
}

.donation-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--purple-light);
}

.donation-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--white) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.featured-ribbon {
  position: absolute;
  top: 1.5rem;
  right: -0.75rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 0.5rem 1.5rem 0.5rem 1rem;
  border-radius: 50px 0 0 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-gold);
}

.donation-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-purple);
}

.donation-icon-wrapper.food {
  background: linear-gradient(135deg, #10B981, #059669);
}

.donation-icon-wrapper.education {
  background: linear-gradient(135deg, #3B82F6, #2563EB);
}

.donation-icon-wrapper.worship {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: var(--shadow-gold);
}

.donation-icon-wrapper.youth {
  background: linear-gradient(135deg, #EC4899, #DB2777);
}

.donation-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--black);
}

.donation-description {
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  min-height: 80px;
}

.donation-impact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--off-white);
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  color: var(--purple-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.donation-impact i {
  color: var(--gold);
}

.suggested-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.amount-btn {
  padding: 0.75rem;
  border: 2px solid var(--light-gray);
  background: var(--white);
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark-gray);
  transition: var(--transition);
}

.amount-btn:hover,
.amount-btn.active {
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
  color: var(--white);
  border-color: var(--purple-primary);
}

.donate-btn {
  margin-bottom: 1.5rem;
}

.donation-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--light-gray);
  font-size: 0.9rem;
  color: var(--gray);
}

.donation-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.donation-meta i {
  color: var(--purple-primary);
}

.campaign-progress-card {
  background: var(--white);
  border-radius: 30px;
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.campaign-header {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.campaign-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.5rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}

.campaign-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.campaign-header p {
  color: var(--dark-gray);
  font-size: 1.1rem;
}

.progress-section {
  margin-bottom: 3rem;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.progress-label {
  font-size: 0.9rem;
  color: var(--gray);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.progress-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--purple-primary);
}

.text-right {
  text-align: right;
}

.progress-bar-large {
  height: 20px;
  background: var(--light-gray);
  border-radius: 50px;
  overflow: visible;
  position: relative;
  margin-bottom: 2rem;
}

.progress-fill-large {
  height: 100%;
  background: linear-gradient(90deg, var(--purple-primary), var(--gold));
  border-radius: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 1rem;
  box-shadow: var(--shadow-purple);
}

.progress-percentage {
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}

.progress-milestones {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.milestone i {
  font-size: 1.5rem;
  color: var(--light-gray);
}

.milestone.reached i {
  color: var(--gold);
}

.milestone span {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 600;
}

.campaign-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.campaign-stat {
  text-align: center;
  padding: 2rem;
  background: var(--off-white);
  border-radius: 16px;
}

.campaign-stat i {
  font-size: 2.5rem;
  color: var(--purple-primary);
  margin-bottom: 1rem;
}

.campaign-stat strong {
  display: block;
  font-size: 2rem;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.campaign-stat span {
  color: var(--gray);
  font-size: 0.95rem;
}

.stripe-donation-card {
  background: var(--white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--purple-light);
}

.stripe-header {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--light-gray);
}

.stripe-header i {
  font-size: 4rem;
  color: #635BFF;
}

.stripe-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.stripe-header p {
  color: var(--gray);
  font-size: 1.1rem;
}

.stripe-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.info-item i {
  font-size: 1.75rem;
  color: var(--purple-primary);
  width: 40px;
}

.info-item strong {
  display: block;
  color: var(--black);
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.info-item span {
  font-size: 0.9rem;
  color: var(--gray);
}

.donation-type-selector {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.donation-type-btn {
  flex: 1;
  padding: 1rem;
  border: 2px solid var(--light-gray);
  background: var(--white);
  border-radius: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--dark-gray);
  font-size: 1.1rem;
}

.donation-type-btn:hover,
.donation-type-btn.active {
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
  color: var(--white);
  border-color: var(--purple-primary);
}

.custom-amount-input {
  position: relative;
  margin-bottom: 2rem;
}

.custom-amount-input .currency {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  font-weight: 700;
  color: var(--purple-primary);
}

.custom-amount-input input {
  width: 100%;
  padding: 1.5rem 1.5rem 1.5rem 4rem;
  border: 2px solid var(--purple-light);
  border-radius: 16px;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black);
  background: var(--off-white);
}

.custom-amount-input input:focus {
  outline: none;
  border-color: var(--purple-primary);
  background: var(--white);
}

.large-btn {
  padding: 1.25rem 2.5rem;
  font-size: 1.2rem;
}

.stripe-checkout-btn {
  margin-bottom: 1rem;
}

.stripe-checkout-btn i {
  font-size: 1.5rem;
}

.stripe-notice {
  text-align: center;
  color: var(--gray);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.stripe-notice i {
  color: var(--purple-primary);
}

.impact-stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.impact-story {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.impact-story:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.impact-story img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.story-content {
  padding: 2rem;
}

.story-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.story-tag.education {
  background: linear-gradient(135deg, #3B82F6, #2563EB);
}

.story-tag.worship {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.story-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.story-content p {
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.story-meta strong {
  display: block;
  color: var(--black);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.story-meta span {
  color: var(--gray);
  font-size: 0.9rem;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .nav-links {
    gap: 1.5rem;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .featured-song-card {
    height: auto;
  }

  .featured-song-content h2 {
    font-size: 2.5rem;
  }

  .music-item-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-player-card {
    flex-direction: column;
    text-align: center;
  }

  .player-info {
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .songs-grid {
    grid-template-columns: 1fr;
  }

  .donation-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .page-header-content h1 {
    font-size: 2rem;
  }

  .filter-tabs {
    gap: 0.5rem;
  }

  .filter-tab {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .featured-song-content {
    padding: 2rem;
  }

  .featured-song-content h2 {
    font-size: 2rem;
  }

  .featured-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .featured-actions {
    flex-direction: column;
  }

  .music-item-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .music-item-actions {
    width: 100%;
    justify-content: space-between;
  }

  .action-btn-icon {
    width: auto;
    padding: 0.5rem 0.75rem;
  }

  .music-item-platforms {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Profile Page Responsive */
  .profile-hero-content {
    flex-direction: column;
    gap: 2rem;
  }

  .profile-image-wrapper {
    width: 250px;
    height: 250px;
    margin: 0 auto;
  }

  .profile-header-info h1 {
    font-size: 2.5rem;
  }

  .profile-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-actions {
    flex-direction: column;
  }

  .about-content-grid {
    grid-template-columns: 1fr;
  }

  .about-sidebar {
    order: -1;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .outreach-programs {
    grid-template-columns: 1fr;
  }

  /* Events Page Responsive */
  .events-hero-content h1 {
    font-size: 2.5rem;
  }

  .events-grid-premium {
    grid-template-columns: 1fr;
  }

  .event-details-grid {
    grid-template-columns: 1fr;
  }

  .past-events-gallery {
    grid-template-columns: 1fr;
  }

  .newsletter-form-large {
    flex-direction: column;
  }

  /* Donations Page Responsive */
  .donate-hero-content h1 {
    font-size: 2.5rem;
  }

  .impact-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .donation-cards-grid {
    grid-template-columns: 1fr;
  }

  .campaign-stats {
    grid-template-columns: 1fr;
  }

  .stripe-content {
    grid-template-columns: 1fr;
  }

  .impact-stories-grid {
    grid-template-columns: 1fr;
  }

  .progress-milestones {
    flex-wrap: wrap;
    gap: 1rem;
  }
}


/* ===================================
   ARTIST PHOTO GALLERY
   Add this section to your style.css file
   =================================== */

.artist-photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  grid-auto-flow: dense;
  margin-bottom: 3rem;
}

.photo-item {
  position: relative;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

/* Special grid items for visual interest */
.photo-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-item-wide {
  grid-column: span 2;
}

.photo-item-tall {
  grid-row: span 2;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.85), rgba(245, 158, 11, 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.photo-overlay i {
  color: var(--white);
  font-size: 3rem;
  transform: scale(0.8);
  transition: var(--transition);
}

.photo-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.photo-item:hover img {
  transform: scale(1.1);
}

.photo-item:hover .photo-overlay {
  opacity: 1;
}

.photo-item:hover .photo-overlay i {
  transform: scale(1);
}

/* Responsive adjustments for photo gallery */
@media (max-width: 1024px) {
  .artist-photo-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .artist-photo-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .photo-item {
    height: 250px;
  }
  
  .photo-item-large,
  .photo-item-wide,
  .photo-item-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 480px) {
  .artist-photo-gallery {
    grid-template-columns: 1fr;
  }
}





/* ===================================
   MOBILE NAV - HAMBURGER & MENU
   =================================== */

.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
  z-index: 1100;
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 4px;
  transition: var(--transition);
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
}

.mobile-nav-links a,
.mobile-nav-links button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.5rem;
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 500;
  font-size: 1rem;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-nav-links a:hover,
.mobile-nav-links button:hover {
  background: var(--off-white);
  color: var(--purple-primary);
  padding-left: 2rem;
}

.mobile-nav-links a.active {
  color: var(--purple-primary);
  background: rgba(124, 58, 237, 0.05);
  border-left: 3px solid var(--purple-primary);
}

.mobile-nav-links i {
  width: 20px;
  text-align: center;
  color: var(--purple-primary);
}

.mobile-menu-divider {
  height: 1px;
  background: var(--light-gray);
  margin: 0.5rem 1.5rem;
}

.mobile-admin-link {
  color: var(--gold) !important;
}

.mobile-admin-link i {
  color: var(--gold) !important;
}

.mobile-register-btn {
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark)) !important;
  color: var(--white) !important;
  margin: 0.5rem 1rem;
  border-radius: 12px !important;
  justify-content: center;
}

.mobile-logout-btn {
  color: #EF4444 !important;
}

.mobile-logout-btn i {
  color: #EF4444 !important;
}

/* ===================================
   USER DROPDOWN (Desktop)
   =================================== */

.logo {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.auth-nav-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.auth-link-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--dark-gray);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: var(--transition);
}

.auth-link-nav:hover {
  background: var(--light-gray);
  color: var(--purple-primary);
}

.user-menu-wrapper {
  position: relative;
}

.user-menu-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: 50px;
  padding: 0.4rem 0.75rem 0.4rem 0.5rem;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
}

.user-menu-toggle:hover {
  border-color: var(--purple-light);
  background: var(--white);
}

.user-avatar-nav {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

.user-name-nav {
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-chevron {
  font-size: 0.75rem;
  color: var(--gray);
  transition: var(--transition);
}

.user-menu-toggle[aria-expanded="true"] .user-chevron {
  transform: rotate(180deg);
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  min-width: 220px;
  z-index: 2000;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}

.user-dropdown.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.user-dropdown-header {
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(124,58,237,0.05), rgba(245,158,11,0.05));
}

.user-dropdown-name {
  font-weight: 700;
  color: var(--black);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.user-dropdown-email {
  font-size: 0.8rem;
  color: var(--gray);
}

.user-dropdown-divider {
  height: 1px;
  background: var(--light-gray);
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 500;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.user-dropdown-item:hover {
  background: var(--off-white);
  color: var(--purple-primary);
}

.user-dropdown-item i {
  width: 18px;
  text-align: center;
  color: var(--purple-primary);
  font-size: 0.95rem;
}

.admin-link {
  color: var(--gold-dark) !important;
}

.admin-link i {
  color: var(--gold) !important;
}

.logout-btn {
  color: #EF4444 !important;
}

.logout-btn i {
  color: #EF4444 !important;
}

/* ===================================
   FLASH MESSAGES
   =================================== */

.flash-message {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.flash-success {
  background: #D1FAE5;
  color: #065F46;
  border-bottom: 2px solid #10B981;
}

.flash-error {
  background: #FEE2E2;
  color: #991B1B;
  border-bottom: 2px solid #EF4444;
}

.flash-close {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.6;
  color: inherit;
  transition: var(--transition);
  padding: 0.25rem;
  border-radius: 4px;
}

.flash-close:hover {
  opacity: 1;
  background: rgba(0,0,0,0.1);
}

/* ===================================
   ADMIN LAYOUT
   =================================== */

.admin-body {
  background: #F1F5F9;
  display: flex;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Sidebar */
.admin-sidebar {
  width: 270px;
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}

.admin-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.admin-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}

.admin-logo i {
  font-size: 1.75rem;
  color: var(--purple-light);
}

.admin-logo-title {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.admin-logo-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

.admin-sidebar-close {
  display: none;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.admin-sidebar-close:hover {
  background: rgba(255,255,255,0.2);
}

.admin-profile-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(124,58,237,0.2);
}

.admin-profile-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.admin-profile-info strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.admin-profile-info span {
  font-size: 0.75rem;
  color: var(--purple-light);
  font-weight: 500;
}

.admin-nav {
  flex: 1;
  padding: 1rem 0;
  overflow-y: auto;
}

.admin-nav-section {
  margin-bottom: 0.5rem;
}

.admin-nav-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.75rem 1.5rem 0.4rem;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.5rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  border-radius: 0;
}

.admin-nav-item:hover {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  padding-left: 2rem;
}

.admin-nav-item.active {
  background: linear-gradient(90deg, rgba(124,58,237,0.3), transparent);
  color: var(--white);
  border-left: 3px solid var(--purple-light);
}

.admin-nav-item i {
  width: 20px;
  text-align: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.admin-nav-item span:not(.admin-nav-badge) {
  flex: 1;
}

.admin-nav-badge {
  background: var(--purple-primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 50px;
  min-width: 22px;
  text-align: center;
}

.admin-nav-badge.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.admin-sidebar-footer {
  padding: 0.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.admin-logout-btn {
  color: rgba(239,68,68,0.8) !important;
}

.admin-logout-btn:hover {
  background: rgba(239,68,68,0.1) !important;
  color: #EF4444 !important;
  padding-left: 2rem;
}

/* Admin Main */
.admin-main {
  margin-left: 270px;
  flex: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: margin-left 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* Admin Topbar */
.admin-topbar {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.admin-topbar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.admin-sidebar-toggle {
  background: var(--light-gray);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  cursor: pointer;
  color: var(--charcoal);
  font-size: 1rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-sidebar-toggle:hover {
  background: var(--purple-primary);
  color: var(--white);
}

.admin-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.admin-breadcrumb a {
  color: var(--purple-primary);
  text-decoration: none;
  font-weight: 500;
}

.admin-breadcrumb a:hover {
  text-decoration: underline;
}

.admin-topbar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.admin-topbar-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--light-gray);
  background: var(--white);
  color: var(--dark-gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
  text-decoration: none;
  font-size: 0.95rem;
}

.admin-topbar-btn:hover {
  background: var(--off-white);
  color: var(--purple-primary);
}

.admin-notif-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #EF4444;
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

.admin-user-menu {
  position: relative;
}

.admin-user-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: 50px;
  padding: 0.35rem 0.75rem 0.35rem 0.4rem;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
}

.admin-user-toggle:hover {
  border-color: var(--purple-light);
}

.admin-user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-user-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  min-width: 210px;
  z-index: 2000;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}

.admin-user-dropdown.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.admin-user-dropdown-header {
  padding: 0.9rem 1.1rem;
  background: var(--off-white);
}

.admin-user-dropdown-header strong {
  display: block;
  font-size: 0.9rem;
  color: var(--black);
  margin-bottom: 0.15rem;
}

.admin-user-dropdown-header span {
  font-size: 0.78rem;
  color: var(--gray);
}

/* Admin Content */
.admin-content {
  padding: 2rem;
  flex: 1;
}

.admin-page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.admin-page-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.admin-page-subtitle {
  color: var(--gray);
  font-size: 0.95rem;
}

.admin-page-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Overlay for mobile sidebar */
.admin-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  backdrop-filter: blur(2px);
}

/* ===================================
   RESPONSIVE - MOBILE NAV & ADMIN
   =================================== */

@media (max-width: 1024px) {
  .admin-sidebar {
    transform: translateX(-100%);
  }

  .admin-sidebar.open {
    transform: translateX(0);
  }

  .admin-sidebar-close {
    display: flex;
  }

  .admin-main {
    margin-left: 0;
  }

  .admin-sidebar-overlay {
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .admin-sidebar-overlay.open {
    opacity: 1;
    pointer-events: all;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none !important;
  }

  .nav-actions {
    display: none !important;
  }

  .hamburger-btn {
    display: flex !important;
  }

  .mobile-menu {
    display: block;
  }

  .admin-content {
    padding: 1rem;
  }

  .admin-page-header {
    flex-direction: column;
    gap: 1rem;
  }

  .admin-topbar {
    padding: 0 1rem;
  }

  .admin-breadcrumb {
    display: none;
  }

  .user-name-nav {
    display: none;
  }

  .user-chevron {
    display: none;
  }
}

@media (max-width: 480px) {
  .admin-page-title {
    font-size: 1.4rem;
  }
}

/* ===================================
   ADMIN DASHBOARD COMPONENTS
   =================================== */

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.admin-stat-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}

.admin-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.admin-stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  flex-shrink: 0;
}

.admin-stat-icon.purple { background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark)); }
.admin-stat-icon.gold   { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.admin-stat-icon.green  { background: linear-gradient(135deg, #10B981, #059669); }
.admin-stat-icon.pink   { background: linear-gradient(135deg, #EC4899, #DB2777); }

.admin-stat-info strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.admin-stat-info span {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.admin-stat-trend {
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.admin-stat-trend.up   { color: #10B981; }
.admin-stat-trend.down { color: #EF4444; }

.admin-dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.admin-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.04);
}

.admin-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--light-gray);
}

.admin-card-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.admin-card-header h3 i {
  color: var(--purple-primary);
}

.admin-card-link {
  font-size: 0.85rem;
  color: var(--purple-primary);
  text-decoration: none;
  font-weight: 600;
}

.admin-card-link:hover {
  text-decoration: underline;
}

.admin-quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.admin-quick-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: var(--off-white);
  border-radius: 16px;
  text-decoration: none;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
  border: 2px solid transparent;
}

.admin-quick-action:hover {
  background: var(--white);
  border-color: var(--purple-light);
  color: var(--purple-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.quick-action-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--white);
}

.quick-action-icon.purple { background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark)); }
.quick-action-icon.gold   { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.quick-action-icon.green  { background: linear-gradient(135deg, #10B981, #059669); }
.quick-action-icon.pink   { background: linear-gradient(135deg, #EC4899, #DB2777); }

.admin-recent-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-recent-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: 12px;
  transition: var(--transition);
}

.admin-recent-item:hover {
  background: var(--off-white);
}

.admin-recent-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.admin-recent-info {
  flex: 1;
  min-width: 0;
}

.admin-recent-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-recent-info span {
  font-size: 0.8rem;
  color: var(--gray);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.admin-recent-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
  flex-shrink: 0;
}

.admin-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  text-transform: capitalize;
}

.admin-badge-purple {
  background: rgba(124,58,237,0.1);
  color: var(--purple-primary);
}

.admin-badge-gray {
  background: var(--light-gray);
  color: var(--dark-gray);
}

.admin-recent-time {
  font-size: 0.75rem;
  color: var(--gray);
}

/* Admin Dashboard Responsive */
@media (max-width: 1200px) {
  .admin-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .admin-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .admin-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .admin-stat-card {
    padding: 1.25rem;
  }

  .admin-stat-info strong {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .admin-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ─────────────────────────────────────────────────────────────────
   Stripe Donation Page — Additional CSS
   Append to your public/css/style.css
   ───────────────────────────────────────────────────────────────── */

/* Currency selector buttons */
.currency-btn {
  padding: .45rem .9rem;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary, #9ca3af);
  border-radius: 8px;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 500;
  transition: all .2s;
}

.currency-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.currency-btn.active {
  border-color: var(--gold, #f59e0b);
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold, #f59e0b);
}

/* Large stripe checkout button */
.large-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  cursor: pointer;
  transition: all .25s;
  border: none;
}

.large-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

/* Full-width donate button override */
.full-width {
  width: 100%;
  justify-content: center;
}

/* ZWL notice box */
#zwlNotice {
  animation: fadeIn .25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Flash cancelled banner */
.flash-message {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.5rem;
  font-size: .95rem;
  font-weight: 500;
}

.flash-close {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  opacity: .7;
  color: inherit;
}

.flash-close:hover { opacity: 1; }