/* Daily Game Card Styles */
.daily-game-card {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: all 0.3s ease;
  display: none; /* Hidden by default, shown by JS */
}

.daily-game-card:hover {
  transform: translateY(-50%) scale(1.02);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

.daily-game-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.daily-game-icon {
  width: 24px;
  height: 24px;
  color: #ffd700;
  animation: pulse 2s ease-in-out infinite;
}

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

.daily-game-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffd700;
  margin: 0;
}

.daily-game-date {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.daily-game-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.daily-game-card:hover .daily-game-image {
  transform: scale(1.05);
}

.daily-game-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.daily-game-description {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 16px 0;
  line-height: 1.4;
  max-height: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.daily-game-play-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.daily-game-play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.daily-game-play-btn:active {
  transform: translateY(0);
}

/* Countdown Timer */
.daily-game-countdown {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.countdown-label {
  font-weight: 600;
}

.countdown-time {
  font-family: 'Courier New', monospace;
  color: #ffd700;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
  .daily-game-card {
    right: 10px;
    width: 240px;
  }
  
  .daily-game-image {
    height: 140px;
  }
}

@media (max-width: 1200px) {
  .daily-game-card {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin: 20px auto;
    max-width: 320px;
  }
  
  .daily-game-card:hover {
    transform: scale(1.02);
  }
}

@media (max-width: 768px) {
  .daily-game-card {
    width: calc(100% - 40px);
    margin: 20px;
  }
}