/*
Theme Name: Shopner Chaka Pro
Author: Your Name
Description: Advanced custom theme for Shopner Chaka with login checks, Bengali support, countdown, and API.
Version: 2.0
*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali&display=swap');
body {
  font-family: 'Noto Sans Bengali', sans-serif;
  background: #f0f0f0;
  margin: 0;
}
.lottery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}
.lottery-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  padding: 20px;
  flex: 1 1 300px;
  position: relative;
}
.lottery-header h2 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}
.lottery-prizes p, .lottery-countdown, .lottery-progress span {
  font-size: 1rem;
}
.lottery-countdown {
  font-weight: bold;
  color: #d00;
  margin: 10px 0;
}
.lottery-progress {
  background: #eee;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  height: 24px;
  margin: 10px 0;
}
.lottery-progress .fill {
  background: #28a745;
  height: 100%;
  width: 0%;
  transition: width 1s ease-in-out;
}
.btn-buy {
  display: inline-block;
  background: #0073aa;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}
@media (max-width: 600px) {
  .lottery-grid {
    flex-direction: column;
  }
}
