/* Professional Events CSS - Using site's gold/beige color scheme */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

/* Event Status Section styles */
.event-status-section {
  margin-bottom: 4rem;
}

.event-status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.event-status-card {
  background: linear-gradient(135deg, #2a2520 0%, #1a1a1a 100%);
  border: 2px solid rgba(210, 155, 97, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.event-status-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d29b61 0%, #e4d5b8 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.event-status-card:hover::before {
  transform: scaleX(1);
}

.event-status-card:hover {
  transform: translateY(-8px);
  border-color: rgba(210, 155, 97, 0.6);
  box-shadow: 0 25px 50px rgba(210, 155, 97, 0.25);
}

.event-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(210, 155, 97, 0.15);
  border: 1px solid rgba(210, 155, 97, 0.4);
  border-radius: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #d29b61;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.event-status-badge.upcoming {
  background: rgba(228, 213, 184, 0.1);
  border-color: rgba(228, 213, 184, 0.3);
  color: #e4d5b8;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #d29b61;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.event-status-title {
  font-family: "Prata", serif;
  font-size: 1.5rem;
  font-weight: normal;
  color: #e4d5b8;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.event-status-content {
  margin-top: 1rem;
}

.event-name {
  font-family: "Prata", serif;
  font-size: 1.8rem;
  font-weight: normal;
  color: #d29b61;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.event-times {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.event-time {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(210, 155, 97, 0.1);
  border: 1px solid rgba(210, 155, 97, 0.3);
  border-radius: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e4d5b8;
}

/* Added styles for event active time indicator */
.event-active-time {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(210, 155, 97, 0.1);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(210, 155, 97, 0.2);
}

.active-indicator {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #d29b61;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.time-remaining {
  font-family: "Roboto", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(228, 213, 184, 0.7);
}

/* Added styles for countdown timer */
.event-countdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: rgba(210, 155, 97, 0.1);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(210, 155, 97, 0.2);
}

.countdown-label {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e4d5b8;
}

.countdown-time {
  font-family: "Roboto Mono", monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: #d29b61;
  letter-spacing: 2px;
}

.event-description {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(228, 213, 184, 0.85);
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  border-left: 3px solid #d29b61;
}

.event-status-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  color: rgba(228, 213, 184, 0.4);
  text-align: center;
}

.event-status-empty svg {
  margin-bottom: 1rem;
  opacity: 0.3;
}

.event-status-empty p {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-style: italic;
}

.current-event {
  border-color: rgba(210, 155, 97, 0.5);
}

.current-event::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(210, 155, 97, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.next-event {
  border-color: rgba(228, 213, 184, 0.3);
}

/* Main content styles */
.content {
  margin-bottom: 3rem;
}

.mytitle {
  font-family: "Prata", serif;
  font-size: 3rem;
  font-weight: normal;
  text-align: center;
  background: linear-gradient(135deg, #d29b61 0%, #e4d5b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3rem;
  padding: 1rem 0;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.mymintitle {
  font-family: "Prata", serif;
  font-size: 1.5rem;
  font-weight: normal;
  color: #d29b61;
  text-align: center;
  margin: 2.5rem 0 1.5rem;
  padding: 1rem;
  background: rgba(210, 155, 97, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(210, 155, 97, 0.3);
  letter-spacing: 2px;
}

.box {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.card {
  background: linear-gradient(135deg, #2a2520 0%, #1a1a1a 100%);
  border: 1px solid rgba(210, 155, 97, 0.2);
  border-radius: 16px;
  padding: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d29b61 0%, #e4d5b8 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(210, 155, 97, 0.5);
  box-shadow: 0 20px 40px rgba(210, 155, 97, 0.2);
}

/* Added styles for active event card */
.card.active-event {
  border-color: rgba(210, 155, 97, 0.6);
  background: linear-gradient(135deg, rgba(210, 155, 97, 0.15) 0%, #1a1a1a 100%);
  animation: activeGlow 3s ease-in-out infinite;
}

@keyframes activeGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(210, 155, 97, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(210, 155, 97, 0.5);
  }
}

.card-front h1 {
  font-family: "Roboto", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(228, 213, 184, 0.8);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.card-front h1:first-child {
  font-family: "Prata", serif;
  font-size: 1.4rem;
  font-weight: normal;
  color: #d29b61;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.card-front h2 {
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(228, 213, 184, 0.7);
  margin-bottom: 0.4rem;
}

/* Added styles for live and upcoming badges on cards */
.event-live-badge {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: rgba(210, 155, 97, 0.2);
  border: 1px solid #d29b61;
  border-radius: 6px;
  font-family: "Roboto", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #d29b61;
  letter-spacing: 1px;
  margin-top: 0.75rem;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.event-upcoming-badge {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: rgba(228, 213, 184, 0.1);
  border: 1px solid rgba(228, 213, 184, 0.3);
  border-radius: 6px;
  font-family: "Roboto", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(228, 213, 184, 0.7);
  margin-top: 0.75rem;
}

/* Drawer styles */
.event-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.event-drawer.active {
  pointer-events: all;
  opacity: 1;
}

.drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.event-drawer.active .drawer-overlay {
  opacity: 1;
}

.drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 600px;
  background: linear-gradient(135deg, #2a2520 0%, #1a1a1a 100%);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.event-drawer.active .drawer-content {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  background: rgba(210, 155, 97, 0.1);
  border-bottom: 2px solid rgba(210, 155, 97, 0.3);
  flex-shrink: 0;
}

.drawer-title {
  font-family: "Prata", serif;
  font-size: 1.8rem;
  font-weight: normal;
  color: #d29b61;
  letter-spacing: 1px;
  margin: 0;
}

.drawer-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(210, 155, 97, 0.1);
  border: 1px solid rgba(210, 155, 97, 0.3);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.drawer-close:hover {
  background: rgba(210, 155, 97, 0.2);
  border-color: rgba(210, 155, 97, 0.5);
  transform: rotate(90deg);
}

.drawer-close svg {
  color: #d29b61;
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
}

/* Added styles for event schedule section in drawer */
.event-schedule {
  background: rgba(210, 155, 97, 0.05);
  border: 1px solid rgba(210, 155, 97, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.event-schedule h3 {
  font-family: "Prata", serif;
  font-size: 1.2rem;
  font-weight: normal;
  color: #e4d5b8;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.schedule-times {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.schedule-time {
  display: inline-block;
  padding: 0.6rem 1rem;
  background: rgba(210, 155, 97, 0.15);
  border: 1px solid rgba(210, 155, 97, 0.3);
  border-radius: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #d29b61;
}

.drawer-description {
  font-family: "Roboto", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #e4d5b8;
  padding: 1.5rem;
  background: rgba(210, 155, 97, 0.05);
  border-radius: 12px;
  border-left: 4px solid #d29b61;
  margin-bottom: 2rem;
}

.drawer-prizes {
  background: rgba(210, 155, 97, 0.05);
  border: 1px solid rgba(210, 155, 97, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.prizes-title {
  font-family: "Prata", serif;
  font-size: 1.3rem;
  font-weight: normal;
  color: #e4d5b8;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(210, 155, 97, 0.3);
  letter-spacing: 1px;
}

.prizes-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.prize-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.prize-item:hover {
  background: rgba(210, 155, 97, 0.1);
  border-color: rgba(210, 155, 97, 0.3);
  transform: translateX(8px);
}

.prize-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(210, 155, 97, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(210, 155, 97, 0.3);
  flex-shrink: 0;
}

.prize-icon img {
  max-width: 48px;
  max-height: 48px;
  object-fit: contain;
}

.prize-info {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.prize-name {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #e4d5b8;
}

.prize-amount {
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #d29b61;
  min-width: 80px;
  text-align: right;
}

/* Scrollbar styling */
.drawer-body::-webkit-scrollbar {
  width: 8px;
}

.drawer-body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

.drawer-body::-webkit-scrollbar-thumb {
  background: rgba(210, 155, 97, 0.5);
  border-radius: 4px;
}

.drawer-body::-webkit-scrollbar-thumb:hover {
  background: rgba(210, 155, 97, 0.7);
}

/* Responsive design */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }

  .mytitle {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .mymintitle {
    font-size: 1.2rem;
  }

  .event-status-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .event-status-card {
    padding: 2rem;
  }

  .event-status-title {
    font-size: 1.3rem;
  }

  .event-name {
    font-size: 1.5rem;
  }

  .event-time {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }

  .event-description {
    font-size: 0.95rem;
  }

  .event-active-time {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .event-countdown {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .countdown-time {
    font-size: 1.3rem;
  }

  .box {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .card {
    padding: 1.5rem;
  }

  .card-front h1:first-child {
    font-size: 1.2rem;
  }

  .card-front h1 {
    font-size: 0.95rem;
  }

  .drawer-content {
    max-width: 100%;
  }

  .drawer-header {
    padding: 1.5rem;
  }

  .drawer-title {
    font-size: 1.5rem;
  }

  .drawer-body {
    padding: 1.5rem;
  }

  .drawer-description {
    font-size: 0.95rem;
    padding: 1rem;
  }

  .event-schedule h3 {
    font-size: 1.1rem;
  }

  .schedule-time {
    font-size: 0.85rem;
    padding: 0.5rem 0.8rem;
  }

  .prize-icon {
    width: 50px;
    height: 50px;
  }

  .prize-icon img {
    max-width: 40px;
    max-height: 40px;
  }

  .prize-name {
    font-size: 0.9rem;
  }

  .prize-amount {
    font-size: 1rem;
  }
  
}
.event-duration-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 4px 8px;
    font-size: 0.75rem;
    color: #e2e8f0;
    margin: 8px 0;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.event-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: #cbd5e0;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 10px;
    border-radius: 8px;
    border-left: 3px solid #4299e1;
}

.schedule-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.schedule-duration {
    background: rgba(59, 130, 246, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    border-left: 3px solid #3b82f6;
    font-size: 0.9rem;
}

/* Update existing styles for better layout */
.event-times {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.event-time {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
}

.card-front h2 {
    margin: 4px 0;
}