* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: aliceblue;
    font-family: 'Montserrat', sans-serif;
}

html,
body {
    background-color: #000;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    height: 100%;
    color: #fff;
}

.main-container {
    text-align: center;
    padding-top: 40px;
}

.page-title {
    color: #ffffff;
    font-size: 36px;
}

.content-wrapper {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 20px;
}

.section-title {
    font-size: 34px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: bold;
}

.card-container {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    gap: 40px;
}

.event-card {
    background: linear-gradient(135deg, #1d1d1d, #000000);
    border: 2px solid white;
    border-radius: 12px;
    width: 280px;
    height: 320px;
    text-align: center;
    box-shadow: 0 8px 15px #D1B261;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.event-card:hover {
    transform: scale(1.05);
}

.event-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
}

.card-info {
    padding: 10px;
}

.card-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px #D1B261;
}

.card-summary {
    color: #fff;
    font-size: 1rem;
    margin-top: 10px;
    text-shadow: 2px 2px 8px #D1B261;
}

/* Popup Modal */
.popup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #000000;
    border: 2px solid white;
    padding: 30px;
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    text-align: center;
    color: #fff;
}

.popup-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.close-btn {
    color: #ffffff;
    font-size: 30px;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}

.close-btn:hover {
    color: #D1B261;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-container {
        justify-content: center;
    }

    .event-card {
        width: 90%;
    }
}


.btn-watch {
    display: inline-block;
    z-index: 0;
    position: fixed;
    bottom: 20px;
    left: 20px;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #ffffff;
    color: #000;
    border: none;
    font-size: 1rem;
    text-shadow: 2px 2px 30px #D1B261;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-watch:hover {
    cursor: pointer;
}

#mbcbtn {
    z-index: 0;
    position: fixed;
    bottom: 20px;
    left: 20px;
}

#mbcbtn {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    color: #ffffff;
    border: none;
    text-shadow: 2px 2px 30px #D1B261;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

#mbcbtn:hover {
    cursor: pointer;
}