.event-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
}

.event-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.event-title {
    font-size: 32px;
    margin-bottom: 10px;
}

.event-meta {
    color: #555;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.event-map iframe {
    width: 100%;
    height: 350px;
    border: 0;
    border-radius: 8px;
}

.map-button {
    margin-top: 12px;
}

.map-button a {
    display: inline-block;
    padding: 8px 14px;
    background: #000;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

.event-media img {
    width: 100%;
    max-height: 500px;
    border-radius: 8px;
}

.event-description {
    margin-top: 30px;
    line-height: 1.8;
    font-size: 16px;
}

.event-media-tabs {
    margin-top: 50px;
}

.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tab-button {
    padding: 10px 18px;
    border: none;
    background: #eee;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 500;
}

.tab-button.active {
    background: #000;
    color: #fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.slide img {
    width: 100%;
    border-radius: 10px;
}

.caption {
    text-align: center;
    margin-top: 8px;
    font-size: 14px;
    color: #555;
}

.video-wrapper iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
}

.media-block {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .event-card {
        padding: 20px;
    }

    .event-title {
        font-size: 24px;
    }

    .video-wrapper iframe {
        height: 250px;
    }
}

.watch-btn {
    display: inline-block;
    background-color: #1877f2; /* Facebook blue */
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.watch-btn:hover {
    background-color: #145dbf;
    transform: translateY(-2px);
}