/* ===== COSMIC THEME - PARAÍSO ASTRAL ===== */

/* ===== BACKGROUND EFFECTS ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(209,37,244,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 100%, rgba(0,242,255,0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ===== STAR PARTICLES ===== */
.star-bg {
  background-image:
    radial-gradient(1px 1px at 15% 25%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 60% 15%, rgba(209,37,244,0.4), transparent),
    radial-gradient(2px 2px at 35% 65%, rgba(255,255,255,0.2), transparent),
    radial-gradient(1px 1px at 80% 40%, rgba(0,242,255,0.3), transparent),
    radial-gradient(1px 1px at 50% 80%, rgba(255,255,255,0.2), transparent);
}

/* ===== GRADIENT BORDERS ===== */
.gradient-border { padding: 1px; background: linear-gradient(135deg, var(--primary), var(--cyan)); border-radius: var(--radius-lg); }
.gradient-border-inner { background: var(--bg-card); border-radius: calc(var(--radius-lg) - 1px); }

/* ===== ADMIN THEME ===== */
.admin-header-card { background: linear-gradient(135deg, var(--primary), #6b1a8a); border-radius: var(--radius-lg); padding: 1.2rem; margin-bottom: 1.2rem; position: relative; overflow: hidden; }
.admin-header-card::after { content: '✦'; position: absolute; right: -10px; bottom: -20px; font-size: 6rem; opacity: 0.1; }

/* ===== PROFILE THEME ===== */
.profile-banner { width: 100%; height: 140px; background: linear-gradient(135deg, #1a0820, #3d0055); position: relative; }
.profile-avatar { width: 80px; height: 80px; border-radius: 50%; border: 3px solid var(--primary); background: var(--bg-glass); overflow: hidden; margin: -40px auto 0; display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: 0 0 20px var(--primary-glow); position: relative; z-index: 1; }

/* ===== HERO THEME ===== */
.hero-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1a0820 0%, #3d0055 40%, #1a0820 100%);
  display: flex; align-items: center; justify-content: center; font-size: 5rem;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,6,16,1) 0%, rgba(13,6,16,0.4) 40%, transparent 100%);
}

/* ===== EVENT THEME ===== */
.event-img-placeholder {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, #1a0d20 0%, #2d1b38 50%, #1a0d20 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--primary);
}

/* ===== ARTIST THEME ===== */
.artist-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #1a0d20, #2d0040, #1a0d20);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}

.artist-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,6,16,0.95), transparent);
  padding: 1rem 0.75rem 0.75rem;
}

/* ===== RRPP THEME ===== */
.rrpp-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), #6b1a8a); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }

/* ===== TICKET THEME ===== */
.ticket {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); position: relative;
  cursor: pointer;
}
.ticket.selected { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(209,37,244,0.3); }

/* ===== QR THEME ===== */
.qr-container { background: white; border-radius: var(--radius-lg); padding: 1rem; display: inline-block; }
.qr-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; width: 160px; height: 160px; }
.qr-cell { border-radius: 2px; }
.qr-black { background: #1a0d20; }
.qr-white { background: white; }
