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

:root {
  --primary-color: #f2ae2b;
  --primary-dark: #d99a22;
  --primary-glow: rgba(242, 174, 43, 0.3);
  --bg-dark: #050505;
  --bg-darker: #020202;
  --bg-card: #0f1115;
  --bg-glass: rgba(15, 17, 21, 0.65);
  --text-light: #ffffff;
  --text-muted: #9ba1a6;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(242, 174, 43, 0.2);
  --positive-color: #00e676;
  --positive-glow: rgba(0, 230, 118, 0.2);
  --negative-color: #ff3d00;
  --negative-glow: rgba(255, 61, 0, 0.2);
  --gradient-brand: linear-gradient(135deg, #f2ae2b 0%, #d99a22 100%);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  padding-top: 85px; /* For fixed header */
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 var(--primary-glow); }
  70% { box-shadow: 0 0 0 15px rgba(242, 174, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(242, 174, 43, 0); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Header & Nav */
.redesign-header {
  background-color: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.redesign-header.scrolled {
  padding: 10px 0;
  background-color: rgba(5, 5, 5, 0.98);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.redesign-navbar {
  margin-bottom: 0;
  border: none;
  background: transparent;
}

.navbar-brand img {
  height: 45px;
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.redesign-header .navbar-nav > li > a {
  color: var(--text-muted) !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 15px 12px;
  text-transform: capitalize;
  transition: all 0.3s ease;
  background: transparent !important;
  position: relative;
  letter-spacing: 0.2px;
}

.redesign-header .navbar-nav > li > a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 8px;
  left: 50%;
  background: var(--gradient-brand);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.redesign-header .navbar-nav > li > a:hover::after,
.redesign-header .navbar-nav > li > a:focus::after {
  width: 60%;
}

.redesign-header .navbar-nav > li > a:hover,
.redesign-header .navbar-nav > li > a:focus {
  color: var(--text-light) !important;
}

.redesign-header .navbar-toggle {
  border-color: var(--border-color);
  border-radius: var(--radius-sm);
}

.redesign-header .navbar-toggle .icon-bar {
  background-color: var(--text-light);
  transition: all 0.3s ease;
}

.redesign-header .navbar-toggle:hover {
  background-color: var(--bg-card) !important;
  border-color: var(--primary-color);
}

/* Buttons */
.btn-primary-custom {
  background: var(--gradient-brand) !important;
  color: #000 !important;
  border: none !important;
  border-radius: var(--radius-xl);
  padding: 10px 24px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--primary-glow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, #d99a22 0%, #f2ae2b 100%);
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.btn-primary-custom:hover::before {
  opacity: 1;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(242, 174, 43, 0.4);
}

.btn-outline-custom {
  background-color: transparent !important;
  color: var(--text-light) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius-xl);
  padding: 9px 24px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.btn-outline-custom:hover {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border-color: var(--text-light) !important;
  transform: translateY(-2px);
}

/* Google Translate */
.lang-selector-wrapper {
  display: flex;
  align-items: center;
  margin-right: 15px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 0 15px;
  height: 42px;
  transition: all 0.3s ease;
}

.lang-selector-wrapper:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.lang-selector-wrapper i {
  color: var(--text-muted);
  margin-right: 8px;
}

.goog-te-gadget-simple {
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.goog-te-gadget-simple .goog-te-menu-value span {
  color: var(--text-light) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border: none !important;
}

.goog-te-gadget-icon, .goog-te-menu-value span:nth-child(3), .goog-te-menu-value span:nth-child(5) {
  display: none !important;
}

.goog-te-banner-frame.skiptranslate { display: none !important; }
body { top: 0px !important; }

/* Hero Section */
.hero-section {
  position: relative;
  padding: 120px 0 100px;
  background: radial-gradient(circle at 80% 20%, rgba(242, 174, 43, 0.15) 0%, transparent 40%),
              radial-gradient(circle at 20% 80%, rgba(0, 230, 118, 0.05) 0%, transparent 40%),
              var(--bg-dark);
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-grid-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: 
    linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(242, 174, 43, 0.1);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-title span.highlight {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.hero-features span {
  display: flex;
  align-items: center;
  font-weight: 500;
}

.hero-features span i {
  color: var(--primary-color);
  margin-right: 8px;
  font-size: 16px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.hero-glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.hero-glass-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Marquee Ticker Section */
.marquee-ticker-wrap {
  background-color: var(--bg-darker);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
  overflow: hidden;
  position: relative;
  display: flex;
  width: 100%;
}

.marquee-ticker-wrap::before, .marquee-ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; width: 100px; height: 100%;
  z-index: 2;
}

.marquee-ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-darker), transparent);
}

.marquee-ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-darker), transparent);
}

.marquee-content {
  display: flex;
  animation: marquee 30s linear infinite;
  min-width: 200%;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.ticker-card {
  display: flex;
  align-items: center;
  padding: 0 30px;
  border-right: 1px solid var(--border-color);
  white-space: nowrap;
}

.ticker-symbol {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-light);
  margin-right: 12px;
}

.ticker-price {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-right: 12px;
}

.ticker-change {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 4px;
}

.ticker-change.up {
  color: var(--positive-color);
  background: rgba(0, 230, 118, 0.1);
}

.ticker-change.down {
  color: var(--negative-color);
  background: rgba(255, 61, 0, 0.1);
}

/* Overview Widget Section */
.market-overview-section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 40px;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.widget-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  height: 500px;
  overflow: hidden;
}

/* Tools Section */
.tools-section {
  padding: 100px 0;
  background: radial-gradient(circle at 0% 50%, rgba(242, 174, 43, 0.05) 0%, transparent 50%), var(--bg-darker);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.tool-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.tool-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 2px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.tool-card:hover {
  background: var(--bg-card);
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.tool-card:hover::before {
  transform: scaleX(1);
}

.tool-icon-wrapper {
  width: 50px; height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(242, 174, 43, 0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--primary-color);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.tool-card:hover .tool-icon-wrapper {
  background: var(--gradient-brand);
  color: #000;
  transform: scale(1.1) rotate(5deg);
}

.tool-title {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-light);
}

.tool-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Stats Section with Counters */
.stats-section {
  padding: 80px 0;
  background: var(--bg-dark);
  position: relative;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  display: inline-block;
}

.stat-label {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Trust / Why Choose Us */
.trust-section {
  padding: 100px 0;
  position: relative;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.trust-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-10px);
}

.trust-icon {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: inline-block;
  background: linear-gradient(135deg, rgba(242,174,43,0.2) 0%, transparent 100%);
  width: 80px; height: 80px;
  line-height: 80px;
  border-radius: 50%;
}

.trust-title {
  font-size: 20px;
  margin-bottom: 15px;
}

.trust-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg-darker);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  margin-bottom: 30px;
}

.quote-icon {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 40px;
  color: rgba(255,255,255,0.05);
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  font-weight: bold; color: #000;
  margin-right: 15px;
}

.author-info h5 {
  margin: 0 0 4px 0;
  font-size: 16px;
}

.author-info span {
  font-size: 13px;
  color: var(--text-muted);
}

.rating {
  color: var(--primary-color);
  font-size: 12px;
}

/* Modern CTA Section */
.cta-section {
  padding: 80px 0;
  position: relative;
}

.cta-wrapper {
  background: linear-gradient(135deg, var(--bg-card) 0%, #1a1508 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-wrapper::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(242, 174, 43, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-title {
  font-size: 42px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.cta-desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px auto;
  position: relative;
  z-index: 2;
}

.step-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-item:not(:last-child)::after {
  content: '\f105'; /* FontAwesome angle-right */
  font-family: 'FontAwesome';
  position: absolute;
  right: -25px;
  top: 15px;
  color: var(--text-muted);
  opacity: 0.5;
}

.step-circle {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--primary-color);
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.step-item:hover .step-circle {
  background: var(--primary-color);
  color: #000;
  box-shadow: 0 0 15px var(--primary-glow);
}

.step-text {
  font-size: 14px;
  font-weight: 500;
}

/* Footer Reimagined */
.redesign-footer {
  background-color: var(--bg-darker);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 30px;
  font-size: 15px;
  color: var(--text-muted);
}

.footer-logo {
  margin-bottom: 24px;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.footer-logo:hover {
  opacity: 1;
}

.footer-about {
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light);
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: var(--primary-color);
  color: #000;
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 18px;
  font-family: 'Outfit', sans-serif;
  color: var(--text-light);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.risk-warning-box {
  background: rgba(255, 61, 0, 0.05);
  border: 1px solid rgba(255, 61, 0, 0.2);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-top: 10px;
}

.risk-warning-box h4 {
  color: var(--negative-color);
  margin-top: 0; margin-bottom: 10px;
  font-size: 16px;
  display: flex; align-items: center;
}

.risk-warning-box h4 i {
  margin-right: 8px;
}

.risk-warning-box p {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  margin-top: 60px;
  padding-top: 24px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: var(--text-muted);
  margin-left: 20px;
  transition: color 0.3s;
}

.footer-legal-links a:hover {
  color: var(--text-light);
}

@media (min-width: 992px) {
  #main-nav-collapse {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .navbar-center {
    display: flex;
    margin-left: 20px !important;
    margin-right: auto !important;
    flex-wrap: nowrap;
  }
  .nav-buttons {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .lang-selector-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-title { font-size: 48px; }
  .feature-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .cta-wrapper { padding: 40px 20px; }
  .step-container { flex-wrap: wrap; gap: 20px; }
  .step-item:not(:last-child)::after { display: none; }
}

@media (max-width: 767px) {
  body { padding-top: 70px; }
  .hero-section { padding: 60px 0; text-align: center; }
  .hero-subtitle { margin: 0 auto 30px auto; }
  .hero-buttons { flex-direction: column; gap: 15px; }
  .hero-buttons .btn { width: 100%; margin: 0 !important; }
  .hero-features { justify-content: center; flex-wrap: wrap; }
  .hero-visual { margin-top: 50px; }
  .hero-title { font-size: 36px; }
  .stats-grid { grid-template-columns: 1fr; }
  
  .redesign-header { padding: 10px 0; }
  .navbar-brand img { height: 35px; }
  
  .navbar-collapse {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-top: 10px;
    padding: 30px 20px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  }
  
  .navbar-nav { margin: 0; text-align: center; }
  .navbar-nav > li { margin: 8px 0; }
  .navbar-nav > li > a { 
    padding: 12px !important; 
    font-size: 17px; 
    font-weight: 600;
    color: var(--text-light) !important;
  }
  
  .nav-buttons {
    margin-top: 30px;
    flex-direction: column;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    gap: 15px;
    width: 100%;
  }
  
  .lang-selector-wrapper { 
    margin: 0 0 10px 0 !important; 
    width: 100%; 
    justify-content: center; 
    padding: 12px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
  }

  .nav-buttons .btn { 
    width: 100% !important; 
    margin: 0 !important; 
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }

  .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
  .footer-legal-links { justify-content: center; flex-wrap: wrap; }
  .footer-legal-links a { margin: 5px 10px; }
}

/* Google Translate Widget Fixes for Dark Theme */
.lang-selector-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 15px;
}
.lang-selector-wrapper #google_translate_element select {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    outline: none;
    font-size: 14px;
}
.lang-selector-wrapper #google_translate_element select option {
    background: var(--bg-card);
    color: #fff;
}
.goog-te-gadget {
    color: transparent !important;
}
.goog-te-gadget .goog-te-combo {
    margin: 0;
}
.goog-te-gadget span {
    display: none;
}

/* Hide Google Translate Top Banner */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.VIpgJd-ZVi9od-aZ619-H9tKWc,
.VIpgJd-ZVi9od-ORHb {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
}
body {
    top: 0 !important;
}
iframe#\3a 0\.container {
    display: none !important;
}
#google_translate_element {
    height: auto !important;
}
#google_translate_element .goog-te-gadget {
    height: auto !important;
}
