/* Slotpicker CSS - 3D Casino Picker mit Rotation */

:root {
  --primary-color: #6366f1;
  --secondary-color: #8b5cf6;
  --accent-color: #ec4899;
  --dark-bg: #0a0e1a;
  --card-bg: #1a1f35;
  --card-bg-light: #232942;
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --border-color: rgba(99, 102, 241, 0.2);
  --glow-color: rgba(99, 102, 241, 0.4);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 50%, #0a0e1a 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(99, 102, 241, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(139, 92, 246, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
}

.loading-logo img {
  width: 120px;
  height: auto;
  margin-bottom: 2rem;
  animation: pulse 2s infinite;
}

.loading-spinner .spinner {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  border: 4px solid rgba(99, 102, 241, 0.2);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

/* Header */
.slotpicker-header {
  background: rgba(26, 31, 53, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  max-height: 80px;
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
}

.back-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.back-btn:hover {
  background: var(--primary-color);
  transform: translateX(-5px);
}

.back-btn svg {
  width: 18px;
  height: 18px;
}

.header-logo img {
  width: 45px;
  height: auto;
}

.header-title h1 {
  font-size: 1.35rem;
  margin-bottom: 0.15rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.header-title p {
  color: var(--text-secondary);
  font-size: 0.75rem;
  line-height: 1.2;
}

/* Main Container */
.slotpicker-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem 2rem;
  position: relative;
  z-index: 1;
  padding-top: 1.5rem;
  min-height: calc(100vh - 80px);
}

.slotpicker-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Instructions Panel - Compact 2-row */
.instructions-panel {
  background: rgba(26, 31, 53, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  margin: 0 auto;
}

.instruction-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.step-number {
  width: 32px;
  height: 32px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-text {
  color: var(--text-primary);
  line-height: 1.4;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Filter Toggle Button */
.filter-toggle-section {
  display: flex;
  justify-content: center;
  margin: 0.5rem 0;
}

.filter-toggle-btn {
  padding: 1rem 2rem;
  background: rgba(26, 31, 53, 0.8);
  backdrop-filter: blur(10px);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.filter-toggle-btn:hover {
  background: rgba(99, 102, 241, 0.2);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.filter-icon {
  font-size: 1.25rem;
}

.filter-arrow {
  font-size: 1.25rem;
  transition: transform 0.3s;
}

.filter-toggle-btn:hover .filter-arrow {
  transform: translateX(5px);
}

/* Filter Panel - Slide-In from Right */
.filter-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.filter-panel.active {
  opacity: 1;
  pointer-events: all;
}

.filter-panel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1;
  cursor: pointer;
}

.filter-panel-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  max-width: 500px;
  height: 100%;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 100%);
  box-shadow: -4px 0 40px rgba(0, 0, 0, 0.5);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 2;
}

/* Custom Scrollbar for Filter Panel */
.filter-panel-content::-webkit-scrollbar {
  width: 8px;
}

.filter-panel-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

.filter-panel-content::-webkit-scrollbar-thumb {
  background: rgba(99, 102, 241, 0.5);
  border-radius: 4px;
}

.filter-panel-content::-webkit-scrollbar-thumb:hover {
  background: rgba(99, 102, 241, 0.7);
}

.filter-panel.active .filter-panel-content {
  transform: translateX(0);
}

.filter-panel-header {
  position: sticky;
  top: 0;
  background: rgba(26, 31, 53, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.filter-panel-header h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
}

.filter-panel-close {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
  z-index: 101;
  position: relative;
}

.filter-panel-close svg {
  width: 20px;
  height: 20px;
}

.filter-panel-close:hover {
  background: rgba(255, 0, 0, 0.2);
  border-color: #ef4444;
  transform: rotate(90deg);
}

/* Filter Section */
.filter-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem;
}

.filter-group {
  background: rgba(26, 31, 53, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1rem;
}

.filter-group h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-weight: 700;
}

.filter-buttons-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.filter-toggle-all {
  padding: 0.65rem 1rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  color: var(--text-primary);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.85rem;
}

.filter-toggle-all:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.provider-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.provider-btn {
  padding: 0.6rem 0.5rem;
  background: rgba(51, 65, 85, 0.5);
  border: 2px solid transparent;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.provider-btn:hover {
  border-color: var(--primary-color);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.provider-btn.active {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

/* Feature Checkboxes */
.feature-checkboxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 0.85rem;
  background: rgba(51, 65, 85, 0.3);
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.checkbox-label:hover {
  border-color: var(--primary-color);
  background: rgba(99, 102, 241, 0.1);
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-radius: 5px;
  position: relative;
  transition: all 0.3s;
  flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
}

.checkbox-text {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.85rem;
}

/* Properties Section - Sliders */
.properties-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.property-slider {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.property-slider label {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.property-slider label span {
  color: var(--primary-color);
  margin-left: 0.5rem;
  font-size: 0.85rem;
}

.dual-slider,
.single-slider {
  position: relative;
  height: 40px;
}

.slider {
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: rgba(51, 65, 85, 0.5);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  top: 15px;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.5);
  transition: all 0.3s;
}

.slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.7);
}

.slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.5);
  transition: all 0.3s;
}

.slider::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.7);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  color: var(--text-secondary);
  font-size: 0.75rem;
}

/* 3D Carousel Section */
.carousel-section {
  margin: 1.5rem 0;
  perspective: 2000px;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.carousel-3d {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-3d.spinning {
  animation: spin3d 2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes spin3d {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(1440deg);
  }
}

.casino-card-3d {
  position: absolute;
  width: 280px;
  height: 400px;
  left: 50%;
  top: 50%;
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.casino-card-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 31, 53, 0.95) 0%,
    rgba(99, 102, 241, 0.15) 100%
  );
  backdrop-filter: blur(10px);
  border: 2px solid var(--border-color);
  border-radius: 24px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.casino-card-3d.active .casino-card-inner {
  border-color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.5),
    0 0 60px rgba(99, 102, 241, 0.4), inset 0 0 40px rgba(99, 102, 241, 0.1);
  transform: scale(1.1);
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.2) 0%,
    rgba(139, 92, 246, 0.2) 100%
  );
}

.casino-card-logo {
  width: 160px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1rem;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.casino-card-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.casino-card-name {
  font-size: 1.35rem;
  font-weight: 800;
  text-align: center;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.casino-card-stats {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.casino-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.casino-stat-label {
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
}

.casino-stat-value {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.9rem;
}

/* Carousel Controls */
.carousel-controls {
  margin-top: 7rem;
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
}

.pick-btn {
  padding: 1.25rem 2.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
  border-radius: 20px;
  color: white;
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.5);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.pick-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.pick-btn:hover:not(:disabled)::before {
  left: 100%;
}

.pick-btn:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 50px rgba(99, 102, 241, 0.7);
}

.pick-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.pick-btn .btn-icon {
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Result Section */
.result-section {
  margin-top: 2rem;
  margin-bottom: 3rem;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.result-card {
  background: rgba(26, 31, 53, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid var(--primary-color);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4),
    0 0 40px rgba(99, 102, 241, 0.2);
}

.result-header h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.result-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.result-casino-logo {
  width: 220px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.result-casino-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.result-casino-name {
  font-size: 1.85rem;
  font-weight: 800;
  text-align: center;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.result-casino-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  width: 100%;
  max-width: 600px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.stat-value {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 700;
}

.result-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.result-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s;
}

.result-btn.primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.result-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.6);
}

.result-btn.secondary {
  background: rgba(51, 65, 85, 0.5);
  border: 2px solid var(--border-color);
  color: var(--text-primary);
}

.result-btn.secondary:hover {
  border-color: var(--primary-color);
  background: rgba(99, 102, 241, 0.1);
}

/* Footer - Removed */

/* Empty State */
.empty-state {
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.empty-state-card {
  max-width: 600px;
  background: rgba(26, 31, 53, 0.8);
  backdrop-filter: blur(10px);
  border: 2px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.empty-state-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.empty-state-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.empty-state-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.empty-state-tips {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  max-width: 400px;
  margin: 0 auto;
}

.tip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 12px;
  width: 100%;
  transition: all 0.3s;
}

.tip-item:hover {
  background: rgba(99, 102, 241, 0.2);
  transform: translateX(5px);
}

.tip-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.tip-text {
  color: var(--text-primary);
  font-size: 0.9rem;
  text-align: left;
}

/* Initial Placeholder Styles */
.initial-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}

.placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.placeholder-icon-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-icon {
  font-size: 5rem;
  position: relative;
  z-index: 2;
}

.placeholder-icon.pulsing {
  animation: pulse 2s ease-in-out infinite;
}

.placeholder-slots-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-slot {
  position: absolute;
  font-size: 2.5rem;
  animation: orbit 4s linear infinite;
}

.placeholder-slot.delay-1 {
  animation-delay: -1.33s;
}

.placeholder-slot.delay-2 {
  animation-delay: -2.66s;
}

@keyframes orbit {
  0% {
    transform: rotate(0deg) translateX(100px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(100px) rotate(-360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.placeholder-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  text-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.placeholder-arrow {
  animation: bounce 2s ease-in-out infinite;
  opacity: 0.8;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

.placeholder-hint {
  font-size: 1.5rem;
  color: var(--text-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.5),
      0 0 20px rgba(99, 102, 241, 0.3), 0 0 30px rgba(99, 102, 241, 0.2);
  }
  50% {
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.8),
      0 0 30px rgba(99, 102, 241, 0.5), 0 0 40px rgba(99, 102, 241, 0.3);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .slotpicker-main {
    padding: 1rem;
    padding-top: 1rem;
  }

  .slotpicker-header {
    padding: 0.6rem 1rem;
    max-height: 70px;
  }

  .header-content {
    gap: 0.75rem;
  }

  .header-logo img {
    width: 35px;
  }

  .header-title h1 {
    font-size: 1.15rem;
  }

  .header-title p {
    font-size: 0.7rem;
  }

  .back-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }

  .back-btn svg {
    width: 16px;
    height: 16px;
  }

  .instructions-panel {
    grid-template-columns: 1fr;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }

  .step-number {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }

  .step-text {
    font-size: 0.8rem;
  }

  .filter-toggle-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }

  .filter-panel-content {
    width: 100%;
    max-width: 100%;
  }

  .filter-panel-header {
    padding: 0.85rem 1rem;
  }

  .filter-panel-header h2 {
    font-size: 1.1rem;
  }

  .filter-panel-close {
    width: 32px;
    height: 32px;
  }

  .filter-section {
    padding: 0.75rem;
    gap: 0.75rem;
  }

  .filter-group {
    padding: 0.85rem;
  }

  .filter-group h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .provider-buttons {
    grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
    gap: 0.5rem;
    margin-top: 0.6rem;
  }

  .provider-btn {
    font-size: 0.75rem;
    padding: 0.55rem 0.4rem;
  }

  .filter-toggle-all {
    font-size: 0.8rem;
    padding: 0.6rem 0.85rem;
  }

  .feature-checkboxes {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .checkbox-label {
    padding: 0.65rem 0.75rem;
  }

  .checkbox-text {
    font-size: 0.8rem;
  }

  .property-slider label {
    font-size: 0.85rem;
  }

  .property-slider label span {
    font-size: 0.8rem;
  }

  .properties-section {
    gap: 1rem;
  }

  .slider-labels {
    font-size: 0.7rem;
    margin-top: 1.75rem;
  }

  .carousel-wrapper {
    min-height: 350px;
  }

  .casino-card-3d {
    width: 240px;
    height: 340px;
  }

  .carousel-controls {
    margin-bottom: 2rem;
  }

  .pick-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .result-card {
    padding: 2rem 1.5rem;
  }

  .result-section {
    margin-bottom: 2rem;
  }

  .result-casino-stats {
    grid-template-columns: 1fr;
  }

  .result-actions {
    flex-direction: column;
    width: 100%;
  }

  .result-btn {
    width: 100%;
    justify-content: center;
  }

  .empty-state-card {
    padding: 2rem 1.5rem;
  }

  .empty-state-icon {
    font-size: 3rem;
  }

  .empty-state-title {
    font-size: 1.5rem;
  }

  .empty-state-text {
    font-size: 0.9rem;
  }

  /* Initial Placeholder Mobile Styles */
  .placeholder-icon-wrapper {
    width: 150px;
    height: 150px;
  }

  .placeholder-icon {
    font-size: 3.5rem;
  }

  .placeholder-slots-wrapper {
    width: 180px;
    height: 180px;
  }

  .placeholder-slot {
    font-size: 1.8rem;
  }

  @keyframes orbit {
    0% {
      transform: rotate(0deg) translateX(70px) rotate(0deg);
    }
    100% {
      transform: rotate(360deg) translateX(70px) rotate(-360deg);
    }
  }

  .placeholder-title {
    font-size: 1.75rem;
  }

  .placeholder-arrow svg {
    width: 45px;
    height: 45px;
  }

  .placeholder-hint {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }

  .placeholder-content {
    gap: 1.5rem;
  }
}
