/* ==========================================================================
   RIVAL LORDS - Header & Footer Universal Styles
   Aesthetics: Deep Cyber-Gold, Neon Cyan, Obsidian Glassmorphism
   ========================================================================== */

/* HEADER CONTAINER & STICKY BAR */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 1000;
  background: linear-gradient(135deg, #ffd95a 0%, #c8a2d8 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
}

.site-header.scrolled {
  height: 70px;
  background: linear-gradient(135deg, rgba(255, 217, 90, 0.98) 0%, rgba(200, 162, 216, 0.98) 100%);
  border-bottom-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35), 0 0 20px rgba(255, 217, 90, 0.4);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* BRAND LOGO */
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #1f0e2b;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: transform var(--transition-bounce), filter var(--transition-fast);
}

.header-logo:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 0 12px rgba(107, 33, 168, 0.5));
}

.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #6b21a8;
  box-shadow: 0 0 15px rgba(107, 33, 168, 0.4);
  background: transparent;
}

.header-logo .highlight {
  color: #6b21a8;
}

/* NAVIGATION LIST */
.header-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: #2e163b;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #6b21a8, #d946ef);
  transition: width var(--transition-fast);
  box-shadow: 0 0 10px rgba(107, 33, 168, 0.5);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: #000000;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* DROPDOWN SERVICES MENU */
.nav-item-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.dropdown-toggle .arrow {
  font-size: 0.7rem;
  transition: transform var(--transition-normal);
}

.nav-item-dropdown:hover .dropdown-toggle .arrow {
  transform: rotate(180deg);
  color: #00f0ff;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -20px;
  width: 304px;
  background: rgba(8, 16, 34, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 240, 255, 0.35);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 240, 255, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.96);
  transform-origin: top left;
  transition: all var(--transition-normal);
  z-index: 1010;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 40px;
  width: 14px;
  height: 14px;
  background: rgba(8, 16, 34, 0.97);
  border-left: 1px solid rgba(0, 240, 255, 0.35);
  border-top: 1px solid rgba(0, 240, 255, 0.35);
  transform: rotate(45deg);
  pointer-events: none;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-item > * {
  pointer-events: none;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.dropdown-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(180deg, #00f0ff, #00f5d4);
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

.dropdown-item:hover {
  background: rgba(0, 240, 255, 0.16);
  color: #ffffff;
  transform: translateX(6px);
}

.dropdown-item:hover::before {
  opacity: 1;
}

.dropdown-item .item-icon {
  width: 38px;
  height: 38px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 240, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00f0ff;
  font-size: 1.2rem;
  overflow: hidden;
  transition: transform var(--transition-bounce), background var(--transition-fast);
}

.dropdown-item .item-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dropdown-item:hover .item-icon {
  transform: scale(1.12) rotate(-5deg);
  background: rgba(0, 240, 255, 0.25);
  border-color: #00f0ff;
}

.dropdown-item-info {
  display: flex;
  flex-direction: column;
}

.dropdown-item-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  color: #ffffff;
}

.dropdown-item-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* HEADER ACTIONS & CURRENCY SELECTOR */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.currency-dropdown-wrapper {
  position: relative;
}

.currency-trigger-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  background: linear-gradient(135deg, rgba(16, 30, 66, 0.9), rgba(10, 20, 46, 0.95));
  border: 1.5px solid rgba(255, 183, 3, 0.55);
  border-radius: 12px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 183, 3, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.currency-trigger-btn:hover {
  border-color: #ffb703;
  box-shadow: 0 0 20px rgba(255, 183, 3, 0.6);
  transform: translateY(-2px);
}

.currency-flag {
  font-size: 1.05rem;
}

.currency-code {
  letter-spacing: 0.05em;
  color: #ffb703;
  font-weight: 900;
}

.currency-arrow {
  font-size: 0.65rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.currency-dropdown-wrapper.active .currency-arrow {
  transform: rotate(180deg);
}

.currency-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 175px;
  background: rgba(10, 20, 46, 0.98);
  border: 1.5px solid rgba(0, 229, 255, 0.4);
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.85), 0 0 20px rgba(0, 229, 255, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
}

.currency-dropdown-wrapper.active .currency-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.currency-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}

.currency-option:hover {
  background: rgba(0, 229, 255, 0.15);
  color: #ffffff;
}

.currency-option.active {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.25), rgba(255, 183, 3, 0.25));
  color: #ffb703;
  border: 1px solid rgba(255, 183, 3, 0.4);
}

.cart-icon-btn {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(35, 112, 155, 0.9), rgba(28, 95, 133, 0.95));
  border: 1.5px solid rgba(255, 183, 3, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffb703;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35), 0 0 15px rgba(255, 183, 3, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-custom-svg {
  filter: drop-shadow(0 0 6px rgba(255, 183, 3, 0.6));
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-icon-btn:hover {
  border-color: #ffd166;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.4), rgba(244, 63, 94, 0.35));
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 25px rgba(255, 183, 3, 0.5), 0 0 20px rgba(0, 245, 212, 0.4);
}

.cart-icon-btn:hover .cart-custom-svg {
  transform: scale(1.12) rotate(-6deg);
  filter: drop-shadow(0 0 14px rgba(255, 183, 3, 0.95));
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: linear-gradient(135deg, #f43f5e 0%, #ffb703 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 900;
  min-width: 22px;
  height: 22px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  box-shadow: 0 0 14px rgba(244, 63, 94, 0.9);
  border: 2px solid #144e6e;
}

.btn-discord-header {
  font-size: 0.95rem;
  padding: 0.65rem 1.35rem;
}

/* USER PROFILE DROPDOWN & RESPONSIVE CIRCLE (GLOBAL & DESKTOP) */
.user-profile-dropdown {
  position: relative;
  display: inline-block;
}

.user-profile-trigger-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 16px 5px 5px;
  background: rgba(15, 20, 30, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.user-profile-trigger-btn:hover {
  border-color: var(--purple-primary);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

.user-avatar-wrapper {
  position: relative;
  padding: 2px;
  background: linear-gradient(135deg, #00f5d4, #a855f7, #ffc800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-avatar-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  border: 2px solid #07090e;
}

.user-avatar-status {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #00f5d4;
  border-radius: 50%;
  border: 2px solid #07090e;
  box-shadow: 0 0 8px #00f5d4;
}

.user-name-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
}

.user-arrow-icon {
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.user-menu-popup {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 220px;
  background: rgba(8, 16, 34, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 240, 255, 0.35);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 240, 255, 0.25);
  z-index: 9999;
}

.user-menu-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.user-menu-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--cyan-primary);
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0, 245, 212, 0.3);
}

.user-menu-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.user-menu-username {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-menu-status {
  font-size: 0.75rem;
  color: var(--cyan-primary);
  font-weight: 600;
}

/* User Booster Card in Dropdown Menu */
.user-menu-booster-card {
  margin-top: 4px;
  padding: 0.35rem 0.65rem;
  background: linear-gradient(135deg, rgba(244, 127, 255, 0.2), rgba(168, 85, 247, 0.28));
  border: 1px solid rgba(244, 127, 255, 0.55);
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(244, 127, 255, 0.3);
}

.booster-card-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.75rem;
  color: #f47fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}

.booster-card-benefit {
  font-size: 0.68rem;
  color: #ffffff;
  font-weight: 700;
  margin-top: 1px;
}

.header-booster-badge {
  background: linear-gradient(135deg, #f47fff, #a855f7);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 900;
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
  margin-left: 0.4rem;
  letter-spacing: 0.5px;
  box-shadow: 0 0 10px rgba(244, 127, 255, 0.5);
  text-transform: uppercase;
}

.avatar-booster-glow {
  border-color: #f47fff !important;
  box-shadow: 0 0 14px rgba(244, 127, 255, 0.6) !important;
}

.user-logout-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.75rem 1rem;
  background: rgba(255, 74, 74, 0.1);
  border: 1px solid rgba(255, 74, 74, 0.3);
  color: #ff4a4a;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.2s ease;
  outline: none;
}

.user-logout-btn:hover {
  background: rgba(255, 74, 74, 0.25);
  border-color: #ff4a4a;
  box-shadow: 0 0 15px rgba(255, 74, 74, 0.3);
  transform: translateY(-1px);
}

/* Mobile Toggle Button */
.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0.5rem 0.85rem;
  transition: var(--transition-fast);
}

.mobile-toggle:hover {
  background: rgba(168, 85, 247, 0.18);
  border-color: var(--purple-primary);
}

/* FOOTER STYLES */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding-top: 5.5rem;
  padding-bottom: 3.5rem;
  margin-top: auto;
  margin-bottom: 0 !important;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffb703, #ff477e, #00f0ff, #00f5d4, transparent);
  animation: shimmerGradient 8s ease infinite;
  background-size: 200% auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand .header-logo {
  margin-bottom: 1.2rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 1.8rem;
}

.footer-socials {
  display: flex;
  gap: 0.85rem;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  text-decoration: none;
  transition: all var(--transition-bounce);
}

.social-link:hover {
  background: #00f0ff;
  color: #030814;
  border-color: #00f5d4;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 240, 255, 0.45);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.6rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 35px;
  height: 2.5px;
  background: #00f0ff;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
  border-radius: 2px;
}

.accordion-icon {
  display: none;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: #00f0ff;
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* RESPONSIVE STYLES */
@media (max-width: 992px) {
  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(14, 8, 30, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-glow);
    padding: 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
    transform: translateY(-150%);
    transition: transform var(--transition-normal);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.95);
    z-index: 999;
  }

  .header-nav.active {
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 1.4rem;
  }
  
  .nav-link {
    font-size: 1.1rem;
    padding: 0.75rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    margin-top: 0.5rem;
    padding: 0.5rem;
    display: none;
  }
  
  .dropdown-menu::before {
    display: none;
  }

  .nav-item-dropdown.active .dropdown-menu {
    display: flex;
    flex-direction: column;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    width: 44px;
    height: 44px;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .mobile-toggle:active {
    background: rgba(255,255,255,0.1);
    transform: scale(0.95);
  }

  .user-name-text {
    display: none !important;
  }

  .user-profile-trigger-btn {
    padding: 3px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    justify-content: center;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  #main-header .container {
    padding: 0.6rem 0.8rem;
  }
  
  .btn-discord-header span {
    display: none;
  }
  
  .btn-discord-header {
    width: 42px;
    height: 42px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
  }
  
  .btn-discord-header svg {
    margin-right: 0 !important;
    width: 20px;
    height: 20px;
  }

  .currency-trigger-btn .currency-code {
    display: none;
  }
  
  .currency-trigger-btn {
    padding: 0.4rem 0.5rem;
    height: 42px;
    border-radius: 8px;
  }
  
  .cart-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 8px;
  }
  
  .header-logo {
    font-size: 1.15rem;
    gap: 0.4rem;
    white-space: nowrap;
  }

  .header-logo span {
    font-size: 1.15rem;
  }
  
  .logo-img {
    width: 34px;
    height: 34px;
    border-width: 1px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: left;
  }
  
  .footer-brand {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .footer-col {
    padding-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  
  .footer-col:last-child {
    border-bottom: none;
  }
  
  .accordion-header {
    font-size: 1.1rem;
    margin-bottom: 0;
    padding: 1.2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    width: 100%;
  }
  
  .footer-col .accordion-header::after {
    display: none;
  }
  
  .accordion-icon {
    display: block;
    transition: transform 0.3s ease;
  }
  
  .accordion-group.active .accordion-icon {
    transform: rotate(180deg);
  }
  
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-bottom: 0;
  }
  
  .accordion-group.active .accordion-content {
    max-height: 300px;
    padding-bottom: 1rem;
  }
  
  .footer-links li {
    margin-bottom: 0.4rem;
  }
  
  .footer-links a {
    font-size: 0.85rem;
    padding: 0.2rem 0;
    display: inline-block;
  }
  
  .footer-col.about p {
    margin: 0.75rem auto;
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .social-links {
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
  }
  
  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    padding-top: 1rem;
  }
  
  .footer-disclaimer {
    font-size: 0.7rem;
    line-height: 1.4;
  }
}
