/* Page Background - Bleach Style */
body {
    /* background removed to match Haikyu index (inherits from base.css) */
    min-height: 100vh;
    position: relative;
}

/* Ensure content stays above background */
.content-container, header, nav, .navbar, .Intro, section, footer {
    position: relative;
    z-index: 2;
}

.page-background {
    position: absolute; /* Scrolls with page */
    top: 0;
    left: 0;
    width: 100%;
    height: 1000px; /* Fixed height fade area */
    z-index: 1; /* Behind content (z-index 2), above body bg */
    pointer-events: none;
    overflow: hidden;
}

.bg-image {
    position: absolute;
    top: 0;
    left: calc(50vw + 80px); /* Center from content container middle */
    transform: translateX(-50%); /* Center the image on that point */
    width: 100vw; /* Full viewport width */
    height: 100%;
    background-image: url('/Bleach-Soul-Resonance/bleach-soul-resonance-has-released-and-begun-official-v0-01eso4oaxl2g1.webp?tr=w-1920,q-85');
    background-size: cover;
    background-position: center top;
    opacity: 0.08; /* Very subtle transparency */
    filter: saturate(0); /* Keep it grayscale to not clash with bg color */
    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; /* Blends texture without changing color */
}

/* Intro Discord Button Style */
.intro-discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #7a5af8a1; /* Updated color */
    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;
}

/* Desktop Layout - Content with fixed left margin and responsive right margin */
/* Center Intro H1 and add spacing */
.Intro {
    text-align: center;
    margin-bottom: 60px;
}

.Intro h1 {
    text-shadow: 1px 2px 1px rgb(0, 0, 0);
}

/* Mobile responsive fixes for Bleach Soul Resonance index */
@media (max-width: 1080px) {
    .bg-image {
        left: 50%;
    }

    /* Add extra spacing for Get Started on mobile/tablet */
    .home-recommendation {
        margin-top: 95px !important; /* 80px + 15px */
    }
}

/* Mobile Codes Section styles are in /css/components/codes.css */
@media (max-width: 768px) {
    .event-layout-wrapper {
        gap: 0 !important;
    }
}

@media (max-width: 768px) {
    .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; /* Reduced by 50% from 280px */
    overflow: hidden !important;
    /* border removed by overriding inherited styles if any, or simply not adding border */
    border: none !important;
    box-shadow: none !important;
}

/* Hide slider background/shadow if inherited from main.css */
.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;
}

/* Ensure guide card text color matches 7kRebirth */
.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;
}

/* Compact Codes Styles moved to /css/components/codes.css */

/* Event Info (Toshiro Release) */
.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; /* Reduced padding */
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.35);
    border: none; /* Removed border as requested */
    box-shadow: none;
    min-width: 180px; /* Reduced min-width */
    transform: scale(0.72); /* Reduced overall size */
}

.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;
}

@media (max-width: 768px) {
    .event-timers-bsr {
        flex-direction: row !important; /* Force row layout */
        justify-content: center;
        gap: 10px; /* Reduced gap for mobile */
        flex-wrap: nowrap !important; /* Prevent wrapping */
    }

    .event-timer-bsr {
        min-width: 0 !important; /* Allow shrinking */
        flex: 1; /* Equal width */
        transform: scale(0.95); /* Slightly larger scale on mobile for readability */
        margin: 0 !important;
        padding: 8px 5px !important; /* Compact padding */
    }

    .event-datetime-bsr {
        font-size: 0.8rem; /* Smaller text */
    }
}

/* Compact Codes responsive styles moved to /css/components/codes.css */



