/* ==========================================================================
   REPUBLIKANISCHES VOLK (RPV) - OFFISZIELLES STYLESHEET
   Republik San Andreas • Cayo Perico • Bahamas
   ========================================================================== */

:root {
  --rpv-navy-dark: #071326;
  --rpv-navy-main: #0B2545;
  --rpv-navy-light: #133E6B;
  --rpv-gold: #D4AF37;
  --rpv-gold-light: #F3E5AB;
  --rpv-gold-dark: #AA820A;
  --rpv-red: #C5221F;
  --rpv-slate: #F8FAFC;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #071326;
}
::-webkit-scrollbar-thumb {
  background: #133E6B;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #D4AF37;
}

/* Gold Gradient Text & Borders */
.gold-text-gradient {
  background: linear-gradient(135deg, #FFF0B3 0%, #D4AF37 50%, #AA820A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-border-gradient {
  border-image: linear-gradient(135deg, #D4AF37, #FFF0B3, #AA820A) 1;
}

.gold-badge {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #F3E5AB;
}

/* Subtle Hero Pattern */
.hero-pattern {
  background-color: #071326;
  background-image: radial-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 0), radial-gradient(rgba(19, 62, 107, 0.25) 1px, #071326 1px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
}

/* Official Seal Animation */
.seal-spin-hover:hover .seal-inner {
  transform: rotate(15deg);
  transition: transform 0.4s ease;
}

/* Glassmorphism Cards */
.glass-panel {
  background: rgba(11, 37, 69, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.18);
}

.glass-panel:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 10px 30px -10px rgba(212, 175, 55, 0.15);
}

/* Membership Card (Parteiausweis) Styling */
.membership-card {
  width: 100%;
  max-width: 480px;
  min-height: 280px;
  background: linear-gradient(135deg, #071326 0%, #0B2545 60%, #133E6B 100%);
  border-radius: 16px;
  border: 2px solid #D4AF37;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.membership-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.membership-card-watermark {
  position: absolute;
  right: -20px;
  bottom: -20px;
  opacity: 0.07;
  font-size: 240px;
  color: #FFFFFF;
  pointer-events: none;
}

.hologram-strip {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 60px;
  width: 16px;
  background: linear-gradient(180deg, 
    rgba(255,0,0,0.2) 0%, 
    rgba(255,255,0,0.3) 25%, 
    rgba(0,255,0,0.2) 50%, 
    rgba(0,255,255,0.3) 75%, 
    rgba(255,0,255,0.2) 100%);
  opacity: 0.7;
}

/* Floating animation */
@keyframes subtle-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

.animate-float {
  animation: subtle-float 6s ease-in-out infinite;
}

/* Print specific rules for Member Card */
@media print {
  body * {
    visibility: hidden;
  }
  #membershipCardOutput, #membershipCardOutput * {
    visibility: visible;
  }
  #membershipCardOutput {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.1);
  }
}
