














/* Reset & Video Background */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

#bg-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4);
}

/* Ticket Container */
.ticket-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
}

/* Ticket Base Style */
.ticket {
  width: 320px;
  border-radius: 20px;
  padding: 20px;
  color: white;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
  position: relative;
  backdrop-filter: blur(4px);
  background-blend-mode: overlay;
}

.ticket::before,
.ticket::after {
  content: '';
  position: absolute;
  width: 35px;
  height: 35px;
  background: #ffffffcc;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.ticket::before {
  left: -18px;
}

.ticket::after {
  right: -18px;
}

.ticket h1 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 10px;
}

.ticket .draw-time {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 15px;
}

.ticket-number {
  font-size: 26px;
  letter-spacing: 6px;
  text-align: center;
  background: rgba(255,255,255,0.1);
  padding: 10px;
  border-radius: 10px;
  margin: 15px 0;
}

.prize {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #ffe600;
}

/* Countdown Timer */
.countdown {
  text-align: center;
  font-size: 18px;
  margin-top: 15px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

/* Unique Ticket Themes */
.ticket-12pm {
  background: linear-gradient(135deg, #ff5f6d, #ffc371);
}

.ticket-4pm {
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
}

.ticket-7pm {
  background: linear-gradient(135deg, #8e2de2, #4a00e0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .ticket {
    width: 90%;
  }
}




/* Reset & Video Background */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

#bg-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4);
}

/* Ticket Container */
.ticket-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
}

/* Ticket Base Style */
.ticket {
  width: 320px;
  border-radius: 20px;
  padding: 20px;
  color: white;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
  position: relative;
  backdrop-filter: blur(4px);
  background-blend-mode: overlay;
}

.ticket::before,
.ticket::after {
  content: '';
  position: absolute;
  width: 35px;
  height: 35px;
  background: #ffffffcc;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.ticket::before {
  left: -18px;
}

.ticket::after {
  right: -18px;
}

.ticket h1 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 10px;
}

.ticket .draw-time {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 15px;
}

.ticket-number {
  font-size: 26px;
  letter-spacing: 6px;
  text-align: center;
  background: rgba(255,255,255,0.1);
  padding: 10px;
  border-radius: 10px;
  margin: 15px 0;
}

.prize {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #ffe600;
}

.barcode {
  text-align: center;
  margin-top: 15px;
}

.barcode img {
  width: 150px;
  height: auto;
}

/* Unique Ticket Themes */
.ticket-12pm {
  background: linear-gradient(135deg, #ff5f6d, #ffc371);
}

.ticket-4pm {
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
}

.ticket-7pm {
  background: linear-gradient(135deg, #8e2de2, #4a00e0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .ticket {
    width: 90%;
  }
}
/* Result Table Section */
.result-table-section {
  width: 100%;
  padding: 30px 20px;
  color: white;
  
}

.result-table-section table thead {
    background-color: white;
    color: black;
  }

.result-table-section table thead th {
  background-color: lightblue;
  color: black;
  padding: 10px;
  border-bottom: 2px solid #ddd;
}
.result-table-section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: white;
  font-size: 24px;
}

.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: collapse;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(2px);
  border-radius: 10px;
  overflow: hidden;
}

table thead {
  background-color: teal;
  color: white;
}

table th, table td {
  padding: 12px 15px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

table tbody tr:hover {
  background-color: rgba(255,255,255,0.08);
}

/* Responsive Table */
@media (max-width: 768px) {
  table th, table td {
    padding: 10px 8px;
  }
}
