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

/* ==========================================================================
   CSS VARIABLES & DESIGN SYSTEM
   ========================================================================== */
:root {
  /* Color Palette */
  --bg-dark: #070708;
  --bg-darker: #030304;
  --bg-card: rgba(15, 15, 18, 0.7);
  --border-gold: rgba(212, 175, 55, 0.25);
  --border-gold-glow: rgba(212, 175, 55, 0.6);
  
  /* Gold Color Tokens */
  --gold: #d4af37;
  --gold-light: #f3e5ab;
  --gold-dark: #aa7c11;
  --gold-deep: #1f190a;
  --gold-gradient: linear-gradient(135deg, #f5e4a9 0%, #d4af37 50%, #aa7c11 100%);
  --gold-glow-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  --gold-glow-shadow-intense: 0 0 30px rgba(212, 175, 55, 0.7);
  
  /* Neutral Typography colors */
  --text-primary: #ffffff;
  --text-secondary: #a0a0ab;
  --text-muted: #6b6b76;
  
  /* Fonts */
  --font-serif: 'Cinzel', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-darker);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body {
  background-color: var(--bg-darker);
  min-height: 100vh;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-deep);
  border: 1px solid var(--gold);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Selection Highlight */
::selection {
  background-color: var(--gold);
  color: var(--bg-darker);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

p, span, a, li, .gold-gradient-text {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--gold);
  display: inline-block;
}

p {
  color: var(--text-secondary);
  font-weight: 300;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   LAYOUT CONTAINERS
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

/* ==========================================================================
   NAVBAR (GLASSMORPHISM)
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(3, 3, 4, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background: rgba(3, 3, 4, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

.logo-icon {
  width: 32px;
  height: 32px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.logo-icon::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-link {
  text-decoration: none;
  font-family: var(--font-sans);
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
  text-shadow: var(--gold-glow-shadow);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}

.bar {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background-color: var(--text-primary);
  transition: var(--transition-smooth);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #030304;
  border: 1px solid var(--gold);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--gold-glow-shadow-intense);
  color: #000;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-gold-glow);
}

.btn-secondary:hover {
  border-color: var(--gold-light);
  background: rgba(212, 175, 55, 0.05);
  box-shadow: var(--gold-glow-shadow);
  transform: translateY(-2px);
}

/* ==========================================================================
   HERO SECTION (HOME)
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background-image: radial-gradient(circle at center, rgba(10, 10, 12, 0.2) 0%, var(--bg-darker) 80%), url('assets/gold_world_map.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-bottom: 1px solid var(--border-gold);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.2s;
}

.hero-tagline {
  font-family: var(--font-sans);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-tagline::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem;
  background: rgba(10, 10, 12, 0.4);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.08);
  display: inline-block;
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: var(--text-secondary);
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.9);
  animation: fadeInScale 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.4s;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/5;
  border: 1px solid var(--border-gold);
  padding: 15px;
  background: rgba(3, 3, 4, 0.6);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.hero-image-frame:hover::after {
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border-color: var(--border-gold-glow);
  box-shadow: var(--gold-glow-shadow);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--border-gold);
}

.laurel-decor {
  position: absolute;
  width: 150px;
  height: 150px;
  opacity: 0.15;
  pointer-events: none;
}

.laurel-left {
  bottom: -20px;
  left: -60px;
  transform: rotate(30deg);
}

.laurel-right {
  top: -20px;
  right: -60px;
  transform: rotate(-150deg);
}

/* ==========================================================================
   COMPARISON / MOTTO SECTION
   ========================================================================== */
.comparison-section {
  background-image: linear-gradient(180deg, var(--bg-darker) 0%, rgba(7, 7, 8, 0.95) 50%, var(--bg-darker) 100%), url('assets/executive_boardroom.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-bottom: 1px solid var(--border-gold);
}

.comp-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.section-label {
  font-family: var(--font-sans);
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.comp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.comp-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 3.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.5s ease, box-shadow 0.5s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.comp-card:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
  border-color: var(--border-gold-glow);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), var(--gold-glow-shadow-intense);
}

.comp-card-icon {
  margin-bottom: 2rem;
  width: 55px;
  height: 55px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.6rem;
  background: rgba(10, 10, 12, 0.6);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.5s ease, box-shadow 0.5s ease;
  animation: slowSpinVfx 10s linear infinite;
}

.comp-card:hover .comp-card-icon {
  transform: translateZ(30px) rotate(360deg) scale(1.1);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
  border-color: var(--gold-light);
}

@keyframes slowSpinVfx {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.comp-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.comp-card p {
  line-height: 1.8;
  margin-bottom: 2rem;
}

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

.comp-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-weight: 300;
}

.comp-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.8rem;
}

/* ==========================================================================
   CREST / CORE ISSUES SECTION
   ========================================================================== */
.issues-section {
  border-bottom: 1px solid var(--border-gold);
}

.crest-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem;
}

.gold-crest {
  width: 90px;
  height: 90px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--gold-glow-shadow);
  position: relative;
}

.gold-crest::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 1px dashed var(--gold-light);
  border-radius: 50%;
}

.gold-crest svg {
  width: 40px;
  height: 40px;
  fill: var(--gold-gradient);
}

.issues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.issue-card {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(7, 7, 8, 0.4);
  border: 1px solid transparent;
  transition: var(--transition-smooth);
}

.issue-card:hover {
  background: var(--bg-card);
  border-color: var(--border-gold);
  transform: translateY(-5px);
}

.issue-circle-wrapper {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8px;
  transition: var(--transition-smooth);
}

.issue-circle-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.issue-card:hover .issue-circle-wrapper::before {
  border-color: var(--gold);
  box-shadow: var(--gold-glow-shadow);
  transform: rotate(45deg);
}

.issue-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.issue-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.issue-card p {
  font-size: 0.95rem;
}

/* ==========================================================================
   STATISTICS SECTION
   ========================================================================== */
.stats-section {
  background-color: var(--bg-dark);
  border-bottom: 1px solid var(--border-gold);
  padding: 5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  height: 60%;
  width: 1px;
  background: var(--border-gold);
}

.stat-number {
  font-family: var(--font-sans);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  text-shadow: var(--gold-glow-shadow);
}

.stat-label {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ==========================================================================
   MEMBERS / CABINET PAGE
   ========================================================================== */
.inner-header {
  padding: 12rem 0 6rem;
  background-image: radial-gradient(circle at center, rgba(10, 10, 12, 0.55) 0%, var(--bg-darker) 85%), url('assets/tech_network_bg.png');
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border-gold);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.inner-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.inner-header p {
  max-width: 600px;
  margin: 0 auto;
}

.members-section {
  background-color: var(--bg-darker);
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.member-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 3rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  position: relative;
}

.member-card::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid transparent;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.member-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold-glow);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), var(--gold-glow-shadow);
}

.member-card:hover::before {
  border-color: rgba(212, 175, 55, 0.1);
}

.member-portrait-wrapper {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 2.5rem;
  position: relative;
  padding: 8px;
}

.member-portrait-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: var(--gold-glow-shadow);
  transition: var(--transition-smooth);
}

.member-card:hover .member-portrait-wrapper::before {
  box-shadow: var(--gold-glow-shadow-intense);
  transform: scale(1.03);
}

.member-portrait {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg-darker);
}

.member-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.member-role {
  font-family: var(--font-sans);
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  display: block;
}

.member-bio {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.member-socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.member-socials a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.member-socials a:hover {
  color: var(--gold-light);
  text-shadow: var(--gold-glow-shadow);
}

/* ==========================================================================
   CONTACT PAGE & FORM
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
}

.contact-info-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 3.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-info-panel h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.info-icon {
  width: 45px;
  height: 45px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.info-details h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-serif);
}

.info-details p {
  font-size: 0.95rem;
}

.contact-form-panel {
  background: rgba(3, 3, 4, 0.4);
  border: 1px solid var(--border-gold);
  padding: 3.5rem;
}

.contact-form-panel h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.form-group {
  position: relative;
  margin-bottom: 2.5rem;
}

.form-input {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-gold);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 1rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-bottom-color: var(--gold-light);
  box-shadow: 0 1px 0 var(--gold-light);
}

.form-label {
  position: absolute;
  top: 1rem;
  left: 0;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-weight: 400;
  pointer-events: none;
  transition: var(--transition-smooth);
}

/* Floating labels */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -1.2rem;
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

/* Custom Checkbox */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 2.5rem;
}

.form-consent input[type="checkbox"] {
  accent-color: var(--gold);
  margin-top: 4px;
}

.form-consent label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.form-success-msg {
  padding: 1rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  margin-top: 2rem;
  text-align: center;
  font-family: var(--font-sans);
  display: none;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--bg-darker);
  border-top: 1px solid var(--border-gold);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

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

.footer-brand p {
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.footer-socials {
  display: flex;
  gap: 1.2rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: var(--gold-glow-shadow);
  transform: translateY(-2px);
}

.footer-links h4, .footer-newsletter h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--gold-light);
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 0.8rem;
}

.footer-menu a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-menu a:hover {
  color: var(--gold-light);
  padding-left: 5px;
}

.newsletter-form {
  display: flex;
  margin-top: 1rem;
}

.newsletter-input {
  flex-grow: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-gold);
  padding: 0.8rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
}

.newsletter-input:focus {
  border-color: var(--gold);
}

.newsletter-btn {
  background: var(--gold-gradient);
  border: none;
  padding: 0 1.5rem;
  cursor: pointer;
  color: #030304;
  font-weight: 600;
  transition: var(--transition-fast);
}

.newsletter-btn:hover {
  background: var(--gold-light);
  box-shadow: var(--gold-glow-shadow);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* ==========================================================================
   ANIMATIONS & SCROLL OBSERVER CLASSES
   ========================================================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.appear {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-tagline {
    justify-content: center;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .comp-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .issues-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .members-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3.5rem 0;
  }
  
  .container {
    padding: 0 1.25rem !important;
  }

  /* Responsive Headings */
  h1, .hero-title, .inner-header h1, .poster-title {
    font-size: 2rem !important;
    line-height: 1.25 !important;
  }
  
  h2, .section-title {
    font-size: 1.6rem !important;
    line-height: 1.3 !important;
  }
  
  h3 {
    font-size: 1.3rem !important;
  }
  
  p, .hero-desc {
    font-size: 0.95rem !important;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .stat-item:nth-child(2)::after {
    display: none;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: rgba(3, 3, 4, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 100%;
    text-align: center;
    gap: 1.5rem;
    padding: 2.5rem 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid var(--border-gold);
    z-index: 9999;
  }
  
  .nav-menu.active {
    left: 0;
  }

  .nav-auth-btn {
    display: none !important;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .auth-card, .dashboard-panel {
    padding: 2rem 1.25rem;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .comp-card {
    padding: 2.5rem 1.5rem !important;
  }

  .contact-info-panel, .contact-form-panel {
    padding: 2.5rem 1.5rem !important;
  }
}

@media (max-width: 580px) {
  .issues-grid {
    grid-template-columns: 1fr !important;
  }
  
  .members-grid {
    grid-template-columns: 1fr !important;
  }
  
  .stats-grid {
    grid-template-columns: 1fr !important;
  }
  
  .stat-item::after {
    display: none !important;
  }
}

@media (max-width: 480px) {
  h1, .hero-title, .inner-header h1, .poster-title {
    font-size: 1.65rem !important;
  }
  
  h2, .section-title {
    font-size: 1.35rem !important;
  }
  
  h3 {
    font-size: 1.15rem !important;
  }
  
  .container {
    padding: 0 1rem !important;
  }

  .comp-card {
    padding: 1.8rem 1.2rem !important;
  }

  .contact-info-panel, .contact-form-panel {
    padding: 1.8rem 1.2rem !important;
  }

  .hero-actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.8rem !important;
  }

  .hero-actions .btn {
    width: 100% !important;
  }
}

/* ==========================================================================
   INTEGRATED MLM STYLES (GOLD & BLACK THEME)
   ========================================================================== */

/* Directory Filters Wrapper */
.filter-bar {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-end;
}

.filter-group {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-group label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
}

.filter-input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-gold);
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
  width: 100%;
}

.filter-input:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

select.filter-input {
  cursor: pointer;
}

select.filter-input option {
  background-color: var(--bg-darker);
  color: var(--text-primary);
  padding: 10px;
}

/* Talent Grid & Cards */
.talent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.talent-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.talent-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold-glow);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), var(--gold-glow-shadow);
}

.talent-card-img-wrapper {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  margin-bottom: 1.5rem;
  aspect-ratio: 4/5;
}

.talent-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.talent-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--gold-gradient);
  color: #030304;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 5;
}

.talent-info {
  text-align: left;
}

.talent-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px;
  word-break: break-word;
}

.talent-name i {
  color: var(--gold);
}

.talent-role {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  word-wrap: break-word;
  word-break: break-word;
}

/* Auth Cards */
.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 2rem 60px;
  background-image: radial-gradient(circle at center, rgba(10, 10, 12, 0.3) 0%, var(--bg-darker) 85%), url('assets/gold_world_map.png');
  background-size: cover;
  background-position: center;
}

.auth-card {
  width: 100%;
  max-width: 480px;
  padding: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  transition: var(--transition-smooth);
}

.auth-card:hover {
  border-color: var(--border-gold-glow);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), var(--gold-glow-shadow);
}

.auth-card h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.auth-card p.auth-subtext {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2.5rem;
}

.auth-toggle-btn {
  background: none;
  border: none;
  color: var(--gold-light);
  cursor: pointer;
  font-weight: 600;
  text-decoration: underline;
  font-family: var(--font-sans);
}

.auth-toggle-btn:hover {
  color: var(--gold);
  text-shadow: var(--gold-glow-shadow);
}

/* User Dashboard Layout */
.dashboard-container {
  padding: 120px 2rem 60px;
  min-height: 100vh;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.dashboard-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 3rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.dashboard-panel:hover {
  border-color: var(--border-gold-glow);
}

.dashboard-panel h2 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
}

.edit-form-group {
  margin-bottom: 1.5rem;
}

.edit-form-group label {
  display: block;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.edit-form-group input, 
.edit-form-group textarea, 
.edit-form-group select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-gold);
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
  width: 100%;
}

.edit-form-group input:focus, 
.edit-form-group textarea:focus, 
.edit-form-group select:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.edit-form-group select option {
  background-color: var(--bg-darker);
  color: var(--text-primary);
}

/* Dynamic Poster / Portfolio details */
.poster-container {
  width: 100%;
  max-width: 960px;
  margin: 120px auto 40px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border-gold);
  display: flex;
  flex-direction: column;
}

.poster-header {
  padding: 4rem 4rem 2rem;
  z-index: 5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.poster-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.poster-subtitle {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
}

.poster-image-container {
  position: relative;
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.poster-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid var(--border-gold);
  box-shadow: var(--gold-glow-shadow);
  z-index: 2;
}

.poster-footer {
  padding: 3rem 4rem 4rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  z-index: 5;
  background: rgba(3, 3, 4, 0.95);
  border-top: 1px solid var(--border-gold);
}

.poster-about {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.poster-about p {
  margin-bottom: 2rem;
}

.qualification-section h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--gold-light);
  letter-spacing: 1px;
}

.qualification-list {
  list-style: none;
  padding: 0;
}

.qualification-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 0.8rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.qualification-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
  top: 1px;
}

/* Slider Controls */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(3, 3, 4, 0.7);
  border: 1px solid var(--border-gold);
  color: var(--text-primary);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-arrow:hover {
  background: var(--gold-gradient);
  color: #030304;
  box-shadow: var(--gold-glow-shadow);
}

.nav-arrow.prev { left: 30px; }
.nav-arrow.next { right: 30px; }

/* Admin Control Center Layout */
.admin-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
  background-color: var(--bg-darker);
}

.admin-sidebar {
  background: rgba(7, 7, 8, 0.95);
  border-right: 1px solid var(--border-gold);
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: 100;
}

.admin-main {
  padding: 4rem;
  overflow-y: auto;
  max-height: 100vh;
}

.sidebar-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.sidebar-item {
  padding: 1rem 1.2rem;
  border-radius: 0;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  border-left: 3px solid transparent;
}

.sidebar-item:hover, .sidebar-item.active {
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-light);
  border-left-color: var(--gold);
  text-shadow: var(--gold-glow-shadow);
}

.admin-section {
  opacity: 0;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.admin-section.active {
  opacity: 1;
  transform: translateY(0);
}

.admin-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-left: 4px solid var(--gold);
  padding: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.admin-card:hover {
  border-color: var(--border-gold-glow);
  box-shadow: var(--gold-glow-shadow);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 3.5rem;
}

/* Admin Tables styling */
.admin-table-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  text-align: left;
}

.admin-table th, .admin-table td {
  padding: 1.2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.admin-table th {
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.admin-table td {
  color: var(--text-secondary);
}

.admin-table tbody tr:hover {
  background: rgba(212, 175, 55, 0.03);
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 3, 4, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  width: 90%;
  max-width: 680px;
  background: var(--bg-dark);
  border: 1px solid var(--border-gold-glow);
  box-shadow: 0 30px 60px rgba(0,0,0,0.8), var(--gold-glow-shadow);
  transform: scale(0.95);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-header {
  padding: 1.5rem 2rem;
  background: rgba(212, 175, 55, 0.05);
  border-bottom: 1px solid var(--border-gold);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-body {
  padding: 2rem;
  max-height: 70vh;
  overflow-y: auto;
}

.modal-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border-gold);
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

/* Toast Messages */
.toast-notification {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-left: 4px solid var(--gold);
  color: var(--text-primary);
  padding: 1rem 1.5rem;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  backdrop-filter: blur(10px);
  animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Custom Grid Rows for Forms */
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-gold);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: var(--gold-light);
  box-shadow: var(--gold-glow-shadow);
}

.btn-danger {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.btn-danger:hover {
  background: #ef4444;
  color: white;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}

.btn-success {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.4);
}

.btn-success:hover {
  background: #28a745;
  color: white;
  box-shadow: 0 0 15px rgba(40, 167, 69, 0.4);
}

/* Interactive Image Upload Preview Container */
.upload-preview-box {
  position: relative;
  aspect-ratio: 1;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--border-gold);
  background: rgba(0,0,0,0.4);
  transition: var(--transition-fast);
}

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

.upload-preview-box:hover {
  border-color: var(--gold-light);
  background: rgba(212, 175, 55, 0.03);
}

@media (max-width: 992px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .admin-layout {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    height: auto;
    position: relative;
    border-right: none;
    border-bottom: 1px solid var(--border-gold);
  }
}

@media (max-width: 768px) {
  .poster-header {
    padding: 2rem;
  }
  .poster-title {
    font-size: 2.5rem;
  }
  .poster-footer {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }
  .poster-image {
    max-width: 100%;
  }
}

/* Floating WhatsApp Button with VFX */
.whatsapp-float-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 99999;
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
}

.whatsapp-float-btn:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

.whatsapp-pulse-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: whatsapp-pulse 2s infinite ease-in-out;
  pointer-events: none;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1.5);
    opacity: 0;
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================================================
   MOBILE RESOLUTIONS & GPU RENDER OVERRIDES (FIX FOR BROWSER BLUR SHADOWS)
   ========================================================================== */
@media (max-width: 768px) {
  /* Stack member cards in a single column (one by one) */
  .talent-grid {
    grid-template-columns: 1fr !important;
    gap: 1.8rem !important;
  }
  
  /* Disable hardware-intensive backdrop-filter to prevent black box and shadow GPU bugs on mobile */
  .talent-card, .comp-card, .member-card, .admin-card, .admin-table-panel, .contact-info-panel, .contact-form-panel {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(13, 13, 15, 0.97) !important; /* solid premium dark grey background */
  }
}

@media (max-width: 1024px) {
  .talent-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* User Dashboard Responsive Layout Tweaks */
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.preview-panel {
  padding: 2rem;
}

@media (max-width: 576px) {
  .grid-2-col {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .preview-panel {
    padding: 1rem !important;
  }
  .dashboard-container {
    padding: 100px 1rem 40px !important;
  }
  .dashboard-panel {
    padding: 1.5rem !important;
  }
  .preview-panel .talent-card {
    max-width: 320px;
    margin: 0 auto;
    padding: 1rem !important;
  }
}
