/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

/* Main Section */
.wkPrize-section {
  /*background: linear-gradient(to bottom, #fdf2f8, #ffffff, #fff7ed);
  padding: 4rem 1rem;
  position: relative;
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wkPrize-container {
  max-width: 1152px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* Header Section */
.wkPrize-header {
  text-align: center;
  margin-bottom: 3rem;
}

.wkPrize-title {
  font-size: 2.5rem;
  font-weight: bold;
  background: linear-gradient(to right, #db2777, #9d174d, #db2777);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 0 15px rgba(219, 39, 119, 0.5));
}

.wkPrize-subtitle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #9d174d;
  filter: drop-shadow(0 0 10px rgba(219, 39, 119, 0.3));
}

.wkPrize-meta-line {
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: baseline;
}

.wkPrize-weekcode {
  font-size: 0.875rem;
  color: #9d174d;
}

.wkPrize-updated-at {
  font-size: 0.75rem;
  color: rgba(0,0,0,0.6);
}

.wkPrize-prize-amount {
  color: #db2777;
}

/* Cards Grid */
.wkPrize-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .wkPrize-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card Styles */
.wkPrize-card {
  padding: 1.5rem;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.95), rgba(253, 242, 248, 0.95));
  backdrop-filter: blur(8px);
  border: 2px solid rgba(219, 39, 119, 0.5);
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.wkPrize-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(219, 39, 119, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.wkPrize-card:hover {
  border-color: #db2777;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 40px rgba(219, 39, 119, 0.4);
  transform: translateY(-2px);
}

.wkPrize-card-orange {
  background: linear-gradient(to bottom right, rgba(255, 247, 237, 0.9), rgba(255, 255, 255, 0.9));
  border-color: rgba(249, 115, 22, 0.5);
}

.wkPrize-card-orange:hover {
  border-color: #f97316;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 40px rgba(249, 115, 22, 0.4);
}

.wkPrize-card-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.wkPrize-card-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.wkPrize-card-label {
  font-size: 1.125rem;
  color: rgba(157, 23, 77, 0.8);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.wkPrize-label-orange {
  color: rgba(220, 38, 38, 0.8);
}

.wkPrize-card-value {
  font-size: 2rem;
  font-weight: bold;
}

.wkPrize-value-pink {
  color: #db2777;
  filter: drop-shadow(0 0 10px rgba(219, 39, 119, 0.5));
}

.wkPrize-value-orange {
  color: #f97316;
  filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.5));
}

/* Countdown Grid */
.wkPrize-countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

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

.wkPrize-countdown-box {
  background: linear-gradient(to bottom right, rgba(219, 39, 119, 0.2), rgba(157, 23, 77, 0.2));
  border: 1px solid rgba(219, 39, 119, 0.5);
  border-radius: 0.5rem;
  padding: 0.5rem;
  margin-bottom: 0.25rem;
}

.wkPrize-countdown-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: #db2777;
}

.wkPrize-countdown-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(157, 23, 77, 0.8);
}

/* Table Container */
.wkPrize-table-container {
  padding: 2rem;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.95), rgba(253, 242, 248, 0.95));
  backdrop-filter: blur(8px);
  border: 2px solid rgba(219, 39, 119, 0.5);
  border-radius: 0.75rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.wkPrize-table-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(219, 39, 119, 0.1), transparent);
  animation: shimmer 3s infinite;
}

.wkPrize-table-title {
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(to right, #db2777, #9d174d, #db2777);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 15px rgba(219, 39, 119, 0.5));
  position: relative;
  z-index: 1;
}

.wkPrize-table-wrapper {
  overflow-x: auto;
  position: relative;
  z-index: 1;
}

.wkPrize-table {
  width: 100%;
  border-collapse: collapse;
}

.wkPrize-th {
  padding: 1rem 0.5rem;
  font-weight: bold;
  color: #db2777;
  border-bottom: 2px solid rgba(219, 39, 119, 0.5);
  white-space: nowrap;
  font-size: 1rem;
}

.wkPrize-th-left {
  text-align: left;
}

.wkPrize-th-center {
  text-align: center;
}

.wkPrize-th-right {
  text-align: right;
}

.wkPrize-table tbody tr {
  border-bottom: 1px solid rgba(219, 39, 119, 0.2);
  transition: background-color 0.2s ease;
}

.wkPrize-table tbody tr:hover {
  background-color: rgba(253, 242, 248, 0.5);
}

.wkPrize-table td {
  padding: 1.25rem 0.5rem;
  white-space: nowrap;
  font-size: 1rem;
}

.wkPrize-td-name {
  font-weight: bold;
  color: #9d174d;
  text-align: left;
}

.wkPrize-td-league {
  text-align: center;
}

.wkPrize-league-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.wkPrize-league-regular {
  background-color: rgba(219, 39, 119, 0.2);
  color: #9d174d;
  border: 1px solid rgba(219, 39, 119, 0.5);
}

.wkPrize-league-sponsored {
  background-color: rgba(249, 115, 22, 0.2);
  color: #dc2626;
  border: 1px solid rgba(249, 115, 22, 0.5);
}

.wkPrize-td-recipients {
  text-align: center;
  color: #9d174d;
  font-weight: 600;
}

.wkPrize-td-amount {
  text-align: right;
  font-weight: bold;
  color: #db2777;
  filter: drop-shadow(0 0 8px rgba(219, 39, 119, 0.3));
}

/* CTA Button */
.wkPrize-cta-container {
  text-align: center;
  margin-bottom: 2.5rem;
}

.wkPrize-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.75rem 2.5rem;
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
  background: linear-gradient(to right, #db2777, #f97316, #dc2626);
  border: 2px solid #db2777;
  border-radius: 1rem;
  text-decoration: none;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.wkPrize-cta-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 3s infinite;
}

.wkPrize-cta-button:hover {
  background: linear-gradient(to right, #9d174d, #db2777, #f97316);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 40px rgba(219, 39, 119, 0.6);
  transform: scale(1.05);
}

/* Responsive Design */
@media (min-width: 640px) {
  .wkPrize-section {
    padding: 4rem 1.5rem;
  }

  .wkPrize-title {
    font-size: 3rem;
  }

  .wkPrize-subtitle {
    font-size: 1.875rem;
  }

  .wkPrize-card {
    padding: 1.5rem;
  }

  .wkPrize-card-icon {
    font-size: 2.5rem;
  }

  .wkPrize-card-label {
    font-size: 1.25rem;
  }

  .wkPrize-card-value {
    font-size: 2.25rem;
  }

  .wkPrize-countdown-value {
    font-size: 1.5rem;
  }

  .wkPrize-countdown-label {
    font-size: 0.75rem;
  }

  .wkPrize-countdown-box {
    padding: 0.5rem;
  }

  .wkPrize-countdown-grid {
    gap: 0.5rem;
  }

  .wkPrize-th,
  .wkPrize-table td {
    padding: 1rem 1rem;
    font-size: 1.125rem;
  }

  .wkPrize-league-badge {
    padding: 0.25rem 0.75rem;
  }
}

@media (min-width: 1024px) {
  .wkPrize-section {
    padding: 4rem 2rem;
  }
}
