:root {
  --bg-color: #010a13;
  --card-bg: rgba(10, 20, 30, 0.7);
  --accent-gold: #c8aa6e;
  --accent-blue: #0ac8b9;
  --accent-red: #ff4e50;
  --text-main: #f0e6d2;
  --text-dim: #a09b8c;
  --glass-border: rgba(200, 170, 110, 0.2);
  --font-family: 'Outfit', sans-serif;
  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  background-image: 
    linear-gradient(rgba(1, 10, 19, 0.85), rgba(1, 10, 19, 0.85)),
    url('./background.png');
  background-size: cover;
  background-position: center;
  color: var(--text-main);
  font-family: var(--font-family);
  min-height: 100vh;
  min-height: 100dvh;
  width: 100vw;
  overflow-x: hidden;
  overflow-y: auto; /* Allow scrolling on very small mobile screens */
  display: flex;
  justify-content: center;
  align-items: center;
}

#app {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  display: flex;
  overflow: hidden;
}

.content-area {
  flex: 1;
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  overflow-y: auto;
  position: relative;
}

/* Main Content */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.slots-grid {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
}

.champion-slot {
  width: clamp(120px, 25vw, 200px);
  aspect-ratio: 2/3;
  perspective: 1000px;
  cursor: pointer;
}

.card-inner {
  width: 100%;
  height: 100%;
  background: rgba(10, 20, 30, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.champion-slot:hover .card-inner,
.champion-slot:active .card-inner {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
  background: rgba(200, 170, 110, 0.05);
}

.champion-slot.locked .card-inner {
  border: 2px solid var(--accent-blue);
  box-shadow: 0 0 30px rgba(10, 200, 185, 0.3);
  background: rgba(10, 200, 185, 0.05);
}

.champion-slot.locked[data-empty="true"] .card-inner {
  opacity: 0.4;
  border-color: var(--text-dim);
  box-shadow: none;
  background: rgba(0, 0, 0, 0.2);
}

.champion-slot.locked[data-empty="true"] .lock-status {
  color: var(--text-dim);
}

.champion-slot.locked .lock-status {
  color: var(--accent-blue);
  opacity: 1;
}

.lock-status {
  position: absolute;
  top: 1rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-dim);
  opacity: 0.5;
  transition: var(--transition);
}

.icon-placeholder {
  width: clamp(50px, 10vw, 80px);
  height: clamp(50px, 10vw, 80px);
  border: 1px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.2rem, 4vw, 2rem);
  color: var(--accent-gold);
  margin-bottom: 1.2rem;
  background: radial-gradient(circle, rgba(200, 170, 110, 0.1) 0%, transparent 70%);
  transition: var(--transition);
  overflow: hidden;
}

.champ-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.name {
  font-size: clamp(0.8rem, 3vw, 1.1rem);
  font-weight: 800;
  text-align: center;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tag-selectors {
  margin-top: 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 5;
}

.tag-select {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--glass-border);
  color: var(--text-dim);
  font-family: inherit;
  font-size: 0.6rem;
  padding: 0.25rem 0.4rem;
  border-radius: 0.3rem;
  cursor: pointer;
  outline: none;
  transition: var(--transition);
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-select:hover {
  border-color: var(--accent-gold);
  color: var(--text-main);
}

.tag-select option {
  background: var(--bg-color);
  color: var(--text-main);
}

/* Add Card Slot */
.champion-slot.add-card .card-inner {
  border-style: dashed;
  background: rgba(200, 170, 110, 0.05);
  cursor: pointer;
  opacity: 0.6;
}

.champion-slot.add-card:hover .card-inner,
.champion-slot.add-card:active .card-inner {
  opacity: 1;
  background: rgba(200, 170, 110, 0.1);
  border-style: solid;
}

.remove-slot {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: var(--accent-red);
  color: white;
  border-radius: 50%;
  border: 2px solid var(--bg-color);
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Actions */
.actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.primary-btn {
  background: transparent;
  border: 2px solid var(--accent-gold);
  padding: 1rem 2rem;
  color: var(--accent-gold);
  font-family: inherit;
  font-size: clamp(0.9rem, 3.5vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.1rem;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: var(--transition);
  flex: 1;
  max-width: 300px;
}

.primary-btn:hover, .primary-btn:active {
  background: var(--accent-gold);
  color: var(--bg-color);
  box-shadow: 0 0 30px rgba(200, 170, 110, 0.4);
}

.secondary-btn {
  background: transparent;
  border: 1px solid var(--text-dim);
  padding: 0.8rem 1.5rem;
  color: var(--text-dim);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0.4rem;
  transition: var(--transition);
}

.secondary-btn:hover, .secondary-btn:active {
  border-color: var(--accent-red);
  color: var(--accent-red);
}

/* Footer */
footer {
  margin-bottom: 1rem;
  text-align: center;
  max-width: 80vw;
}

footer p {
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.4;
}

/* Animations */
@keyframes subtleBreathe {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

.rolling .card-inner {
  animation: subtleBreathe 0.6s ease-in-out infinite;
  border-color: var(--accent-gold);
}

@keyframes finalPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); filter: brightness(1.3); }
  100% { transform: scale(1); }
}

.final-pop .card-inner {
  animation: finalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-color: var(--accent-gold);
}

/* Header Layout */
header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
}

header h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.2rem;
  text-shadow: 0 0 30px rgba(200, 170, 110, 0.3);
  text-align: left;
}

.accent {
  color: var(--accent-gold);
}

.icon-btn {
  background: rgba(10, 20, 30, 0.6);
  border: 1px solid var(--glass-border);
  color: var(--accent-gold);
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.8rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.icon-btn:hover {
  background: rgba(200, 170, 110, 0.1);
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(200, 170, 110, 0.2);
}

/* Sidebar */
.sidebar {
  width: 350px;
  height: 100%;
  background: rgba(5, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  z-index: 50;
  flex-shrink: 0;
}

.sidebar.closed {
  margin-right: -350px;
  opacity: 0;
}

.sidebar-header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--glass-border);
}

.sidebar-header h2 {
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin: 0;
}

.close-btn {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.close-btn:hover {
  color: var(--accent-red);
}

.sidebar-content {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.3rem;
  border-radius: 0.5rem;
  border: 1px solid var(--glass-border);
}

.tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-dim);
  padding: 0.6rem;
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 0.3rem;
  transition: var(--transition);
}

.tab-btn:hover {
  color: var(--text-main);
}

.tab-btn.active {
  background: var(--accent-gold);
  color: var(--bg-color);
  box-shadow: 0 0 15px rgba(200, 170, 110, 0.3);
}

.tab-content {
  display: none;
  flex-direction: column;
}

.tab-content.active {
  display: flex;
}

.synergy-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.synergy-item {
  background: rgba(10, 20, 30, 0.5);
  border: 1px solid var(--glass-border);
  padding: 0.8rem;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.syn-icon-main {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--accent-gold);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(200, 170, 110, 0.2);
}

.syn-icon-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.static-item, .custom-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}

.syn-icons-stack {
  display: flex;
  align-items: center;
  width: 100%;
  flex-shrink: 0;
  padding-left: 10px; /* Offset for first icon overlap */
}

.syn-stack-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-gold);
  margin-left: -12px;
  background: var(--bg-color);
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.6);
  transition: var(--transition);
}

.syn-stack-icon:first-child {
  margin-left: 0;
}

.synergy-item:hover .syn-stack-icon {
  margin-left: -2px;
  transform: scale(1.1);
}

.syn-info {
  flex: 1;
  width: 100%;
}

.static-item h4 {
  white-space: normal;
}

.static-item p {
  white-space: normal;
}

.synergy-item:hover {
  border-color: var(--accent-gold);
  background: rgba(200, 170, 110, 0.05);
  transform: translateX(-5px);
}

.synergy-item h4 {
  font-size: 0.85rem;
  color: var(--text-main);
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.synergy-item p {
  font-size: 0.6rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.synergy-item::after {
  content: 'APPLY';
  position: absolute;
  top: 50%;
  right: 0.8rem;
  transform: translateY(-50%);
  font-size: 0.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.synergy-item:hover::after {
  opacity: 1;
}

/* Scrollbar Styling */
.sidebar-content::-webkit-scrollbar {
  width: 3px;
}

.sidebar-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

.sidebar-content::-webkit-scrollbar-thumb {
  background: var(--glass-border);
  border-radius: 10px;
}

.sidebar-content::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

@media (max-width: 1024px) {
  .sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.8);
  }
  
  .sidebar.closed {
    transform: translateX(100%);
    margin-right: 0;
  }
}

.mobile-only {
  display: none;
}

@media (max-width: 1024px) {
  .mobile-only {
    display: block;
  }
}

@media (max-width: 480px) {
  .champion-slot {
    width: 45%; /* 2 cards per row on very small screens */
  }
  .actions {
    flex-direction: column;
    gap: 0.8rem;
  }
  .primary-btn, .secondary-btn {
    width: 100%;
    max-width: none;
  }
  .sidebar {
    width: 85%;
  }
}

@media (hover: hover) {
  .remove-slot {
    opacity: 0;
    transform: scale(0.5);
  }
  .champion-slot:hover .remove-slot {
    opacity: 1;
    transform: scale(1);
  }
}
.main-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: rgba(10, 15, 25, 0.6);
  border-top: 1px solid rgba(200, 170, 110, 0.1);
  backdrop-filter: blur(20px);
  margin-top: auto;
}

.footer-help p {
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-help strong {
  color: var(--accent-gold);
  font-weight: 800;
}

.footer-actions {
  display: flex;
  gap: 0.5rem;
}

.toolbar-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.65rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.7rem 1.2rem;
  border-radius: 4px;
}

.toolbar-btn:hover {
  color: var(--text-main);
  background: rgba(200, 170, 110, 0.1);
  border-color: rgba(200, 170, 110, 0.3);
  transform: translateY(-2px);
}

.toolbar-btn svg {
  color: var(--accent-gold);
  transition: inherit;
}

.toolbar-btn:hover svg {
  filter: drop-shadow(0 0 5px var(--accent-gold));
}

.toolbar-btn.copied {
  color: #00ff80 !important;
  background: rgba(0, 255, 128, 0.1) !important;
  border-color: rgba(0, 255, 128, 0.3) !important;
}

.toolbar-btn.copied svg {
  color: #00ff80 !important;
}

@media (max-width: 768px) {
  .main-footer {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .footer-actions {
    width: 100%;
    justify-content: center;
  }
  
  .toolbar-btn {
    flex: 1;
    justify-content: center;
  }
}

.delete-custom-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 64, 64, 0.2);
  border: 1px solid rgba(255, 64, 64, 0.4);
  color: white;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 100; /* Ensure it's above everything */
  line-height: 1;
}

.delete-custom-btn:hover {
  background: #ff4040;
  border-color: #ff8080;
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(255, 64, 64, 0.5);
}

.delete-custom-btn.confirming {
  width: auto;
  padding: 0 10px;
  border-radius: 4px;
  background: #ff4040;
  border-color: #ff8080;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 1px;
  animation: pulse-red 1s infinite;
}

@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(255, 64, 64, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 64, 64, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 64, 64, 0); }
}

.empty-msg {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  font-style: italic;
  width: 100%;
}

@media (max-width: 1024px) {
  #save-team-btn span {
    display: none;
  }
  #save-team-btn {
    padding: 10px;
    margin-right: 5px;
  }
}

.tab-disclaimer {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem;
  background: rgba(10, 20, 30, 0.4);
  border: 1px solid rgba(200, 170, 110, 0.1);
  border-radius: 6px;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.tab-disclaimer svg {
  color: var(--accent-gold);
  opacity: 0.8;
  flex-shrink: 0;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  transition: opacity 0.3s ease;
}

.modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.modal-content {
  background: rgba(20, 25, 35, 0.98);
  border: 1px solid var(--accent-gold);
  padding: 2.5rem;
  border-radius: 12px;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.8), 0 0 20px rgba(200, 170, 110, 0.1);
  text-align: center;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.modal-overlay.hidden .modal-content {
  transform: translateY(20px);
}

.modal-content h3 {
  color: var(--accent-gold);
  margin-bottom: 0.8rem;
  letter-spacing: 3px;
  font-size: 1.2rem;
  font-weight: 800;
}

.modal-content p {
  color: var(--text-dim);
  margin-bottom: 2rem;
  font-size: 0.85rem;
}

.modal-content input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 1.2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  font-family: inherit;
  font-size: 1.1rem;
  outline: none;
  transition: all 0.2s;
  box-sizing: border-box;
}

.modal-content input:focus {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 15px rgba(200, 170, 110, 0.2);
}

.modal-actions {
  display: flex;
  gap: 1.2rem;
}

.modal-btn {
  flex: 1;
  padding: 1rem;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
}

.modal-btn.primary {
  background: var(--accent-gold);
  color: #000;
  border: none;
}

.modal-btn.primary:hover {
  background: #f0cc8a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(200, 170, 110, 0.4);
}

.modal-btn.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-dim);
}

.modal-btn.secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

/* Champion Select Modal Specifics */
.champ-select-content {
    max-width: 800px !important;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    padding: 1.5rem !important;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.modal-header h3 {
    margin: 0;
}

.search-container {
    margin-bottom: 1rem;
}

.search-container input {
    margin-bottom: 0 !important;
    padding: 0.8rem 1rem !important;
    font-size: 0.9rem !important;
}

.champ-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.8rem;
    overflow-y: auto;
    padding: 0.5rem;
}

/* Custom Scrollbar for Grid */
.champ-grid::-webkit-scrollbar {
    width: 4px;
}
.champ-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}
.champ-grid::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

.champ-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid transparent;
}

.champ-item:hover {
    background: rgba(200, 170, 110, 0.1);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.champ-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--accent-gold);
    object-fit: cover;
}

.champ-item span {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-dim);
    text-align: center;
    text-transform: uppercase;
}

.champ-item:hover span {
    color: var(--text-main);
}

/* Slot Select Button */
.manual-select-btn {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-color);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-family: inherit;
    font-size: 0.55rem;
    font-weight: 800;
    padding: 0.3rem 0.6rem;
    border-radius: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 1px;
}

.manual-select-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-color);
    box-shadow: 0 0 10px rgba(200, 170, 110, 0.4);
}
