/* 
========================================================================
   BGL CAPITAL - CUSTOM PREMIUM STYLESHEET
   Aesthetics: Deep Slate Dark Mode, Neon Crimson/Orange Glows, Glassmorphism
========================================================================
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
  --bg-primary: #060709;
  --bg-secondary: #0c0e12;
  --bg-tertiary: #13171e;
  --accent-red: #f1151f;
  --accent-red-hover: #c10a12;
  --accent-red-glow: rgba(241, 21, 31, 0.4);
  --accent-orange: #ff7b00;
  --accent-orange-glow: rgba(255, 123, 0, 0.4);
  --text-primary: #ffffff;
  --text-secondary: #c9c8c9;
  --border-color: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(12, 14, 18, 0.75);
  --glass-border: rgba(255, 255, 255, 0.06);
  --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* Base resets & styles */
body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6, .display-font {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500; /* DM Sans Medium */
}

p {
  color: var(--text-secondary);
  line-height: 1.6;
}

a {
  color: var(--accent-red);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--text-primary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #252830;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-red);
}

/* --- REUSABLE UTILITIES --- */
.text-gradient-red-orange {
  background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-red {
  background: linear-gradient(135deg, #ffffff 40%, var(--accent-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--card-shadow);
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.btn-pill {
  border-radius: 50px;
  padding: 10px 28px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  transition: var(--transition-smooth);
}

.btn-pill-danger {
  background: var(--accent-red);
  color: #fff;
  border: 1px solid var(--accent-red);
  box-shadow: 0 4px 15px var(--accent-red-glow);
}

.btn-pill-danger:hover {
  background: var(--accent-red-hover);
  border-color: var(--accent-red-hover);
  box-shadow: 0 6px 20px rgba(241, 21, 31, 0.6);
  transform: translateY(-2px);
  color: #fff;
}

.btn-pill-outline {
  background: transparent;
  color: #fff;
  border: 1px solid var(--border-color);
}

.btn-pill-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #fff;
  transform: translateY(-2px);
  color: #fff;
}

.btn-pill-white {
  background: #ffffff;
  color: #000000;
  border: 1px solid #ffffff;
}

.btn-pill-white:hover {
  background: #e6e6e6;
  border-color: #e6e6e6;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* SECTION HEADING */
.section-tag {
  font-family: 'DM Sans', sans-serif;
  color: var(--accent-red);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 15px;
font-size: 44px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 600 !important; /* Semibold */

}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto 50px auto;
  font-size: 1rem;
}

/* --- HEADER / NAVBAR --- */
.navbar-custom {
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
  padding: 20px 0;
}

.navbar-custom.scrolled {
  padding: 12px 0;
  background: rgba(6, 7, 9, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand-logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.navbar-brand-logo span {
  color: var(--accent-red);
}

/* Base Nav Links */
.navbar-custom .nav-link {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 16px !important;
  position: relative;
  transition: var(--transition-smooth);
  border-radius: 30px;
}

.navbar-custom .nav-link:hover {
  color: #fff;
}

/* Scrolled Bottom Underline Indicators */
.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 16px;
  background-color: var(--accent-red);
  transition: var(--transition-smooth);
  opacity: 0;
}

.navbar-custom.scrolled .nav-link::after {
  opacity: 1;
}

.navbar-custom.scrolled .nav-link:hover::after {
  width: calc(100% - 32px);
}

.navbar-custom.scrolled .nav-link.active::after {
  width: calc(100% - 32px);
  opacity: 1;
}

/* Home Section / Top Capsule Navbar Styles */
@media (min-width: 992px) {
  .navbar-custom .navbar-nav {
    transition: background-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                border-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                padding 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                gap 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 100px;
    padding: 5px 0;
  }
  
  .navbar-custom:not(.scrolled) .navbar-nav {
    background: #0c0e12;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    padding: 5px 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
  }
  
  .navbar-custom:not(.scrolled) .navbar-nav .nav-link {
    padding: 8px 20px !important;
    border-radius: 100px;
  }

  .navbar-custom:not(.scrolled) .navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff !important;
  }

  .navbar-custom:not(.scrolled) .navbar-nav .nav-link.active {
    background-color: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }
}

/* Custom login/register button adjustments */
.btn-login-link {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-login-link:hover {
  color: #fff;
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  padding: 180px 0 100px 0;
  overflow: hidden;
  background: radial-gradient(circle at 80% 40%, rgba(255, 123, 0, 0.08) 0%, rgba(241, 21, 31, 0.04) 50%, rgba(6, 7, 9, 1) 100%);
}

.hero-bg-graphic {
  position: absolute;
  right: -5%;
  top: 5%;
  width: 50%;
  height: 90%;
  background-image: url('assets/hero_bg.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  z-index: 1;
  opacity: 0.85;
  animation: float-anim 6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.15rem;
  margin-bottom: 35px;
  max-width: 620px;
}

/* Partner Ticker */
.partner-ticker {
  margin-top: 80px;
  position: relative;
  z-index: 2;
   padding-top: 40px;
}

.ticker-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #5b626a;
  margin-bottom: 20px;
}

.ticker-item {
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
}

.ticker-item img {
  height: 28px;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.35;
  filter: invert(0.85); /* Converts dark gray logos to clean light gray for dark mode */
  transition: var(--transition-smooth);
}

.ticker-item:hover img {
  opacity: 1;
  filter: invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.45));
}

.ticker-item.highlight-usdt:hover img {
  filter: invert(1) drop-shadow(0 0 10px rgba(38, 161, 123, 0.6));
}

.ticker-item.highlight-neteller:hover img {
  filter: invert(1) drop-shadow(0 0 10px rgba(130, 188, 36, 0.6));
}

.ticker-item.highlight-skrill:hover img {
  filter: invert(1) drop-shadow(0 0 10px rgba(131, 0, 70, 0.6));
}

/* --- WHY CHOOSE US --- */
.why-choose-us-section {
  padding: 100px 0;
  position: relative;
  background-color: #ffffff;
}

.why-choose-us-section .section-title {
  color: #12141d;
  font-size: 44px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 600 !important; /* Semibold */
}

.why-choose-us-section .section-subtitle {
  color: #555c65;
}

.why-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 40px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.why-card-bg-1 {
  background: linear-gradient(135deg, rgba(6, 7, 9, 0.72) 0%, rgba(12, 14, 18, 0.88) 100%), url('assets/card_bg1.png') no-repeat center/cover;
}
.why-card-bg-2 {
  background: linear-gradient(135deg, rgba(6, 7, 9, 0.72) 0%, rgba(12, 14, 18, 0.88) 100%), url('assets/card_bg2.png') no-repeat center/cover;
}
.why-card-bg-3 {
  background: linear-gradient(135deg, rgba(6, 7, 9, 0.72) 0%, rgba(12, 14, 18, 0.88) 100%), url('assets/card_bg3.png') no-repeat center/cover;
}
.why-card-bg-4 {
  background: linear-gradient(135deg, rgba(6, 7, 9, 0.72) 0%, rgba(12, 14, 18, 0.88) 100%), url('assets/card_bg4.png') no-repeat center/cover;
}
.why-card-bg-5 {
  background: linear-gradient(135deg, rgba(6, 7, 9, 0.72) 0%, rgba(12, 14, 18, 0.88) 100%), url('assets/card_bg5.png') no-repeat center/cover;
}

.why-card .why-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.why-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(241, 21, 31, 0.1);
  border: 1px solid rgba(241, 21, 31, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-red);
  margin-bottom: 25px;
  transition: var(--transition-smooth);
}

.why-card-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-weight: 500; /* DM Sans Medium */
  color: #ffffff;
}

.why-card-text {
  font-size: 0.92rem;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.7);
  flex-grow: 1; /* Pushes the link to the bottom */
}

.why-card-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.why-card-link i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: #ffffff;
  color: #060709;
  border-radius: 50%;
  font-size: 0.8rem;
  transition: var(--transition-smooth);
}

/* Hover States */
.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(241, 21, 31, 0.45);
  box-shadow: 0 15px 40px rgba(241, 21, 31, 0.16);
}

.why-card-bg-1:hover {
  background: linear-gradient(135deg, rgba(6, 7, 9, 0.45) 0%, rgba(12, 14, 18, 0.6) 100%), url('assets/card_bg1.png') no-repeat center/cover;
}
.why-card-bg-2:hover {
  background: linear-gradient(135deg, rgba(6, 7, 9, 0.45) 0%, rgba(12, 14, 18, 0.6) 100%), url('assets/card_bg2.png') no-repeat center/cover;
}
.why-card-bg-3:hover {
  background: linear-gradient(135deg, rgba(6, 7, 9, 0.45) 0%, rgba(12, 14, 18, 0.6) 100%), url('assets/card_bg3.png') no-repeat center/cover;
}
.why-card-bg-4:hover {
  background: linear-gradient(135deg, rgba(6, 7, 9, 0.45) 0%, rgba(12, 14, 18, 0.6) 100%), url('assets/card_bg4.png') no-repeat center/cover;
}
.why-card-bg-5:hover {
  background: linear-gradient(135deg, rgba(6, 7, 9, 0.45) 0%, rgba(12, 14, 18, 0.6) 100%), url('assets/card_bg5.png') no-repeat center/cover;
}

.why-card:hover .why-card-icon {
  background: var(--accent-red);
  color: #fff;
  box-shadow: 0 0 15px var(--accent-red-glow);
}

.why-card:hover .why-card-link i {
  background-color: var(--accent-red);
  color: #ffffff;
  transform: translate(2px, -2px);
}

/* Trust Badge Footer */
.trust-badges-row {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.trust-badge-img {
  height: 70px;
  max-width: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.trust-badge-item:hover .trust-badge-img {
  transform: scale(1.05);
}

/* --- WHO WE ARE --- */
.who-we-are-section {
  padding: 100px 0;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.who-we-are-section .section-title {
  color: #12141d;
  font-size: 44px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 600 !important; /* Semibold */

}

.who-info-card {
  padding: 40px 30px;
  background: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 24px;
  height: 100%;
  transition: var(--transition-smooth);
  text-align: left;
}

.who-info-card:hover {
  border-color: rgba(241, 21, 31, 0.15);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  background: #ffffff;
}

.who-info-icon {
  font-size: 2.2rem;
  color: var(--accent-red);
  margin-bottom: 24px;
  display: block;
  transition: var(--transition-smooth);
}

.who-info-card:hover .who-info-icon {
  transform: translateY(-2px);
  filter: drop-shadow(0 4px 10px var(--accent-red-glow));
}

.who-info-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #12141d;
  font-weight: 500; /* DM Sans Medium */
}

.who-info-text {
  font-size: 0.9rem;
  color: #555c65;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Overriding bootstrap text-danger to brand color */
.text-danger {
  color: var(--accent-red) !important;
}

/* --- COMBINED STATS & UPDATES SECTION --- */
.stats-updates-combined-section {
  position: relative;
  background-color: #ffffff; /* Fallback */
}

.stats-top-part {
  position: relative;
  background: url('assets/stats_bg.png') no-repeat center/cover;
  padding: 120px 0 130px 0; /* Extra padding-bottom for the overlapping banner */
  text-align: center;
}

.stats-number {
  font-family: 'DM Sans', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.stats-label {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

/* Journey Banner Container bridges the dark stats-top-part and white updates-bottom-part */
.journey-banner-container {
  position: relative;
  z-index: 10;
  margin-top: -110px; /* Pull it up by half of banner's height */
  margin-bottom: -100px; /* Pull the lower section closer to the banner */
}

/* Glassmorphic Call-to-Action Banner */
.journey-banner {
  padding: 50px 60px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(6, 7, 9, 14%) 0%, rgba(12, 14, 18, 0.85) 100%), url('assets/banner_bg.png') no-repeat center/cover;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(241, 21, 31, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

/* Red-orange glowing strip on top */
.journey-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-red) 0%, var(--accent-orange) 100%);
}

.journey-banner-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
}

/* Bottom Part (Updates) with White Background */
.updates-bottom-part {
  padding: 154px 0 100px 0; /* padding-top accommodates the negative margin of the banner */
  background-color: #ffffff;
}

.updates-bottom-part .section-title {
  color: #12141d;
font-size: 44px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 600 !important; /* Semibold */

}

.updates-bottom-part .section-subtitle {
  color: #555c65;
}

.update-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: var(--transition-smooth);
}

.update-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.update-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.update-body {
  padding: 24px;
}

.update-title {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-weight: 500; /* DM Sans Medium */
  color: #12141d;
  transition: var(--transition-smooth);
}

.update-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #555c65;
  margin-bottom: 0;
}

/* Hover States */
.update-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.update-card:hover .update-img {
  transform: scale(1.05);
}

.update-card:hover .update-title {
  color: var(--accent-red);
}

.updates-bottom-part .view-more-container {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.updates-bottom-part .view-more-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: #12141d;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.updates-bottom-part .view-more-link:hover {
  color: var(--accent-red);
}

/* --- TRADING MADE SIMPLE --- */
.simple-trading-section {
  padding: 100px 0;
  background-color: var(--bg-primary);
}

.trading-track-card {
  padding: 40px;
  background: rgba(12, 14, 18, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  height: 100%;
  transition: var(--transition-smooth);
}

.trading-track-card:hover {
  border-color: var(--accent-red);
  box-shadow: 0 10px 30px rgba(241, 21, 31, 0.08);
  transform: translateY(-4px);
}

.trading-track-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.trading-track-text {
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.trading-track-btn {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.trading-track-btn i {
  transition: var(--transition-smooth);
}

.trading-track-card:hover .trading-track-btn i {
  transform: translateX(4px);
}

/* --- VIDEO GUIDES --- */
.video-guides-section {
  padding: 100px 0;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.video-guides-section .section-title {
  color: #12141d;
font-size: 44px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 600 !important; /* Semibold */

}

.video-guides-section .section-subtitle {
  color: #555c65;
}

.video-card {
  background: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.video-thumbnail-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: var(--transition-smooth);
}

/* Custom Play Button Glow Overlay */
.play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(241, 21, 31, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 0 20px var(--accent-red-glow);
  transition: var(--transition-smooth);
  z-index: 2;
  padding-left: 4px; /* Align play triangle */
}

.play-btn-overlay::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(241, 21, 31, 0.4);
  animation: pulse-glow 2s infinite;
}

.video-card-body {
  padding: 20px;
}

.video-card-title {
  font-size: 1rem;
  margin-bottom: 0;
  font-weight: 600;
  color: #12141d;
  transition: var(--transition-smooth);
}

/* Hover effects */
.video-card:hover {
  border-color: rgba(241, 21, 31, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.video-card:hover .video-thumbnail {
  opacity: 0.9;
  transform: scale(1.05);
}

.video-card:hover .play-btn-overlay {
  background: #fff;
  color: var(--accent-red);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-card:hover .video-card-title {
  color: var(--accent-red);
}

/* --- GET STARTED ONBOARDING --- */
.onboarding-section {
  padding: 100px 0;
  background-color: #000000;
}

.timeline-container {
  position: relative;
  margin-top: 60px;
}

/* Horizontal Connecting Line for Desktop */
.timeline-line {
  position: absolute;
  top: 30px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.timeline-line-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-red) 0%, var(--accent-orange) 100%);
  transition: width 1s ease;
}

.timeline-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.timeline-node {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin: 0 auto 25px auto;
  position: relative;
  transition: var(--transition-smooth);
}

.timeline-step.active .timeline-node {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: #fff;
  box-shadow: 0 0 20px var(--accent-red-glow);
}

.timeline-step-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.timeline-step-text {
  font-size: 0.9rem;
  max-width: 220px;
  margin: 0 auto;
}

/* On hover nodes */
.timeline-step:hover .timeline-node {
  transform: scale(1.1);
  border-color: var(--accent-red);
}

/* --- REFERRALS & REWARDS --- */
.referral-section {
  padding: 100px 0;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.referral-section .section-title {
  color: #12141d;
  font-size: 44px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 600 !important; /* Semibold */

}

.referral-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #060709;
  max-width: 780px;
  margin: 0 auto 30px auto;
}

/* --- FOOTER --- */
/* --- FOOTER --- */
.footer-custom {
  background-color: #000000; /* Solid black background */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 60px 0;
  font-family: 'DM Sans', sans-serif;
}

.footer-logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  color: #ffffff !important;
  display: inline-block;
  text-decoration: none;
}

.footer-nav-links {
  padding-left: 0;
}

.footer-nav-link {
  color: #909aa5;
  font-size: 1.05rem;
  font-weight: 400;
  transition: var(--transition-smooth);
}

.footer-nav-link:hover {
  color: #ffffff;
}

.footer-copyright {
  font-size: 0.9rem;
  color: #555c65;
}

.footer-social-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 767.98px) {
  .footer-social-icons {
    justify-content: center;
  }
}

.social-icon {
  color: #ffffff;
  font-size: 1.5rem;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.social-icon:hover {
  color: var(--accent-red);
}

.footer-terms-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #555c65; /* Grey title */
  text-transform: none;
  letter-spacing: normal;
}

.footer-terms-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #555c65; /* Grey text */
  max-width: 580px;
  margin-left: auto;
}

@media (max-width: 767.98px) {
  .footer-terms-text {
    margin-left: auto;
    margin-right: auto;
  }
}

.footer-terms-link {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: underline !important;
  transition: var(--transition-smooth);
}

.footer-terms-link:hover {
  color: var(--accent-red);
}

/* --- ANIMATIONS KEYFRAMES --- */
@keyframes float-anim {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulse-glow {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .hero-bg-graphic {
    width: 45%;
  }
}

@media (max-width: 991.98px) {
  .navbar-custom {
    background: var(--bg-primary);
  }
  
  .navbar-custom .nav-link::after {
    display: none;
  }
  
  .hero-section {
    padding: 140px 0 80px 0;
    text-align: center;
  }
  
  .hero-bg-graphic {
    display: none; /* Hide background mesh on tablet/mobile for readability */
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .partner-ticker {
    margin-top: 50px;
  }
  
  .ticker-item {
    justify-content: center;
    font-size: 1.15rem;
  }
  
  /* Timeline becomes vertical */
  .timeline-line {
    top: 30px;
    left: 30px;
    width: 2px;
    height: 80%;
    right: auto;
  }
  
  .timeline-step {
    text-align: left;
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }
  
  .timeline-node {
    margin: 0;
    flex-shrink: 0;
  }
  
  .timeline-step-text {
    max-width: 100%;
    margin: 0;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 1.85rem;
font-size: 44px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 600 !important; /* Semibold */

  }
  
  .journey-banner {
    padding: 35px 25px;
    text-align: center;
  }
  
  .journey-banner-title {
    font-size: 1.6rem;
  }
  
  .referral-box {
    padding: 40px 20px;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.1rem;
  }
  
  .stats-number {
    font-size: 2.8rem;
  }
}

/* --- CUSTOM MOBILE NAVIGATION DRAWER --- */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #060709;
  background-image: radial-gradient(circle at 85% 85%, rgba(255, 123, 0, 0.18) 0%, rgba(241, 21, 31, 0.04) 40%, #060709 85%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 40px 30px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow-y: auto;
}

.mobile-nav-overlay.active {
  transform: translateX(0);
}

.mobile-nav-header {
  margin-bottom: 50px;
  flex-shrink: 0;
}

.mobile-nav-close {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2.2rem;
  padding: 0;
  cursor: pointer;
  transition: var(--transition-smooth);
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-close:hover {
  transform: rotate(90deg);
  color: var(--accent-red);
}

.mobile-nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.mobile-nav-logo .logo-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.mobile-nav-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

.mobile-nav-links {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}

.mobile-nav-links li {
  width: auto;
}

.mobile-nav-links .mobile-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-block;
  padding: 5px 0;
}

.mobile-nav-links .mobile-link:hover,
.mobile-nav-links .mobile-link.active {
  color: var(--accent-red);
  transform: translateX(-5px);
}

/* Login and Register stacked at the top of links, styled slightly differently */
.mobile-nav-links li:nth-child(1) .mobile-link,
.mobile-nav-links li:nth-child(2) .mobile-link {
  font-size: 1.4rem;
  opacity: 0.85;
}

.mobile-privacy-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  color: #ffffff;
  text-decoration: underline !important;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.mobile-privacy-link:hover {
  color: var(--accent-red);
  opacity: 1;
}

.mobile-social-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}

.mobile-social-icons .social-icon {
  color: #ffffff;
  font-size: 1.6rem;
  transition: var(--transition-smooth);
  opacity: 0.8;
}

.mobile-social-icons .social-icon:hover {
  color: var(--accent-red);
  opacity: 1;
  transform: translateY(-3px);
}

.mobile-copyright {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: #555c65;
  line-height: 1.5;
}

@media (min-width: 992px) {
  .mobile-nav-overlay {
    display: none !important;
  }
}

/* --- HELP PAGE SPECIFIC STYLES --- */
.help-page-body {
  background: radial-gradient(circle at 10% 20%, rgba(241, 21, 31, 0.05) 0%, rgba(6, 7, 9, 1) 55%),
              radial-gradient(circle at 90% 70%, rgba(241, 21, 31, 0.04) 0%, rgba(6, 7, 9, 1) 55%);
  background-color: var(--bg-primary);
}

.help-hero-section {
  position: relative;
  padding: 180px 0 50px 0;
  overflow: hidden;
}

.help-bg-glow {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 250px;
  background: radial-gradient(circle, rgba(241, 21, 31, 0.08) 0%, rgba(241, 21, 31, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.help-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.help-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

.relative-z {
  position: relative;
  z-index: 2;
}

/* Support Options Box */
.support-channels-box {
  padding: 55px;
}

.channel-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 35px 30px;
  height: 100%;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.channel-card:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(46, 213, 115, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.channel-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(46, 213, 115, 0.08);
  color: #2ed573;
  border: 1px solid rgba(46, 213, 115, 0.15);
  box-shadow: 0 0 10px rgba(46, 213, 115, 0.08);
}

.channel-badge.recommended {
  background: #2ed573;
  color: #060709;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 0 12px rgba(46, 213, 115, 0.25);
}

.channel-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  margin-top: 20px;
}

.channel-card-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Row 2: Stats list */
.channel-stats-row {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 0;
}

.stat-item .stat-icon-wrapper {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(46, 213, 115, 0.08);
  color: #2ed573;
  border: 1px solid rgba(46, 213, 115, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.stat-item .stat-label {
  font-size: 0.78rem;
  color: #555c65;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  margin-bottom: 2px;
}

.stat-item .stat-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff;
  word-break: break-all;
}

/* Row 3: Banner */
.live-chat-banner {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 30px 40px;
}

.banner-lightning-wrapper {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2ed573 0%, #20bf6b 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 0 20px rgba(46, 213, 115, 0.35);
  flex-shrink: 0;
}

.live-chat-banner .banner-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.live-chat-banner .banner-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.btn-live-chat {
  background: #2ed573;
  color: #060709 !important;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid #2ed573;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-live-chat:hover {
  background: #20bf6b;
  border-color: #20bf6b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 213, 115, 0.4);
}

/* Form Styles */
.ticket-form-container {
  padding: 50px;
}

.custom-form-input {
  background-color: #0c0e12;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #ffffff !important;
  padding: 14px 18px;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
}

.custom-form-input::placeholder {
  color: #555c65;
}

.custom-form-input:focus {
  background-color: #13171e;
  border-color: #2ed573;
  box-shadow: 0 0 12px rgba(46, 213, 115, 0.15);
}

.form-label {
  font-weight: 500;
  font-size: 0.92rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.btn-pill-success {
  background: #2ed573;
  color: #060709;
  border: 1px solid #2ed573;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  border-radius: 50px;
  padding: 12px 35px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(46, 213, 115, 0.2);
}

.btn-pill-success:hover {
  background: #20bf6b;
  border-color: #20bf6b;
  color: #060709;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(46, 213, 115, 0.4);
}

/* FAQ Accordion */
.faq-accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 8px;
}

.faq-accordion-item:last-child {
  border-bottom: none;
}

.faq-accordion-header {
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.15rem;
  font-weight: 500;
  color: #ffffff;
  padding: 0;
  outline: none;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.faq-accordion-header:hover {
  color: #2ed573;
}

.faq-chevron {
  font-size: 1.15rem;
  color: var(--text-secondary);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-accordion-item.active .faq-chevron {
  transform: rotate(180deg);
  color: #2ed573;
}

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-content-inner {
  padding-top: 18px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Fade Up Entrance class used by JS scroll anim */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
  .help-title {
    font-size: 2.8rem;
  }
  
  .support-channels-box {
    padding: 30px 20px;
  }
  
  .channel-card {
    padding: 25px 20px;
  }
  
  .live-chat-banner {
    padding: 25px 20px;
    text-align: center;
  }
  
  .ticket-form-container {
    padding: 30px 20px;
  }
}

@media (max-width: 575.98px) {
  .help-title {
    font-size: 2.2rem;
  }
  
  .faq-accordion-header {
    font-size: 1.05rem;
  }
}

/* --- AUTH PAGES (LOGIN, SIGNUP, RESET) --- */
.auth-page-body {
  background-color: #060709;
  overflow-x: hidden;
}

.auth-container {
  display: flex;
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.auth-form-column {
  width: 42%;
  flex-shrink: 0;
  background-color: #060709;
  position: relative;
  padding: 40px;
  box-shadow: 10px 0 45px rgba(0, 0, 0, 0.45);
  z-index: 10;
}

.auth-graphic-column {
  width: 58%;
  background-color: #030406;
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.04);
}

.auth-card {
  width: 100%;
  max-width: 420px;
  padding: 45px 35px;
  background: rgba(12, 14, 18, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.auth-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.auth-logo .logo-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 34px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.auth-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #ffffff;
}

.btn-auth-submit {
  background-color: var(--accent-red);
  color: #ffffff !important;
  border: 1px solid var(--accent-red);
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  border-radius: 12px;
  padding: 12px 20px;
  transition: var(--transition-smooth);
}

.btn-auth-submit:hover {
  background-color: var(--accent-red-hover);
  border-color: var(--accent-red-hover);
  box-shadow: 0 8px 25px rgba(241, 21, 31, 0.45);
  transform: translateY(-2px);
}

.auth-accent-link {
  color: var(--accent-red);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.auth-accent-link:hover {
  color: #ffffff;
}

.auth-footer-text {
  font-size: 0.9rem;
  color: #555c65;
}

/* Custom checkbox */
.custom-checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.custom-checkbox {
  background-color: #0c0e12;
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 18px;
  height: 18px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.custom-checkbox:checked {
  background-color: var(--accent-red);
  border-color: var(--accent-red);
}

.checkbox-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
}

/* Password eye toggler button */
.password-toggle-btn {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #555c65;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  outline: none;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.password-toggle-btn:hover {
  color: #ffffff;
}

/* Mock Google reCAPTCHA Widget styling */
.recaptcha-widget-mock {
  background: #f9f9f9;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  padding: 10px 12px;
  width: 100%;
  max-width: 300px;
  height: 74px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.08);
}

.recaptcha-checkbox {
  width: 24px;
  height: 24px;
  border: 2px solid #c1c1c1;
  border-radius: 2px;
  cursor: pointer;
  margin-top: 0;
  transition: border-color 0.2s ease;
}

.recaptcha-checkbox:checked {
  background-color: #09b850;
  border-color: #09b850;
}

.recaptcha-label {
  font-family: Roboto, helvetica, arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #2d2d2d;
  cursor: pointer;
  margin-bottom: 0;
}

.recaptcha-logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.recaptcha-logo-img {
  width: 28px;
  height: 28px;
}

.recaptcha-text-links {
  font-size: 8px;
  color: #555c65;
  font-weight: 500;
  margin-top: 2px;
}

.recaptcha-sub-links {
  font-size: 7px;
  color: #555c65;
}

.recaptcha-sub-links a {
  color: #555c65;
  text-decoration: none;
}

.recaptcha-sub-links a:hover {
  text-decoration: underline;
}

/* Bitcoin coin graphics styles */
.bitcoin-graphic-container {
  position: relative;
  width: 75%;
  max-width: 440px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bitcoin-glow-glow {
  position: absolute;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 123, 0, 0.18) 0%, rgba(255, 123, 0, 0) 70%);
  filter: blur(25px);
  pointer-events: none;
  z-index: 1;
  animation: pulse-bitcoin-glow 4s ease-in-out infinite;
}

.bitcoin-glow-svg {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  animation: rotate-bitcoin-subtle 10s linear infinite;
}

/* Centered Reset Password styles */
.auth-card-centered {
  width: 100%;
  max-width: 440px;
  padding: 55px 45px;
  background: rgba(12, 14, 18, 0.65);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  z-index: 10;
  position: relative;
}

.auth-centered-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 123, 0, 0.08) 0%, rgba(241, 21, 31, 0.02) 50%, rgba(6, 7, 9, 0) 80%);
  pointer-events: none;
  z-index: 1;
}

.forget-info-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.forget-footer-text {
  font-size: 0.88rem;
  color: #555c65;
}

/* Keyframes animations */
@keyframes pulse-bitcoin-glow {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

@keyframes rotate-bitcoin-subtle {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(2deg) translateY(-2px); }
  100% { transform: rotate(0deg); }
}

/* Custom Signup Graphic styling */
.signup-bg-glow {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at 80% 50%, rgba(255, 123, 0, 0.22) 0%, rgba(255, 123, 0, 0.06) 40%, rgba(3, 4, 6, 0) 70%);
  z-index: 1;
  pointer-events: none;
  animation: signup-pulse-glow 8s ease-in-out infinite alternate;
}

.signup-hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 2;
  pointer-events: none;
  animation: float-signup-coin 12s ease-in-out infinite;
}

@keyframes signup-pulse-glow {
  0% {
    transform: scale(0.95) translate(-1%, -1%);
    opacity: 0.65;
  }
  50% {
    transform: scale(1.05) translate(1%, 1%);
    opacity: 1.0;
  }
  100% {
    transform: scale(0.95) translate(-1%, -1%);
    opacity: 0.65;
  }
}

@keyframes float-signup-coin {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(1.2deg) scale(1.005);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
  .auth-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 30px 15px;
    background: radial-gradient(circle at 50% 50%, rgba(255, 123, 0, 0.06) 0%, rgba(6, 7, 9, 1) 75%);
  }
  
  .auth-form-column {
    width: 100%;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    display: flex;
    justify-content: center;
  }
  
  .auth-graphic-column {
    display: none !important;
  }
  
  .auth-card {
    background: rgba(12, 14, 18, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 480.98px) {
  .auth-card {
    padding: 30px 20px;
  }
  
  .auth-title {
    font-size: 1.8rem;
  }
  
  .auth-card-centered {
    padding: 40px 25px;
    margin: 15px;
  }
}
