/* ========================================================================= 
   BDG Win Website Styles (Exact Replica)
   ========================================================================= */

:root {
  /* Brand Colors from Target */
  --dark-bar: #2a2a2a;
  --light-gold: #ecc879;
  --green-btn: #1cc28a;
  --green-gradient: linear-gradient(to right, #28e78a, #09e091);
  --section-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --text-main: rgb(40, 41, 43);
  --heading-main: #111827;
  --bg-main: #ffffff;
  --bg-step: #f3f4f6;
  
  /* Layout */
  --container-width: 1200px;
}

/* ========================================================================= 
   Base & Reset
   ========================================================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: Arial, sans-serif;
  font-size: 18px; /* Target size for p */
  line-height: 1.9; /* Specific line-height from analysis */
  color: var(--text-main);
  background-color: var(--bg-main);
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--heading-main);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Arial, sans-serif;
  font-weight: bold;
  line-height: 1.4;
  color: var(--heading-main);
  margin-bottom: 15px;
}

h1, h2 { 
  font-size: 26px; 
}
h3 { 
  font-size: 22px; 
}

p {
  margin-bottom: 20px;
  font-weight: 300;
}

ul, ol {
  margin-left: 40px;
  margin-bottom: 20px;
}

li {
  margin-bottom: 10px;
}

/* ========================================================================= 
   Layout & Utilities
   ========================================================================= */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 40px;
  margin: 40px auto;
  max-width: var(--container-width);
  box-shadow: var(--section-shadow);
  border: 1px solid #eaeaea;
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
    line-height: 1.7;
  }

  h1, h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 17px;
  }

  .section-card {
    padding: 20px;
    margin: 20px 10px;
  }
}

.text-center { text-align: center; }
.font-bold { font-weight: bold; }

/* ========================================================================= 
   Header & Navigation
   ========================================================================= */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.top-bar {
  background-color: var(--dark-bar);
  padding: 10px 20px;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.top-bar .btn-small {
  background: var(--light-gold);
  color: #000;
  border: 1px solid #000;
  border-radius: 6px;
  padding: 6px 15px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  min-width: 100px;
  transition: opacity 0.2s;
}

.top-bar .btn-small.blue {
  background: #1d9bf0;
  color: #fff;
  border-color: #1d9bf0;
}

.top-bar .btn-small:hover {
  opacity: 0.9;
  text-decoration: none;
}

.nav-bar {
  background-color: var(--light-gold);
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 85px; /* Increased size */
  mix-blend-mode: multiply; /* Removes white background by blending it with the gold background */
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

/* Dropdown Menu styling */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--light-gold);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1000;
  list-style: none;
  padding: 10px 0;
  border-radius: 8px;
  margin: 0;
  left: 0;
  top: 100%;
}

.dropdown-content li {
  margin: 0;
}

.dropdown-content a {
  color: #000;
  padding: 10px 16px;
  display: block;
}

.dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Primary Download Button */
.btn-download {
  background: var(--green-gradient);
  color: white;
  padding: 10px 25px;
  border-radius: 30px; /* Pill shape */
  font-weight: bold;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}
.btn-download:hover {
  transform: translateY(-2px);
  text-decoration: none;
  color: white;
}

/* Mobile Nav Toggle */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #000;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--light-gold);
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    gap: 15px;
    z-index: 100;
  }
  .nav-links.show {
    display: flex;
  }
  
  .dropdown-content {
    position: static;
    box-shadow: none;
    background-color: transparent;
    padding-left: 20px;
  }
  .dropdown:hover .dropdown-content,
  .dropdown:focus-within .dropdown-content {
    display: block;
  }
  .nav-links .btn-download {
    text-align: center;
    width: 100%;
  }
  
  /* Logo size on mobile */
  .logo img {
    height: 50px;
  }

  /* Top bar responsive adjustments */
  .top-bar {
    justify-content: center;
    padding: 10px;
    gap: 8px;
  }
  .top-bar .btn-small {
    padding: 6px 10px;
    min-width: 80px;
    font-size: 12px;
  }
}

/* ========================================================================= 
   Images and Steps Layout
   ========================================================================= */
.img-container {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.img-container img {
  border-radius: 12px;
  max-width: 100%;
  width: 350px; /* Typical phone screenshot width */
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.step-block {
  margin-bottom: 40px;
}

.step-block h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.step-highlight {
  background: var(--bg-step);
  padding: 10px 15px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 15px;
}

/* General Styling for Content */
.highlight-header {
  background: #c3e0ff;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: 15px;
}

/* Footer */
.main-footer {
  background-color: var(--light-gold);
  color: #000;
  padding: 40px 0;
  margin-top: 60px;
  text-align: center;
  border-top: 1px solid #d4b46c;
}

.main-footer a {
  color: #000;
  font-weight: bold;
}

/* =========================================================================
   Hero Banner
   ========================================================================= */
.hero-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-radius: 16px;
  padding: 40px 24px 36px;
  margin: 20px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: rgba(236, 200, 121, 0.08);
  border-radius: 50%;
}

.hero-badge {
  display: inline-block;
  background: rgba(236, 200, 121, 0.15);
  border: 1px solid var(--light-gold);
  color: var(--light-gold);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.hero-title {
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.2;
}

.hero-brand {
  color: var(--light-gold);
}

.hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: 400;
}

.hero-bonus {
  background: linear-gradient(135deg, var(--light-gold), #f5a623);
  color: #000;
  display: inline-block;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 28px;
  box-shadow: 0 4px 15px rgba(236, 200, 121, 0.4);
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  min-width: 140px;
  justify-content: center;
}

.hero-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.hero-btn-primary {
  background: var(--green-gradient);
  color: #fff;
  box-shadow: 0 4px 14px rgba(28, 194, 138, 0.4);
}

.hero-btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}

.hero-btn-secondary:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

@media (max-width: 768px) {
  .hero-banner {
    padding: 28px 18px 26px;
    border-radius: 12px;
  }
  .hero-title {
    font-size: 24px;
  }
  .hero-bonus {
    font-size: 16px;
    padding: 9px 18px;
  }
  .hero-btn {
    padding: 11px 20px;
    font-size: 14px;
    min-width: 130px;
  }
}
