/* SocialArenaz Slot Module - Futuristisk Neon Design */
/* 3x3 Demo Slot med sci-fi effekter */

.arena-slot {
  background: rgba(10, 15, 30, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--neon-cyan);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.arena-slot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
  z-index: 1;
}

.arena-slot > * {
  position: relative;
  z-index: 2;
}

.arena-slot__title {
  color: var(--neon-cyan);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 15px rgba(82, 242, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.arena-slot__frame {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.arena-slot__reel {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 6px;
}

.arena-slot__cell {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--electric-blue), var(--neon-purple));
  border: 1px solid var(--neon-cyan);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--frost-white);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.arena-slot__cell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.arena-slot__cell:hover::before {
  opacity: 1;
}

.arena-slot__cell--spin {
  animation: cellSpin 0.1s ease-in-out;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
  border-color: var(--neon-blue);
}

@keyframes cellSpin {
  0% { transform: scale(1) rotateY(0deg); }
  50% { transform: scale(1.1) rotateY(180deg); }
  100% { transform: scale(1) rotateY(360deg); }
}

.arena-slot__spin {
  background: linear-gradient(45deg, var(--neon-blue), var(--neon-cyan));
  color: var(--deep-navy);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 1rem 0;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.arena-slot__spin:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
}

.arena-slot__spin:active {
  transform: translateY(0);
}

.arena-slot__spin:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.arena-slot__note {
  color: var(--frost-white);
  font-size: 0.9rem;
  margin: 1rem 0;
  opacity: 0.8;
  font-style: italic;
}

.arena-slot__status {
  color: var(--neon-purple);
  font-weight: 600;
  margin-top: 1rem;
  padding: 0.8rem;
  background: rgba(139, 95, 191, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(139, 95, 191, 0.3);
  backdrop-filter: blur(10px);
  text-shadow: 0 0 10px rgba(139, 95, 191, 0.5);
}

/* Demo Header */
.demo-header {
  text-align: center;
  margin-bottom: 2rem;
}

.demo-header h2 {
  color: var(--neon-cyan);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(82, 242, 255, 0.6);
}

.demo-header p {
  color: var(--frost-white);
  opacity: 0.8;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .arena-slot {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }
  
  .arena-slot__title {
    font-size: 1.3rem;
  }
  
  .arena-slot__cell {
    width: 55px;
    height: 55px;
    font-size: 1.8rem;
  }
  
  .arena-slot__frame {
    gap: 8px;
    padding: 1rem;
  }
  
  .arena-slot__reel {
    gap: 6px;
  }
  
  .arena-slot__spin {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .arena-slot {
    padding: 1rem;
    margin: 0;
  }
  
  .arena-slot__title {
    font-size: 1.1rem;
  }
  
  .arena-slot__cell {
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
  }
  
  .arena-slot__frame {
    gap: 6px;
    padding: 0.8rem;
  }
  
  .arena-slot__reel {
    gap: 4px;
  }
  
  .arena-slot__spin {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .arena-slot__note {
    font-size: 0.8rem;
  }
  
  .arena-slot__status {
    font-size: 0.9rem;
    padding: 0.6rem;
  }
}

@media (max-width: 360px) {
  .arena-slot__cell {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .arena-slot__frame {
    gap: 4px;
    padding: 0.6rem;
  }
  
  .arena-slot__reel {
    gap: 3px;
  }
}
