.bg-image {
    position: absolute;
    top: 0;
    left: calc(50vw + 80px);
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-image: url('/images/StarSaviorBanner.webp');
    background-size: cover;
    background-position: center top;
    opacity: 0.08;
    filter: saturate(0);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    mix-blend-mode: luminosity;
}

/* Intro Discord Button Style */
.intro-discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #7a5af8a1;
    color: white;
    padding: 12px 28px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(122, 90, 248, 0.3);
}

.intro-discord-btn:hover {
    background: linear-gradient(135deg, #4752c4 0%, #5b6eae 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(88, 101, 242, 0.5);
    color: white;
}

.intro-discord-btn i {
    font-size: 1.3rem;
}

/* Center Intro H1 and add spacing */
.Intro {
    text-align: center;
    margin-bottom: 60px;
}

.Intro h1 {
    text-shadow: 1px 2px 1px rgb(0, 0, 0);
}

@media (max-width: 1080px) {
    .bg-image {
        left: 50%;
    }

    .home-recommendation {
        margin-top: 95px !important;
    }
}

@media (max-width: 768px) {
    .event-layout-wrapper {
        gap: 0 !important;
    }

    .Intro {
        text-align: center !important;
        padding: 0 10px !important;
    }

    .Intro h1 {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .content-container {
        padding-top: 90px !important;
    }

    .Intro h1 {
        font-size: 1.3rem !important;
    }
}

/* Responsive Banner Image */
.slide-image {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
}

.slide {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    justify-content: center !important;
}

.slider-container {
    width: 100% !important;
    height: 140px !important;
    overflow: hidden !important;
    border: none !important;
    box-shadow: none !important;
}

.slider-container-wrapper {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

@media (max-width: 768px) {
    .slider-container {
        height: 100px !important;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 80px !important;
    }
}

/* Coming Soon Guide Cards */
.guide-card.coming-soon {
    position: relative;
}

.guide-card h3 {
    color: rgb(230, 230, 230) !important;
}

.guide-card.coming-soon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

/* Event Info */
.event-info-bsr {
    margin-top: 20px;
    text-align: center;
}

.event-info-bsr h3 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 1.6rem;
}

.event-timers-bsr {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.event-timer-bsr {
    padding: 10px 14px;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.35);
    border: none;
    box-shadow: none;
    min-width: 180px;
    transform: scale(0.72);
}

.event-region-bsr {
    font-weight: 700;
    color: #ef5350;
    margin-bottom: 4px;
}

.event-datetime-bsr {
    color: #e0e0e0;
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.event-countdown-bsr {
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #7a5af8a1;
    font-size: 0.95rem;
}

/* Pros/Cons coloring for Introduction page */
.pros-heading,
.pros-list li {
    color: #4caf50;
}

.cons-heading,
.cons-list li {
    color: #ef5350;
}

@media (max-width: 768px) {
    .event-timers-bsr {
        flex-direction: row !important;
        justify-content: center;
        gap: 10px;
        flex-wrap: nowrap !important;
    }

    .event-timer-bsr {
        min-width: 0 !important;
        flex: 1;
        transform: scale(0.95);
        margin: 0 !important;
        padding: 8px 5px !important;
    }

    .event-datetime-bsr {
        font-size: 0.8rem;
    }
}
