@import '_content/EekGamesWebApps.SharedComponents/EekGamesWebApps.SharedComponents.bundle.scp.css';

/* _content/EekGamesWebApps.HousePartyPage/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-avkrpxwzib] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-avkrpxwzib] {
    flex: 1;
}

.sidebar[b-avkrpxwzib] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-avkrpxwzib] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-avkrpxwzib]  a, .top-row[b-avkrpxwzib]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

        .top-row[b-avkrpxwzib]  a:hover, .top-row[b-avkrpxwzib]  .btn-link:hover {
            text-decoration: underline;
        }

        .top-row[b-avkrpxwzib]  a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

@media (max-width: 640.98px) {
    .top-row[b-avkrpxwzib] {
        justify-content: space-between;
    }

        .top-row[b-avkrpxwzib]  a, .top-row[b-avkrpxwzib]  .btn-link {
            margin-left: 0;
        }
}

@media (min-width: 641px) {
    .page[b-avkrpxwzib] {
        flex-direction: column;
    }

    .sidebar[b-avkrpxwzib] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-avkrpxwzib] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

        .top-row.auth[b-avkrpxwzib]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .top-row[b-avkrpxwzib], article[b-avkrpxwzib] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-avkrpxwzib] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-avkrpxwzib] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/EekGamesWebApps.HousePartyPage/Components/Pages/Buy.razor.rz.scp.css */
.buy-page-section[b-bludz08bm6] {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem 1rem;
}

.buy-page-title[b-bludz08bm6] {
    font-size: 2.2rem;
    color: #FDB2FF;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2.7rem;
    letter-spacing: 1.5px;
}

.buy-store-cards-grid[b-bludz08bm6] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.3rem;
    margin: 0 auto;
    justify-items: center;
}

.store-card[b-bludz08bm6] {
    background: #222;
    border-radius: 15px;
    box-shadow: 0 2px 10px -2px rgba(0,0,0,0.18);
    padding: 1.3rem 1.1rem;
    width: 100%;
    max-width: 280px;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* vertically center everything! */
    transition: box-shadow 0.15s, transform 0.12s;
    color: #fff;
    border: 2px solid #FDB2FF;
}

.store-card-additional[b-bludz08bm6] {
    border: 1.5px solid #444;
    box-shadow: 0 2px 10px -2px rgba(0,0,0,0.08);
}

.store-card:hover[b-bludz08bm6] {
    box-shadow: 0 4px 18px -2px rgba(255,101,239,0.22);
    transform: translateY(-2px) scale(1.025);
}

.store-card-link[b-bludz08bm6] {
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: center; /* vertical centering for link content */
}

.store-card-logo-row[b-bludz08bm6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5em;
    width: 100%;
    margin-bottom: 0.7em;
    justify-content: center;
}

.store-card-logo[b-bludz08bm6] {
    max-width: 150px; /* Increased logo size */
    max-height: 55px; /* Increased logo size */
    width: auto;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 7px;
    box-shadow: none;
    background: none;
    padding: 0;
    object-fit: contain;
}

.store-card-name[b-bludz08bm6] {
    display: none;
}

.store-card-blurb[b-bludz08bm6] {
    font-size: 1.03rem;
    color: #dadcff;
    text-align: center;
    margin-top: 0.5em;
    line-height: 1.35;
    word-break: break-word;
    min-height: 2.2em;
}

/* Responsive tweaks */
@media (max-width: 700px) {
    .buy-page-section[b-bludz08bm6] {
        padding: 1rem 0.15rem;
    }

    .buy-page-title[b-bludz08bm6] {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }

    .store-card[b-bludz08bm6] {
        padding: 1rem 0.5rem;
        min-height: 120px;
    }

    .buy-store-cards-grid[b-bludz08bm6] {
        gap: 1rem;
    }

    .store-card-logo[b-bludz08bm6] {
        max-width: 110px;
        max-height: 38px;
    }
}
/* _content/EekGamesWebApps.HousePartyPage/Components/Pages/Home.razor.rz.scp.css */
/* --- HERO SECTION --- */
.homepage-hero[b-nww7cas8aq] {
    aspect-ratio: 16 / 9;
    background: var(--hero-bg);
    border-radius: 24px;
    margin: 2rem auto 0 auto;
    max-width: 1800px;
    text-align: center;
    box-shadow: 0 2px 16px #0002;
    margin-bottom: 2rem;
    box-sizing: border-box;
    position: relative;
    min-height: 65vh;
    width: 100%;
    max-width: 100vw;
    max-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

/* --- LOGO --- */
.homepage-logo[b-nww7cas8aq] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 500px;
    width: 45vw;
    height: auto;
    z-index: 3;
    pointer-events: none;
}

/* --- HEADLINE --- */
.homepage-title[b-nww7cas8aq] {
    font-weight: 900;
    font-size: 3.5rem;
    margin-bottom: 0.7rem;
    letter-spacing: 2px;
    font-family: Impact, "Arial Black", Arial, sans-serif;
    line-height: 1.1;
    text-align: center;
    color: var(--party-accent);
}

.party-accent[b-nww7cas8aq] {
    background: linear-gradient(90deg, var(--party-accent), var(--party-accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* --- BLURB --- */
.homepage-blurb[b-nww7cas8aq] {
    font-size: 1.5rem;
    color: #dadcff;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0 auto 1.2rem auto;
    line-height: 1.35;
    max-width: 1080px;
    padding-left: 1rem;
    padding-right: 1rem;
    word-break: break-word;
    text-align: center;
    position: relative;
    z-index: 3;
}

/* --- TRAILER --- */
.featured-trailer-container[b-nww7cas8aq] {
    width: 100%;
    max-width: 1080px;
    min-width: 280px;
    margin: 0 auto 0.7rem auto;
    aspect-ratio: 16/9;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

    .featured-trailer-container > *[b-nww7cas8aq] {
        width: 100%;
        height: 100%;
        aspect-ratio: 16/9;
        min-width: 0;
        min-height: 0;
        border-radius: 12px;
        box-shadow: 0 2px 16px #0009;
        display: block;
    }

/* --- REST OF PAGE --- */
.section.home-section[b-nww7cas8aq] {
    margin: 0 auto;
    padding: 0rem 2rem 0rem 2rem;
}

.guests-section[b-nww7cas8aq] {
    background: #1a1a22;
    border-radius: 14px;
    padding: 2rem 1rem;
    margin: 0 auto 2rem auto;
    max-width: 1800px;
    position: relative;
}

.guests-title[b-nww7cas8aq] {
    font-size: 2.2rem;
    font-family: Impact, Arial, sans-serif;
    color: var(--party-accent);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.guests-row[b-nww7cas8aq] {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: end;
    gap: 2rem;
    min-height: 220px;
    position: relative;
}

.main-content-layout[b-nww7cas8aq] {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    padding: 0 1rem 2rem 1rem;
    margin-top: 2.5rem;
}

.left-cards[b-nww7cas8aq] {
    flex: 2 1 0%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.right-cards[b-nww7cas8aq] {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.card.dark-card[b-nww7cas8aq] {
    background: var(--card-bg);
    color: var(--text-light);
    border-radius: 14px;
    box-shadow: var(--card-shadow);
    border: none;
}

.card-header[b-nww7cas8aq] {
    background: #191926;
    color: var(--party-accent);
    font-weight: 700;
    font-size: 1.18rem;
    border-radius: 12px 12px 0 0;
    padding: 1rem 1.25rem 0.75rem 1.25rem;
}

.card-body[b-nww7cas8aq] {
    padding: 1.25rem 1.25rem 1.5rem 1.25rem;
}

.media-card-body[b-nww7cas8aq] {
    padding-bottom: 0rem;
}

@keyframes fadein-b-nww7cas8aq {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* --- Mobile Padding Tweaks --- */
@media (max-width: 1080px) {
    .homepage-hero[b-nww7cas8aq],
    .guests-section[b-nww7cas8aq] {
        max-width: 98vw;
        margin-left: 1vw;
        margin-right: 1vw;
        padding-left: 1vw;
        padding-right: 1vw;
    }

    .main-content-layout[b-nww7cas8aq] {
        flex-direction: column;
    }

    .featured-trailer-container[b-nww7cas8aq] {
        max-width: 100vw;
        min-width: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .homepage-blurb[b-nww7cas8aq] {
        font-size: 1.18rem;
        padding: 0 0.2rem;
        max-width: 98vw;
    }
}

/* ------ EXTREME MOBILE PADDING REDUCTION ------ */
@media (max-width: 900px) {
    .section.home-section[b-nww7cas8aq] {
        padding-left: 0rem;
        padding-right: 0rem;
    }

    .homepage-hero[b-nww7cas8aq],
    .guests-section[b-nww7cas8aq] {
        max-width: 100vw;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0rem;
        padding-right: 0rem;
    }

    .main-content-layout[b-nww7cas8aq] {
        padding-left: 0rem;
        padding-right: 0rem;
        gap: 0.5rem;
    }

    .card.dark-card[b-nww7cas8aq] {
        border-radius: 10px;
        box-shadow: none;
    }

    .card-header[b-nww7cas8aq] {
        padding: 0.3rem 0.3rem 0.3rem 0.3rem;
        font-size: 1rem;
    }

    .card-body[b-nww7cas8aq] {
        padding: 0.3rem 0.3rem 0.6rem 0.3rem;
    }

    .left-cards[b-nww7cas8aq], .right-cards[b-nww7cas8aq] {
        gap: 0.8rem;
    }

    .guests-section[b-nww7cas8aq] {
        padding: 0.3rem 0.2rem;
    }
}

@media (max-width: 700px) {
    .homepage-hero[b-nww7cas8aq] {
        min-height: 22vh;
    }

    .homepage-title[b-nww7cas8aq] {
        font-size: 2.1rem;
    }

    .homepage-blurb[b-nww7cas8aq] {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .featured-trailer-container[b-nww7cas8aq] {
        max-width: 100vw;
    }
}
/* _content/EekGamesWebApps.HousePartyPage/Components/Pages/News.razor.rz.scp.css */
.all-news-section[b-q9ul5mr2al] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.news-list[b-q9ul5mr2al] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Card structure and interactivity */
.news-row-card[b-q9ul5mr2al] {
    display: flex;
    flex-direction: row;
    background: #222;
    border-radius: 12px;
    box-shadow: 0 2px 8px -2px rgba(0,0,0,0.18);
    transition: box-shadow 0.15s, transform 0.12s;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    min-height: 180px;
    align-items: center; /* Vertically center image and content */
    position: relative; /* Enable absolute positioning for card-link */
}

    .news-row-card:hover[b-q9ul5mr2al] {
        box-shadow: 0 4px 16px -2px rgba(255,101,239,0.25);
        transform: translateY(-2px) scale(1.02);
    }

/* Overlay link for entire card */
.card-link[b-q9ul5mr2al] {
    position: absolute;
    inset: 0; /* top: 0; right: 0; bottom: 0; left: 0; */
    z-index: 10;
    pointer-events: auto;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Prevent card children from capturing pointer events */
.news-row-card > *:not(.card-link)[b-q9ul5mr2al] {
    pointer-events: none;
}

/* Image frame: limit height, width is flexible */
.news-card-image-frame[b-q9ul5mr2al] {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    max-height: 275px; /* Limit image frame height */
    min-width: 120px; /* Minimum width for layout stability */
    width: auto; /* Allow width to be flexible */
    padding-left: 1.5rem;
}

/* The image itself: height limited, width auto */
.news-card-image[b-q9ul5mr2al] {
    max-height: 275px;
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: 0;
}

/* Card content fills the rest of the card */
.news-card-content[b-q9ul5mr2al] {
    flex: 1 1 0;
    padding: 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center content */
    min-width: 0;
    height: 100%;
    /* Remove horizontal centering so text aligns left by default */
}

.news-card-header[b-q9ul5mr2al] {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    gap: 1rem;
    width: 100%;
}

    .news-card-header h3[b-q9ul5mr2al] {
        margin: 0;
        font-size: 1.35rem;
        color: #FDB2FF;
        font-weight: 700;
    }

.news-card-date[b-q9ul5mr2al] {
    font-size: 1rem;
    color: #aaa;
}

/* TAGS styles for news cards */
.news-card-tags[b-q9ul5mr2al] {
    margin: 0.4em 0 0.7em 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55em;
}

.news-tag[b-q9ul5mr2al] {
    display: inline-block;
    background: #FDB2FF22;
    color: #FDB2FF;
    font-size: 0.98em;
    font-weight: 500;
    border-radius: 6px;
    padding: 0.18em 0.85em;
    border: 1px solid #FDB2FF99;
    transition: background 0.16s, color 0.16s;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

    .news-tag:hover[b-q9ul5mr2al] {
        background: #FDB2FF;
        color: #2a1839;
        cursor: pointer;
    }

.news-card-preview[b-q9ul5mr2al] {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    width: 100%;
}

    /* Reset markdown image styles inside preview */
    .news-card-preview[b-q9ul5mr2al]  img {
        max-width: 100%;
        border-radius: 8px;
        margin: 0.5rem 0;
        height: auto;
        object-fit: contain;
    }

@media (max-width: 900px) {
    .all-news-section[b-q9ul5mr2al] {
        margin-top: 0;
        padding-top: 0;
    }
}

/* Responsive stacking for mobile */
@media (max-width: 700px) {
    .all-news-section[b-q9ul5mr2al] {
        margin-top: 0;
        padding-top: 0;
    }

    .news-row-card[b-q9ul5mr2al] {
        flex-direction: column;
        align-items: stretch;
    }

    .news-card-image-frame[b-q9ul5mr2al] {
        width: 100%;
        max-width: 100vw;
        max-height: 200px;
        min-width: 0;
        padding-left: 0;
    }

    .news-card-image[b-q9ul5mr2al] {
        width: 100%;
        max-width: 100vw;
        height: auto;
        max-height: 200px;
    }

    .news-card-content[b-q9ul5mr2al] {
        padding: 1rem 1rem;
    }
}

.pagination-nav[b-q9ul5mr2al] {
    margin: 2.5rem auto 0 auto;
    text-align: center;
    max-width: 1200px; /* Match your content max width */
    width: 100%;
    overflow-x: auto; /* Optional: horizontal scroll if extremely many pages */
    padding: 0 1rem;
}

.pagination[b-q9ul5mr2al] {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens or many pages */
    justify-content: center; /* Center the page numbers */
    gap: 0.6em;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 100%;
}

    .pagination li[b-q9ul5mr2al] {
        display: inline;
    }

    .pagination a[b-q9ul5mr2al] {
        color: #FDB2FF;
        text-decoration: none;
        font-size: 1.1em;
        font-weight: 600;
        border-radius: 6px;
        padding: 0.45em 1.1em;
        background: #181821;
        transition: background 0.15s, color 0.15s;
        display: inline-block;
    }

        .pagination li.active a[b-q9ul5mr2al],
        .pagination a:hover[b-q9ul5mr2al],
        .pagination a:focus[b-q9ul5mr2al] {
            background: #FDB2FF;
            color: #191926;
            text-decoration: none;
        }
/* _content/EekGamesWebApps.HousePartyPage/Components/Pages/NewsPost.razor.rz.scp.css */
.news-post-section[b-1irg9h3zht] {
    max-width: 1100px; /* Expanded width for desktop */
    margin: 2rem auto;
    padding: 2.5rem 1.5rem;
    background: #222;
    border-radius: 16px;
    box-shadow: 0 2px 18px -2px rgba(0,0,0,0.16);
    color: #fff;
    overflow: hidden;
}

.news-post-header[b-1irg9h3zht] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

    .news-post-header h2[b-1irg9h3zht] {
        margin: 0;
        font-size: 2.3rem;
        color: #FDB2FF;
        font-weight: 700;
        line-height: 1.2;
        word-break: break-word;
    }

.news-card-date[b-1irg9h3zht] {
    font-size: 1rem;
    color: #aaa;
}

/* TAGS styles for news post */
.news-post-tags[b-1irg9h3zht] {
    margin: 0.5em 0 0.8em 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55em;
}

.news-tag[b-1irg9h3zht] {
    display: inline-block;
    background: #FDB2FF22;
    color: #FDB2FF;
    font-size: 0.98em;
    font-weight: 500;
    border-radius: 6px;
    padding: 0.18em 0.85em;
    border: 1px solid #FDB2FF99;
    transition: background 0.16s, color 0.16s;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

    .news-tag:hover[b-1irg9h3zht] {
        background: #FDB2FF;
        color: #2a1839;
        cursor: pointer;
    }

/* Main image frame - no background, more width, padding */
.news-card-image-frame[b-1irg9h3zht] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    width: 100%;
    padding: 1rem 0;
    border-radius: 0; /* No background, no border-radius */
    background: none;
    box-shadow: none;
}

/* Responsive main image - limit by width, not height, with padding */
.news-card-image[b-1irg9h3zht] {
    width: 100%;
    max-width: 900px;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 12px;
    margin: 0 auto;
    box-shadow: 0 2px 8px -2px rgba(0,0,0,0.11);
    background: none;
}

/* Main content area */
.news-post-content[b-1irg9h3zht] {
    font-size: 1.15rem;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 2rem;
    word-break: break-word;
}

    .news-post-content[b-1irg9h3zht]  p {
        margin-bottom: 1.2em;
    }

    .news-post-content[b-1irg9h3zht]  h1,
    .news-post-content[b-1irg9h3zht]  h2,
    .news-post-content[b-1irg9h3zht]  h3,
    .news-post-content[b-1irg9h3zht]  h4 {
        color: #FDB2FF;
        margin-top: 2em;
        margin-bottom: 0.75em;
        font-weight: bold;
    }

    .news-post-content[b-1irg9h3zht]  a {
        color: #FDB2FF;
        text-decoration: underline;
        word-break: break-word;
    }

    .news-post-content[b-1irg9h3zht]  img {
        display: block;
        margin: 1.5rem auto;
        max-width: 98vw;
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 10px;
        box-shadow: 0 2px 8px -2px rgba(0,0,0,0.12);
        background: none;
    }

/* Responsive: expand, stack, and limit images for mobile */
@media (max-width: 1200px) {
    .news-post-section[b-1irg9h3zht] {
        max-width: 98vw;
        padding: 2rem 0.5rem;
    }

    .news-card-image[b-1irg9h3zht] {
        max-width: 98vw;
    }
}

@media (max-width: 900px) {
    .news-post-header h2[b-1irg9h3zht] {
        font-size: 1.4rem;
    }

    .news-card-image[b-1irg9h3zht] {
        max-width: 98vw;
    }
}

@media (max-width: 600px) {
    .news-post-section[b-1irg9h3zht] {
        padding: 1rem 0.25rem;
    }

    .news-card-image[b-1irg9h3zht] {
        max-width: 98vw;
    }

    .news-post-header h2[b-1irg9h3zht] {
        font-size: 1.1rem;
    }
}

/* Back to list link styling */
.back-to-list[b-1irg9h3zht] {
    display: inline-block;
    margin-top: 2rem;
    color: #FDB2FF;
    text-decoration: underline;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.15s;
}

    .back-to-list:hover[b-1irg9h3zht] {
        color: #fff;
        text-decoration: underline;
    }
/* _content/EekGamesWebApps.HousePartyPage/Components/Pages/ReleaseNotes.razor.rz.scp.css */
.section.release-notes-section[b-42gq9kbzo8] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.card-list[b-42gq9kbzo8] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card.post-card[b-42gq9kbzo8] {
    background: #222 !important;
    border-radius: 12px;
    box-shadow: 0 2px 8px -2px rgba(0,0,0,0.20);
    padding: 1.2rem 1.3rem;
    width: 100%;
    transition: box-shadow 0.15s, transform 0.12s;
    border: none;
    color: #fff;
}

    .card.post-card:hover[b-42gq9kbzo8] {
        box-shadow: 0 4px 16px -2px rgba(255,101,239,0.28);
        transform: translateY(-2px) scale(1.02);
    }

.card-main-link[b-42gq9kbzo8] {
    color: inherit;
    text-decoration: none;
    display: block;
}

.card-header[b-42gq9kbzo8] {
    margin-bottom: 0.3rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

    .card-header h5[b-42gq9kbzo8] {
        font-size: 1.17rem;
        margin: 0;
        color: #FDB2FF;
    }

    .card-header .text-muted[b-42gq9kbzo8] {
        font-size: 0.95rem;
        color: #aaa;
    }

.card-body[b-42gq9kbzo8] {
    margin-top: 0.7rem;
    margin-bottom: 0.5rem;
}

    /* Nicer bullets in markdown lists */
    .card-body ul[b-42gq9kbzo8],
    .release-note-post-content ul[b-42gq9kbzo8] {
        padding-left: 1.5em;
        margin: 1em 0;
        list-style: disc inside;
    }

    .card-body ol[b-42gq9kbzo8],
    .release-note-post-content ol[b-42gq9kbzo8] {
        padding-left: 1.5em;
        margin: 1em 0;
        list-style: decimal inside;
    }

    .card-body li[b-42gq9kbzo8],
    .release-note-post-content li[b-42gq9kbzo8] {
        margin-bottom: 0.4em;
    }

    /* Markdown images inside card body - just in case */
    .card-body img[b-42gq9kbzo8],
    .release-note-post-content img[b-42gq9kbzo8] {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 2px 8px -2px rgba(255,101,239,0.18);
        display: block;
        margin: 0.5rem auto;
    }

@media (max-width: 900px) {
    .section.release-notes-section[b-42gq9kbzo8] {
        margin-top: 0;
        padding-top: 0;
    }
}

/* Responsive stacking for mobile */
@media (max-width: 700px) {
    .section.release-notes-section[b-42gq9kbzo8] {
        margin-top: 0;
        padding-top: 0;
    }

    .card.post-card[b-42gq9kbzo8] {
        padding: 0.8rem 0.5rem;
    }
}

.pagination-nav[b-42gq9kbzo8] {
    margin: 2.5rem auto 0 auto;
    text-align: center;
    max-width: 1200px; /* Match your content max width */
    width: 100%;
    overflow-x: auto; /* Optional: horizontal scroll if extremely many pages */
    padding: 0 1rem;
}

.pagination[b-42gq9kbzo8] {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens or many pages */
    justify-content: center; /* Center the page numbers */
    gap: 0.6em;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 100%;
}

    .pagination li[b-42gq9kbzo8] {
        display: inline;
    }

    .pagination a[b-42gq9kbzo8] {
        color: #FDB2FF;
        text-decoration: none;
        font-size: 1.1em;
        font-weight: 600;
        border-radius: 6px;
        padding: 0.45em 1.1em;
        background: #181821;
        transition: background 0.15s, color 0.15s;
        display: inline-block;
    }

        .pagination li.active a[b-42gq9kbzo8],
        .pagination a:hover[b-42gq9kbzo8],
        .pagination a:focus[b-42gq9kbzo8] {
            background: #FDB2FF;
            color: #191926;
            text-decoration: none;
        }
/* _content/EekGamesWebApps.HousePartyPage/Components/Pages/ReleaseNotesPost.razor.rz.scp.css */
.release-note-post-section[b-i1rhcx3ek7] {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 2.5rem 1.5rem;
    background: #222;
    border-radius: 16px;
    box-shadow: 0 2px 18px -2px rgba(0,0,0,0.16);
    color: #fff;
    overflow: hidden;
}

.release-note-post-header[b-i1rhcx3ek7] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

    .release-note-post-header h2[b-i1rhcx3ek7] {
        margin: 0;
        font-size: 2.3rem;
        color: #FDB2FF;
        font-weight: 700;
        line-height: 1.2;
        word-break: break-word;
    }

.text-muted[b-i1rhcx3ek7] {
    font-size: 1rem;
    color: #aaa;
}

.release-note-post-content[b-i1rhcx3ek7] {
    font-size: 1.15rem;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 2rem;
    word-break: break-word;
}

    /* Nicer bullets in markdown lists */
    .release-note-post-content ul[b-i1rhcx3ek7] {
        padding-left: 1.5em;
        margin: 1em 0;
        list-style: disc inside;
    }

    .release-note-post-content ol[b-i1rhcx3ek7] {
        padding-left: 1.5em;
        margin: 1em 0;
        list-style: decimal inside;
    }

    .release-note-post-content li[b-i1rhcx3ek7] {
        margin-bottom: 0.4em;
    }

    .release-note-post-content[b-i1rhcx3ek7]  p {
        margin-bottom: 1.2em;
    }

    .release-note-post-content[b-i1rhcx3ek7]  h1,
    .release-note-post-content[b-i1rhcx3ek7]  h2,
    .release-note-post-content[b-i1rhcx3ek7]  h3,
    .release-note-post-content[b-i1rhcx3ek7]  h4 {
        color: #FDB2FF;
        margin-top: 2em;
        margin-bottom: 0.75em;
        font-weight: bold;
    }

    .release-note-post-content[b-i1rhcx3ek7]  a {
        color: #FDB2FF;
        text-decoration: underline;
        word-break: break-word;
    }

/* Responsive adjustments */
@media (max-width: 1200px) {
    .release-note-post-section[b-i1rhcx3ek7] {
        max-width: 98vw;
        padding: 2rem 0.5rem;
    }
}

@media (max-width: 900px) {
    .release-note-post-header h2[b-i1rhcx3ek7] {
        font-size: 1.4rem;
    }
}

@media (max-width: 600px) {
    .release-note-post-section[b-i1rhcx3ek7] {
        padding: 1rem 0.25rem;
    }

    .release-note-post-header h2[b-i1rhcx3ek7] {
        font-size: 1.1rem;
    }
}

/* Back to list link styling */
.back-to-list[b-i1rhcx3ek7] {
    display: inline-block;
    margin-top: 2rem;
    color: #FDB2FF;
    text-decoration: underline;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.15s;
}

    .back-to-list:hover[b-i1rhcx3ek7] {
        color: #fff;
        text-decoration: underline;
    }
/* _content/EekGamesWebApps.HousePartyPage/Components/Pages/SuperAdminPage.razor.rz.scp.css */
:host[b-sf2a0auuce] {
    display: block;
    background: #303030;
    padding: 2.3rem 0 0 0;
    min-height: 100vh;
}

.page-title[b-sf2a0auuce],
[page-title][b-sf2a0auuce] {
    font-size: 2rem;
    color: #FDB2FF;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: left;
    letter-spacing: 1.1px;
    text-shadow: 0 2px 8px #0005;
}

.authorize-view[b-sf2a0auuce] {
    width: 100%;
}
