/* Cookie Consent Modal Styles - Dark Mode */
.cookie-consent-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20,20,20,0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  overflow: auto;
}
.cookie-consent-content {
  background: #242424;
  border-radius: 12px;
  max-width: 600px;
  width: 95vw;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.28);
  position: relative;
  color: #c4c4c4;
  display: flex;
  flex-direction: column;
}
.cookie-consent-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 28px;
  color: #c4c4c4;
  cursor: pointer;
  transition: color 0.2s;
}
.cookie-consent-close:hover {
  color: #ff9800;
}
.cookie-consent-content h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #fff;
}
.cookie-category {
  border-bottom: 1px solid #333;
  padding: 18px 0 10px 0;
}
.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.cookie-category-status {
  color: #1db954;
  font-weight: 700;
  font-size: 15px;
}
.cookie-category-desc {
  font-size: 15px;
  color: #bbb;
  margin-top: 6px;
}
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #444;
  border-radius: 24px;
  transition: .4s;
}
.switch input:checked + .slider {
  background-color: #1db954;
}
.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #222;
  border-radius: 50%;
  transition: .4s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.switch input:checked + .slider:before {
  transform: translateX(20px);
  background-color: #1db954;
}
.cookie-consent-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
}
.cookie-btn {
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  cursor: pointer;
  margin: 0 4px;
  transition: background 0.2s, color 0.2s;
}
.cookie-btn.reject {
  background: #333;
  color: #c4c4c4;
}
.cookie-btn.reject:hover {
  background: #444;
  color: #ff9800;
}
.cookie-btn.save {
  background: #1db954;
  color: #fff;
}
.cookie-btn.save:hover {
  background: #159c3e;
}
.cookie-btn.accept {
  background: #ff9800;
  color: #fff;
}
.cookie-btn.accept:hover {
  background: #e67c00;
}
@media (max-width: 600px) {
  .cookie-consent-content {
    padding: 18px 8px 18px 8px;
    max-width: 98vw;
    width: 98vw;
    max-height: 98vh;
  }
}
