@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg: #07060A;
  --bg-nav: rgba(7, 6, 10, 0.75);
  --bg-card: rgba(22, 19, 36, 0.4);
  --gold: #E5C158;
  --gold-dim: rgba(229, 193, 88, 0.3);
  --text-main: #FDFCF8;
  --text-muted: #A3A0AC;
  --border: rgba(229, 193, 88, 0.15);
  --border-hover: rgba(229, 193, 88, 0.5);
  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, blinkmacsystemfont, sans-serif;
  --glow: 0 0 40px rgba(229, 193, 88, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background-color: var(--bg);
  color: var(--text-muted);
  font-family: var(--font-sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Luxury Background glow with noise */
body::before {
  content: '';
  position: fixed;
  top: -30vh; left: 50%;
  transform: translateX(-50%);
  width: 150vw; height: 80vh;
  background: radial-gradient(ellipse at center, rgba(38, 32, 66, 0.5) 0%, rgba(7, 6, 10, 0) 70%);
  z-index: -2; pointer-events: none;
}
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  z-index: -1; pointer-events: none;
}

/* Navbar */
nav {
  position: fixed; top: 0; width: 100%;
  padding: 20px 48px;
  display: flex; justify-content: space-between; align-items: center;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  background: var(--bg-nav);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  z-index: 100;
  transition: all 0.4s ease;
}
.nav-brand {
  font-family: var(--font-serif); font-size: 28px; color: var(--text-main);
  text-decoration: none; font-weight: 500; letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  display: flex; align-items: center; gap: 8px;
}
.nav-brand span { color: var(--gold); }
.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; }
.nav-links a:hover { color: var(--text-main); }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--text-main); font-weight: 400; }
a { color: var(--gold); text-decoration: none; transition: opacity 0.3s; }
a:hover { opacity: 0.8; }

p, li { font-size: 15px; color: var(--text-muted); }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #E5C158 0%, #B8963A 100%);
  color: #000;
  padding: 16px 40px; border-radius: 100px;
  text-decoration: none; font-weight: 600; font-size: 15px; letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  box-shadow: 0 4px 15px rgba(229, 193, 88, 0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(229, 193, 88, 0.35);
  background: linear-gradient(135deg, #F3D068 0%, #C7A549 100%);
}

/* Content Containers */
.legal-container {
  max-width: 800px; margin: 140px auto 100px; padding: 60px 50px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.legal-header { text-align: center; margin-bottom: 50px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.legal-header h1 { font-size: 46px; margin-bottom: 16px; letter-spacing: -0.5px; }
.legal-header p { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); }
.legal-content h2 { font-size: 26px; margin: 48px 0 20px; color: var(--gold); letter-spacing: 0.5px; }
.legal-content p { margin-bottom: 20px; line-height: 1.8; }
.legal-content ul { margin-bottom: 30px; padding-left: 20px; }
.legal-content li { margin-bottom: 12px; line-height: 1.7; }

/* Support Page Specific */
.faq-item {
  border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; 
  padding: 30px; margin-bottom: 16px; 
  background: rgba(20,18,35,0.2);
  transition: all 0.3s ease;
}
.faq-item:hover { border-color: var(--border-hover); background: rgba(20,18,35,0.4); transform: translateY(-2px); box-shadow: var(--glow); }
.faq-q { font-family: var(--font-serif); font-size: 22px; color: var(--text-main); margin-bottom: 12px; }
.faq-a { font-size: 15px; line-height: 1.8; color: var(--text-muted); margin-bottom: 0 !important; }
.contact-box { 
  text-align: center; margin-top: 60px; padding: 50px 40px; 
  border: 1px solid var(--border); border-radius: 20px; 
  background: linear-gradient(180deg, rgba(229,193,88,0.05) 0%, rgba(0,0,0,0) 100%);
}
.contact-box h2 { font-size: 36px; margin-bottom: 16px; }
.contact-box p { font-size: 15px; margin-bottom: 30px; }
.contact-box a { font-size: 20px; color: var(--gold); font-family: var(--font-serif); font-style: italic; }

/* Google Translate Overrides */
#google_translate_element select {
  background: transparent; color: var(--text-main); border: 1px solid var(--border);
  padding: 6px 12px; border-radius: 6px; font-family: var(--font-sans); font-size: 12px;
  text-transform: uppercase; letter-spacing: 1px; cursor: pointer; outline: none;
}
#google_translate_element select:focus { border-color: var(--gold); }
.skiptranslate iframe { display: none !important; }
body { top: 0 !important; }

/* Footer */
footer { 
  margin-top: auto; padding: 60px 24px; text-align: center; 
  border-top: 1px solid rgba(255,255,255,0.03); 
  background: rgba(0,0,0,0.3);
}
.footer-links { display: flex; gap: 32px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links a:hover { color: var(--gold); }
.copyright { color: rgba(163, 160, 172, 0.4); font-size: 12px; letter-spacing: 0.5px; }

@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 11px; }
  .legal-container { margin: 100px 20px 60px; padding: 40px 24px; }
  .legal-header h1 { font-size: 36px; }
}
