/* ============================================
   THEME & COLOR VARIABLES
   ============================================
   All color definitions in one place for easy maintenance
*/
:root {
  /* Changed from purple to dark pink theme */
  --primary-dark: #0a0e27;
  --secondary-dark: #1a1f3a;
  --text-light: #ffffff;
  --text-muted: #a8b2d4;
  --accent-purple: #d946a6;
  --accent-purple-light: #ec4899;
  --border-subtle: #2d3561;
  --shadow_dark: rgba(0, 0, 0, 0.7);
}

/* ============================================
   GLOBAL STYLES
   ============================================
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: auto;
  min-height: 100vh;
  background: var(--primary-dark);
  color: var(--text-light);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  padding-bottom: 0;
}

@media (max-width: 767px) {
  main {
    padding-bottom: 80px;
  }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ============================================
   SECTION WRAPPER (Generic for all sections)
   ============================================ */
.section {
  padding: 3rem 0;
  background: var(--primary-dark);
  border-bottom: 1px solid var(--border-subtle);
}

/* ============================================
   HEADER STYLES
   ============================================
*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--secondary-dark);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 50px;
  display: flex;
  align-items: center;
}

.logo img {
  max-width: 150px;
  height: auto;
}

.header-buttons {
  display: flex;
  gap: 1rem;
}

.menu-btn {
  background: transparent;
  border: none;
  color: var(--accent-purple-light);
  cursor: pointer;
  font-size: 1.5rem;
  padding: 0.5rem;
}

.desktop-buttons {
  display: none;
  gap: 1rem;
}

@media (min-width: 768px) {
  .desktop-buttons {
    display: flex;
  }
}

main {
  margin-top: 80px;
}

/* ============================================
   NAVIGATION MENU STYLES
   ============================================
*/
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--secondary-dark);
  border-left: 1px solid var(--border-subtle);
  transition: right 0.3s ease;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  z-index: 999;
  padding-top: calc(80px + 2rem);
}

.nav-menu.active {
  right: 0;
}

.nav-menu a {
  display: block;
  margin-bottom: 1rem;
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--accent-purple-light);
}

.nav-submenu {
  margin-left: 1.5rem;
  margin-top: 0.5rem;
}

.nav-submenu a {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 40;
}

.menu-overlay.active {
  display: block;
}

.close-btn {
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
  transition: color 0.3s;
  padding: 0.5rem;
}

.close-btn:hover {
  color: var(--accent-purple-light);
}

/* ============================================
   BUTTON STYLES
   ============================================
*/
.btn {
  padding: 0.75rem 1.5rem;
  border: 1px solid;
  border-radius: 0.375rem;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--accent-purple);
  color: var(--text-light);
  border-color: var(--accent-purple);
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--accent-purple-light);
  border-color: var(--accent-purple-light);
}

.btn-outline {
  background: transparent;
  color: var(--accent-purple-light);
  border-color: var(--accent-purple-light);
  font-weight: 600;
}

.btn-outline:hover {
  background: var(--accent-purple-light);
  color: var(--primary-dark);
}

.btn-bonus {
  background: linear-gradient(135deg, #ec4899, #d946a6);
  color: var(--text-light);
  border-color: transparent;
  font-weight: 600;
}

.btn-bonus:hover {
  opacity: 0.9;
}

.section-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .section-cta {
    flex-direction: row;
  }
}

/* ============================================
   HERO SECTION
   ============================================
*/
#hero {
  background: var(--primary-dark);
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 900;
  text-align: center;
  color: var(--accent-purple-light);
  margin-bottom: 2rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-slider {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto 2rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .hero-slider {
    width: 500px;
    height: 500px;
  }
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  padding: 1rem;
  transition: opacity 0.3s;
}

.slider-btn:hover {
  opacity: 0.7;
}

.slider-btn.prev {
  left: 1rem;
}

.slider-btn.next {
  right: 1rem;
}

.hero-text {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem 0;
  font-size: 1.125rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* ============================================
   OVERVIEW BANNER SECTION
   ============================================
*/
.section-banner {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto 2rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .section-banner {
    width: 500px;
    height: 500px;
  }
}

@media (min-width: 1024px) {
  .section-banner {
    width: 500px;
    height: 500px;
  }
}

.section-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   SECTION TITLE & SUBTITLE
   ============================================
*/
.section-title {
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  color: var(--accent-purple-light);
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle-large {
  font-size: 1.125rem;
}

/* ============================================
   TAB SYSTEM - BASE STYLES
   ============================================
*/
.tabs-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  background: var(--secondary-dark);
  border-radius: 0.375rem;
  padding: 0.25rem;
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  border-radius: 0.25rem;
  transition: all 0.3s;
  font-size: 1rem;
}

.tab-btn.active {
  background: var(--primary-dark);
  color: var(--accent-purple-light);
}

.tab-btn:hover {
  color: var(--accent-purple-light);
}

/* ============================================
   TAB CONTENT - BASE STYLES
   ============================================
*/
.tab-content-wrapper {
  max-width: 48rem;
  margin: 0 auto;
}

.tab-content {
  display: none !important;
}

.tab-content.active {
  display: block !important;
}

#overview .tab-content,
#login .tab-content,
#app .tab-content,
#features .tab-content,
#payment .tab-content,
#bonus .tab-content,
#safety .tab-content {
  display: none !important;
}

#overview .tab-content.active,
#login .tab-content.active,
#app .tab-content.active,
#features .tab-content.active,
#payment .tab-content.active,
#bonus .tab-content.active,
#safety .tab-content.active {
  display: block !important;
}

/* ============================================
   TAB CONTENT BOX - BASE STYLES
   ============================================
*/
.tab-content-box {
  background: var(--secondary-dark);
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border-subtle);
  margin-bottom: 2rem;
}

.tab-content-box:hover {
  border-color: var(--accent-purple-light);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.15);
}

.tab-content-title {
  color: var(--accent-purple-light);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.tab-content-text {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.tab-content-list {
  color: var(--text-muted);
  line-height: 1.8;
  margin-left: 1.5rem;
}

/* ============================================
   TAB CONTENT GRID LAYOUTS
   ============================================
   Grid variations for different section layouts
*/
.tab-content-wrapper-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .tab-content-wrapper-grid-2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .tab-content-wrapper-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tab-content-wrapper-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 640px) {
  .tab-content-wrapper-grid-3 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (min-width: 640px) and (max-width: 768px) {
  .tab-content-wrapper-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tab-content-wrapper-grid-4 {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

/* ============================================
   TAB CONTENT BOX VARIATIONS
   ============================================
   Different box styles for different content types
*/

/* Box Type 1: Large cards with hover lift effect */
.tab-content-box-1 {
  background: var(--secondary-dark);
  border: 1px solid var(--border-subtle);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.tab-content-box-1:hover {
  border-color: var(--accent-purple-light);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.15);
}

.tab-content-box-1-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.tab-content-box-1-title {
  color: var(--accent-purple-light);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.tab-content-box-1-text {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Box Type 2: Smaller cards with subtle shadow effect */
.tab-content-box-2 {
  background: var(--secondary-dark);
  border: 1px solid var(--border-subtle);
  border-radius: 0.375rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.tab-content-box-2:hover {
  border-color: var(--accent-purple-light);
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.1);
  transform: translateY(-2px);
}

.tab-content-box-2-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.tab-content-box-2-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-purple-light);
  margin-bottom: 0.5rem;
}

.tab-content-box-2-text {
  color: var(--text-muted);
  line-height: 1.5;
  font-size: 0.9rem;
}

/* Box Type 3: Left border accent style */
.tab-content-box-3 {
  background: linear-gradient(135deg, rgba(217, 70, 166, 0.05) 0%, rgba(217, 70, 166, 0.02) 100%);
  border-left: 4px solid var(--accent-purple);
  border-radius: 0.375rem;
  padding: 1.75rem;
}

.tab-content-box-3:nth-child(2) {
  border-left-color: var(--accent-purple-light);
}

.tab-content-box-3:nth-child(3) {
  border-left-color: var(--accent-purple);
}

.tab-content-box-3:nth-child(4) {
  border-left-color: var(--accent-purple-light);
}

.tab-content-box-3:hover {
  border-color: var(--accent-purple-light);
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.1);
  transform: translateY(-2px);
}

.tab-content-box-3-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-purple-light);
  margin-bottom: 0.5rem;
}

.tab-content-box-3-text {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Box Type 4: Contact/Info boxes */
.tab-content-box-4 {
  background: var(--secondary-dark);
  border: 1px solid var(--border-subtle);
  border-radius: 0.375rem;
  padding: 2rem;
  text-align: center;
}

.tab-content-box-4-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.tab-content-box-4:hover {
  border-color: var(--accent-purple-light);
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.1);
  transform: translateY(-2px);
}

.tab-content-box-4-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-purple-light);
  margin-bottom: 0.75rem;
}

.tab-content-box-4-text a {
  color: var(--accent-purple-light);
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.3s ease;
}

.tab-content-box-4-text a:hover {
  opacity: 0.8;
}

/* ============================================
   GAMES SECTION
   ============================================
*/
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.game-card {
  position: relative;
  background: var(--secondary-dark);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: transform 0.3s;
}

.game-card:hover {
  transform: scale(1.05);
}

.game-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.game-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--shadow_dark);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.game-card:hover .game-card-overlay {
  opacity: 1;
}

.play-btn {
  background: var(--accent-purple);
  color: var(--text-light);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: opacity 0.3s;
}

.play-btn:hover {
  opacity: 0.9;
}

.games-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* ============================================
   PROMOTIONS SECTION
   ============================================
*/
.promotions-table {
  background: var(--secondary-dark);
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.table-header {
  display: none;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--border-subtle);
  font-weight: 600;
  color: var(--text-light);
}

@media (min-width: 1024px) {
  .table-header {
    display: grid;
  }
}

.table-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--border-subtle);
  align-items: center;
}

@media (min-width: 768px) {
  .table-row {
    grid-template-columns: 2fr 1fr;
  }
}

@media (min-width: 1024px) {
  .table-row {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.table-row:last-child {
  border-bottom: none;
}

.promo-desc {
  color: var(--text-light);
  font-weight: 500;
  text-align: center;
}

@media (min-width: 768px) {
  .promo-desc {
    text-align: left;
  }
}

.timer {
  text-align: center;
  color: var(--accent-purple-light);
  font-weight: 600;
}

/* ============================================
   FAQ SECTION
   ============================================
*/
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1.5rem 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--accent-purple-light);
}

.faq-question.active {
  color: var(--accent-purple-light);
}

.faq-arrow {
  display: inline-block;
  transition: transform 0.3s;
  font-size: 1.25rem;
}

.faq-arrow.active {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  color: var(--text-muted);
  padding: 0;
  line-height: 1.6;
}

.faq-answer.active {
  max-height: 1000px;
  padding-bottom: 1.5rem;
}

/* ============================================
   FOOTER STYLES
   ============================================
*/
footer {
  background: var(--secondary-dark);
  color: var(--text-light);
  padding: 2rem 0;
  margin-top: auto;
}

.footer-top-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-top-section {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-top-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-top-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (max-width: 767px) {
  .footer-top-right {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.footer-top-item {
  text-align: center;
  padding: 0.5rem 0;
}

@media (min-width: 768px) {
  .footer-top-item {
    padding: 1rem 0;
  }
}

.footer-top-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--accent-purple-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 32rem;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .footer-grid {
    gap: 0.75rem;
  }
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffffff, var(--accent-purple));
  border: 1px solid var(--border-subtle);
  border-radius: 0.5rem;
  padding: 1rem;
  aspect-ratio: 1;
}

.footer-item:hover {
  border-color: var(--accent-purple-light);
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .footer-item {
    padding: 0.75rem;
  }
}

.footer-item img {
  max-width: 100px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 640px) {
  .footer-item img {
    max-width: 80px;
  }
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-columns {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--accent-purple-light);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--accent-purple-light);
}

.brand-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 1rem;
  display: block;
}

.brand-description {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: left;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--primary-dark);
  border: 1px solid var(--border-subtle);
  border-radius: 0.375rem;
  color: var(--accent-purple-light);
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--accent-purple-light);
  color: var(--primary-dark);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ============================================
   MOBILE FOOTER
   ============================================
*/
.mobile-footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--secondary-dark);
  border-top: 1px solid var(--border-subtle);
  padding: 1rem;
  z-index: 45;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
  .mobile-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
}

.mobile-footer-buttons {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}

.mobile-footer .btn {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  border-radius: 0.375rem;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================
*/
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--accent-purple);
  color: var(--text-light);
  border: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 40;
  transition: opacity 0.3s;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

/* ============================================
   BREADCRUMB NAVIGATION
   ============================================
*/
.breadcrumb-section {
  padding: 1rem 0;
  margin-top: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.breadcrumb-nav a {
  color: var(--accent-purple-light);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.breadcrumb-nav a:hover {
  opacity: 0.8;
}

.breadcrumb-separator {
  color: var(--text-muted);
  margin: 0 0.25rem;
}

.breadcrumb-current {
  color: var(--text-light);
  font-weight: 500;
}

/* ============================================
   UTILITY CLASSES
   ============================================
*/
a {
  color: var(--accent-purple-light);
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

.text-center {
  text-align: center;
}

.text-align-center {
  text-align: center;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.max-width-3xl {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.responsive-text {
  font-size: 1rem;
}

@media (min-width: 768px) {
  .responsive-text {
    font-size: 1.25rem;
  }
}

.hero-content {
  padding: 2rem 0;
  text-align: center;
}
