body {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.lottery-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    overflow-x: auto;
    padding: 1rem;
}

.lottery-container::-webkit-scrollbar {
    display: none;
}

.lottery-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.lottery-card {
   width: 100%; 
  max-width: 100%; 
   
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.lottery-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.25rem);
}

.card-header-custom {
    position: relative;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
    overflow: hidden;
    display: flex;
}

.header-overlay {
    position: absolute;
    inset: 0;
    background-color: black;
    opacity: 0.05;
    z-index: 1;
}

.header-circle-1 {
    position: absolute;
    top: -4rem;
    right: -4rem;
    width: 8rem;
    height: 8rem;
    background-color: white;
    opacity: 0.1;
    border-radius: 50%;
    z-index: 1;
}

.header-circle-2 {
    position: absolute;
    bottom: -3rem;
    left: -3rem;
    width: 6rem;
    height: 6rem;
    background-color: white;
    opacity: 0.1;
    border-radius: 50%;
    z-index: 1;
}

.header-image {
    flex-shrink: 0;
    width: 6rem;
}

.header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-content {
    position: relative;
    flex: 1;
    padding: 1.5rem;
    z-index: 2;
}

.season-badge {
    display: inline-block;
    background-color: rgba(62, 122, 215, 0.2);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 0.5rem;
}

.season-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: #f1f5f9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-title-custom {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f1f5f9;
    line-height: 1.25;
   /* 👇 ye 3 line fix hai */
       
    min-height: 4em;          /* 👈 sab cards equal height */
    display: -webkit-box;
    -webkit-line-clamp: 2;      /* max 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.date-section {
    background: linear-gradient(90deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.date-icon {
    color: #2563eb;
    font-size: 1rem;
}

.countdown-section {
    padding: 1.5rem;
}

.countdown-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.countdown-item {
    text-align: center;
}

.countdown-box {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 0.75rem;
    padding: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
    transition: transform 0.2s ease;
    height: 80px;          /* 🔒 fixed box height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.countdown-box:hover {
    transform: scale(1.05);
}

.countdown-number {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    font-weight: 700;
    color: white;
    line-height: 1;
    text-align: center;
}

.countdown-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bottom-accent {
    height: 0.5rem;
    background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
}

.clock-icon {
    color: #2563eb;
    font-size: 1.25rem;
}
