.current-event-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.5s ease;
}

.current-event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%), 
        linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 100%),
        linear-gradient(270deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%),
        linear-gradient(360deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.current-event-content {
    position: relative;
    z-index: 2;
    color: white;
} 

.current-event-description,
.current-event-live-streams {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    width: 37rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.current-event-description {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.event-time {
    opacity: 0.7;
    font-size: 0.8rem;
    margin-left: 1rem;
    white-space: nowrap;
}

.current-event-live-streams-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
}

.current-event-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.current-event-btn,
.current-event-regulation-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    height: 48px; /* Fixed height */
    box-sizing: border-box;
}

.current-event-btn:hover,
.current-event-regulation-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.current-event-live-streams-title {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.current-event-live-stream-link {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.current-event-live-stream-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.current-event-live-stream-link svg {
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
    stroke: white;
    opacity: 0.8;
}

.pulse {
  width: 12.5px;
  height: 12.5px;
  border-radius: 50%;
  background: #ff4444;
  box-shadow: 0 0 0 rgba(204,169,44, 0.4);
  animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 38, 38, 0.6);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(135, 200, 38, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(135, 200, 38, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 38, 38, 0.6);
    box-shadow: 0 0 0 0 rgba(255, 38, 38, 0.6);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(135, 200, 38, 0);
      box-shadow: 0 0 0 10px rgba(135, 200, 38, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(135, 200, 38, 0);
      box-shadow: 0 0 0 0 rgba(135, 200, 38, 0);
  }
}

@media (max-width: 480px) {
    .current-event-description,
    .current-event-live-streams {
        width: 100%;
        max-width: 100%;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        padding: 0.75rem 1rem;
        margin-bottom: 1rem;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    .pulse {
        display: none;
    }

    .current-event-description {
        align-items: center;
        justify-content: center;
    }

    .event-time {
        margin-left: 0;
        font-size: 0.75rem;
        opacity: 0.7;
        align-self: center;
        color: rgba(255, 255, 255, 0.8);
    }

    .current-event-actions {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }

    .current-event-btn,
    .current-event-regulation-btn {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        height: auto;
        min-height: 48px;
        border-radius: 12px;
    }

    .current-event-live-streams-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .current-event-live-stream-link {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        border-radius: 12px;
        gap: 0.5rem;
    }

    .current-event-live-stream-link svg {
        width: 16px;
        height: 16px;
        margin-right: 0.5rem;
    }
}

@media (max-width: 360px) {
    .current-event-description,
    .current-event-live-streams {
        padding: 0.5rem 0.75rem;
        margin-bottom: 0.75rem;
    }

    .current-event-btn,
    .current-event-regulation-btn {
        padding: 0.625rem 0.875rem;
        font-size: 0.8rem;
        min-height: 44px;
    }

    .current-event-live-stream-link {
        padding: 0.625rem 0.875rem;
        font-size: 0.8rem;
    }

    .event-time {
        font-size: 0.7rem;
    }
}
