/* Puan sistemi stilleri */
.points-container {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  max-width: 150px;
}

.points-container:hover {
  background: rgba(255, 255, 255, 0.25);
}

.points-value {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.points-icon {
  margin-right: 5px;
  font-size: 1.2rem;
  color: gold;
}

.timer-container {
  width: 100%;
  margin-top: 5px;
}

.timer-bar {
  height: 5px;
  background: linear-gradient(to right, #27ae60, #f1c40f);
  border-radius: 3px;
  width: 100%;
  transition: width 1s linear;
}

.claim-button {
  margin-top: 10px;
  background: linear-gradient(45deg, #f1c40f, #e67e22);
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.claim-button:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.claim-button:disabled {
  background: #95a5a6;
  cursor: not-allowed;
  transform: none;
  opacity: 0.7;
}

/* Mobil cihazlar için uyarlamalar */
@media (max-width: 768px) {
  .points-container {
    top: 5px;
    right: 5px;
    padding: 8px;
    max-width: 120px;
  }
  
  .points-value {
    font-size: 1rem;
  }
  
  .claim-button {
    font-size: 0.8rem;
    padding: 4px 8px;
  }
} 