.hero-section {
    position: relative;
    overflow: hidden;
}
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(122, 200, 154, 0.8) 0%, rgba(40, 171, 149, 0.8) 100%);
    z-index: -1;
}
.quest-detail-image {
    height: 400px;
    object-fit: cover;
    width: 100%;
}

.hero-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
}
/* .hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
} */
.quest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.calendar-day {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}

.calendar-day.has-event::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 6px;
    height: 6px;
    background-color: #28ab95;
    border-radius: 50%;
}

.calendar-day.today {
    background-color: #28ab95;
    color: white;
    font-weight: bold;
}

.calendar-day.other-month {
    color: #ccc;
}
.calendar-day a {
    text-decoration: none;
    color: inherit;
}
.calendar-day.today a {
    color: white;
}


.weekday-header {
    font-weight: 500;
    font-size: 0.875rem;
    color: #6b7280;
    padding-bottom: 8px;
    text-align: center;
}
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
    .font-pacifico {
    font-family: 'Pacifico', cursive;
}