* {
    box-sizing: border-box;
}


body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f6f8;
    color: #202124;
}


.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}


/* --------------------------------------------------
   HEADER
-------------------------------------------------- */

.site-header {
    background: white;
    border-bottom: 1px solid #e5e5e5;
}


.header-content {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.site-brand { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.site-tagline { color: #777777; font-style: italic; font-size: 16px; font-weight: 400; }

.logo {
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    color: #111111;
}


nav a {
    text-decoration: none;
    color: #555555;
}


/* --------------------------------------------------
   HOMEPAGE HERO
-------------------------------------------------- */

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: white;
    padding: 80px 0;
    text-align: center;
}

.hero-background { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: -2; }
.hero-with-background::before { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, .58); z-index: -1; pointer-events: none; }
.hero-with-background h1, .hero-with-background p { color: white; }
.hero .search-form input { min-width: 0; background: white; color: #111; }


.hero h1 {
    font-size: 46px;
    margin-top: 0;
    margin-bottom: 10px;
}


.hero p {
    font-size: 19px;
    color: #666666;
    margin-bottom: 30px;
}


/* --------------------------------------------------
   SEARCH
-------------------------------------------------- */

.search-form {
    display: flex;
    max-width: 600px;
    margin: auto;
}


.search-form input {
    flex: 1;
    padding: 16px;
    border: 1px solid #cccccc;
    border-radius: 8px 0 0 8px;
    font-size: 16px;
}


.search-form button {
    padding: 0 25px;
    border: 0;
    background: #111111;
    color: white;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
}


/* --------------------------------------------------
   HOMEPAGE FAN SITE CARDS
-------------------------------------------------- */

.section-heading {
    margin-top: 50px;
}


.celebrity-grid {
    display: grid;
    grid-template-columns: repeat(
        auto-fill,
        minmax(250px, 1fr)
    );
    gap: 24px;
    margin: 25px 0 70px;
}


.celebrity-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
}


.celebrity-card-image-link {
    display: block;
    text-decoration: none;
}


.celebrity-card-image {
    width: 100%;
    height: 220px;
    display: block;
    object-fit: cover;
    object-position: center;
}


.celebrity-placeholder {
    width: 100%;
    height: 220px;
    background: #dddddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    font-weight: bold;
    color: #777777;
}


.celebrity-card-content {
    padding: 22px;
}


.category {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: bold;
    color: #777777;
}


.celebrity-card h3 {
    font-size: 24px;
    margin: 8px 0;
}


.celebrity-card p {
    line-height: 1.5;
}


/* --------------------------------------------------
   HOMEPAGE CARD COUNTERS
-------------------------------------------------- */

.celebrity-stats {
    display: flex;
    gap: 30px;
    padding: 15px 0;
    margin: 15px 0;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}


.stat {
    display: flex;
    flex-direction: column;
}


.stat strong {
    font-size: 20px;
    color: #202124;
}


.stat span {
    margin-top: 2px;
    font-size: 12px;
    color: #777777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* --------------------------------------------------
   BUTTONS
-------------------------------------------------- */

.button,
.follow-button {
    display: inline-block;
    margin-top: 10px;
    padding: 11px 18px;
    background: var(--theme-primary, #111111);
    color: var(--theme-secondary, #ffffff);
    border-radius: 7px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
}


.button:hover,
.follow-button:hover {
    opacity: 0.85;
}


/* --------------------------------------------------
   FAN SITE THEME DEFAULTS
-------------------------------------------------- */

.fan-site {
    --theme-primary: #111111;
    --theme-secondary: #ffffff;
    --theme-accent: #666666;
    --theme-surface: #ffffff;
    --theme-text: #202124;
}


/* Classic */

.theme-classic {
    --theme-primary: #111111;
    --theme-secondary: #ffffff;
    --theme-accent: #666666;
    --theme-surface: #ffffff;
    --theme-text: #202124;
}


/* Midnight */

.theme-midnight {
    --theme-primary: #171923;
    --theme-secondary: #ffffff;
    --theme-accent: #8b8fa3;
    --theme-surface: #232634;
    --theme-text: #ffffff;
}


/* Ocean */

.theme-ocean {
    --theme-primary: #174a78;
    --theme-secondary: #ffffff;
    --theme-accent: #4f91c7;
    --theme-surface: #edf5fb;
    --theme-text: #15344f;
}


/* Rose */

.theme-rose {
    --theme-primary: #9d3159;
    --theme-secondary: #ffffff;
    --theme-accent: #d783a3;
    --theme-surface: #fff3f7;
    --theme-text: #542338;
}


/* Sunset */

.theme-sunset {
    --theme-primary: #a54832;
    --theme-secondary: #ffffff;
    --theme-accent: #dc8b55;
    --theme-surface: #fff4ed;
    --theme-text: #51291e;
}


/* Emerald */

.theme-emerald {
    --theme-primary: #236350;
    --theme-secondary: #ffffff;
    --theme-accent: #5ca58d;
    --theme-surface: #eff8f5;
    --theme-text: #173f34;
}


/* --------------------------------------------------
   CELEBRITY FAN SITE HEADER
-------------------------------------------------- */

.celebrity-hero {
    background: var(--theme-surface);
    color: var(--theme-text);
    padding: 35px 0 45px;
}


.back-link {
    color: var(--theme-text, #555555);
    text-decoration: none;
    opacity: 0.8;
}


.back-link:hover {
    opacity: 1;
}


.celebrity-header {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 30px;
}


.celebrity-large-placeholder {
    min-width: 150px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #dddddd;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 70px;
    font-weight: bold;
    color: #777777;
}


.celebrity-profile-image {
    width: 150px;
    height: 150px;
    min-width: 150px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 4px solid white;
}


.celebrity-header h1 {
    font-size: 42px;
    margin: 6px 0;
}


.celebrity-header p {
    line-height: 1.5;
}


/* --------------------------------------------------
   FAN SITE MAIN LAYOUT
-------------------------------------------------- */

.celebrity-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    margin-top: 30px;
}


.main-column {
    min-width: 0;
}


.chat-column {
    min-width: 0;
}


/* --------------------------------------------------
   CONTENT PANELS
-------------------------------------------------- */

.content-panel,
.chat-panel {
    background: var(--theme-surface);
    color: var(--theme-text);
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    margin-bottom: 25px;
    overflow: hidden;
}


.panel-header,
.chat-header {
    padding: 18px 22px;
    border-bottom: 1px solid #eeeeee;
}


.panel-header h2 {
    margin: 0;
}


.empty-state {
    padding: 40px;
    text-align: center;
    color: #777777;
}


/* --------------------------------------------------
   MAP PLACEHOLDER
-------------------------------------------------- */

.map-placeholder {
    height: 350px;
    background: #e4e7e9;
    color: #444444;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
}


/* --------------------------------------------------
   CHAT
-------------------------------------------------- */

.chat-panel {
    position: sticky;
    top: 20px;
}


.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.chat-header button {
    border: none;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-size: 20px;
}


.chat-empty {
    height: 350px;
    padding: 20px;
    color: #777777;
}


.chat-input {
    display: flex;
    gap: 8px;
    border-top: 1px solid #eeeeee;
    padding: 12px;
}


.chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 6px;
}


.chat-input button {
    padding: 10px 14px;
    border: none;
    border-radius: 6px;
}


/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */

footer {
    background: #111111;
    color: #aaaaaa;
    padding: 40px 0;
    margin-top: 70px;
}

/* --------------------------------------------------
   NAVIGATION / ACCOUNTS
-------------------------------------------------- */

.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}


.site-nav a {
    text-decoration: none;
}

.site-nav .nav-create-fan-site { margin-top: 0; }


.nav-user {
    color: #777777;
    font-size: 14px;
}


.logout-form {
    margin: 0;
}


.nav-button {
    padding: 0;
    border: none;
    background: transparent;
    color: #555555;
    cursor: pointer;
    font: inherit;
}


.nav-register {
    padding: 8px 13px;
    background: #111111;
    color: white !important;
    border-radius: 6px;
}


/* --------------------------------------------------
   LOGIN / REGISTRATION
-------------------------------------------------- */

.auth-page {
    padding: 70px 20px;
}


.auth-card {
    width: min(500px, 100%);
    margin: 0 auto;
    padding: 35px;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
}


.auth-card h1 {
    margin-top: 0;
}


.auth-card label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}


.auth-card input {
    width: 100%;
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 6px;
}


.auth-card .helptext {
    display: block;
    margin-top: 5px;
    color: #777777;
    font-size: 12px;
}


.auth-card ul {
    padding-left: 20px;
    color: #777777;
    font-size: 13px;
}


.auth-button {
    width: 100%;
    text-align: center;
}


.auth-footer {
    margin-top: 25px;
    text-align: center;
}


/* --------------------------------------------------
   MEMBERSHIP
-------------------------------------------------- */

.membership-controls {
    margin-top: 15px;
}


.membership-controls form {
    margin: 0;
}


.membership-badge {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 7px;
    background: var(--theme-primary, #111111);
    color: var(--theme-secondary, #ffffff);
    font-weight: 600;
}


.membership-badge.pending {
    background: #e6a700;
    color: #111111;
}


.membership-badge.blocked {
    background: #b42318;
    color: white;
}


/* --------------------------------------------------
   SYSTEM MESSAGES
-------------------------------------------------- */

.messages {
    width: min(1100px, 92%);
    margin: 15px auto;
}


.message {
    padding: 13px 16px;
    border-radius: 7px;
    background: #eeeeee;
}


.message.success {
    background: #e7f6ec;
}


.message.error {
    background: #fde8e8;
}


.message.info {
    background: #e8f1fd;
}

/* --------------------------------------------------
   FAN SITE MANAGEMENT
-------------------------------------------------- */

.manage-site-button {
    display: inline-block;
    margin-top: 12px;
    margin-left: 8px;
    padding: 10px 15px;
    border: none;
    color: var(--theme-secondary, #ffffff);
    background: var(--theme-primary, #111111);
    border-radius: 7px;
    text-decoration: none;
    font-weight: 600;
}


.manage-site-button:hover {
    background: var(--theme-primary, #111111);
    color: var(--theme-secondary, #ffffff);
}


.management-header {
    padding: 45px 0;
    background: var(--theme-surface);
    color: var(--theme-text);
}


.management-header h1 {
    margin-bottom: 8px;
    font-size: 38px;
}


.management-layout {
    padding-top: 30px;
}


.management-summary {
    display: grid;
    grid-template-columns: repeat(
        4,
        minmax(0, 1fr)
    );
    gap: 18px;
    margin-bottom: 30px;
}


.summary-card {
    padding: 22px;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
}


.summary-card strong {
    display: block;
    font-size: 30px;
}


.summary-card span {
    display: block;
    margin-top: 4px;
    color: #777777;
}


.management-panel {
    margin-bottom: 25px;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
}


.management-panel-header {
    padding: 18px 22px;
    border-bottom: 1px solid #eeeeee;
}


.management-panel-header h2 {
    margin: 0;
    font-size: 20px;
}


.member-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 22px;
    border-bottom: 1px solid #eeeeee;
}


.member-row:last-child {
    border-bottom: none;
}


.member-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
}


.member-details span {
    color: #666666;
}


.member-details small {
    color: #999999;
}


.member-actions {
    display: flex;
    gap: 8px;
}


.member-actions form {
    margin: 0;
}


.action-button {
    padding: 8px 13px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}


.action-button.approve {
    background: #e7f6ec;
    color: #176b36;
}


.action-button.reject {
    background: #f2f2f2;
    color: #555555;
}


.action-button.ban {
    background: #fde8e8;
    color: #a12424;
}


.management-empty {
    padding: 25px 22px;
    color: #777777;
}

/* --------------------------------------------------
   MODERATOR MANAGEMENT
-------------------------------------------------- */

.moderator-form-wrapper {
    padding: 22px;
    background: #fafafa;
    border-bottom: 1px solid #eeeeee;
}


.moderator-form-wrapper h3 {
    margin-top: 0;
    margin-bottom: 5px;
}


.moderator-form-wrapper p {
    margin-top: 0;
    color: #777777;
}


.moderator-form {
    display: flex;
    gap: 10px;
    align-items: center;
}


.moderator-form input {
    flex: 1;
    padding: 11px 12px;
    border: 1px solid #cccccc;
    border-radius: 6px;
    font-size: 15px;
}


.moderator-form .button {
    margin-top: 0;
    white-space: nowrap;
}

/* --------------------------------------------------
   RESPONSIVE / MOBILE
-------------------------------------------------- */

@media (max-width: 750px) {

    .moderator-form {
    flex-direction: column;
    align-items: stretch;
    }
    
    .management-summary {
        grid-template-columns: repeat(2, 1fr);
    }

    .member-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .manage-site-button {
        margin-left: 0;
    }

    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 36px;
    }

    .search-form {
        flex-direction: column;
        gap: 10px;
    }

    .search-form input {
        border-radius: 8px;
    }

    .search-form button {
        padding: 14px 20px;
        border-radius: 8px;
    }

    .celebrity-layout {
        grid-template-columns: 1fr;
    }

    .celebrity-header {
        align-items: flex-start;
        gap: 18px;
    }

    .celebrity-large-placeholder {
        min-width: 90px;
        width: 90px;
        height: 90px;
        font-size: 42px;
    }

    .celebrity-profile-image {
        min-width: 90px;
        width: 90px;
        height: 90px;
    }

    .celebrity-header h1 {
        font-size: 32px;
    }

    .celebrity-card-image,
    .celebrity-placeholder {
        height: 200px;
    }

    .chat-panel {
        position: static;
    }
}

/* Community posts */
.post-card { padding: 22px; border-bottom: 1px solid #ddd; overflow-wrap: anywhere; }
.post-card h3 { margin-top: 0; }
.post-meta { font-size: 14px; opacity: .8; }
.post-body { line-height: 1.6; }
.post-actions, .post-pagination { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 20px; }
.post-actions a, .post-pagination a { color: inherit; text-decoration: underline; }
.post-pagination { padding: 22px; }
.post-editor { max-width: 750px; padding: 30px 24px; margin-top: 30px; background: var(--theme-surface); color: var(--theme-text); border-radius: 12px; }
.post-form label { display: block; font-weight: 600; margin-bottom: 8px; }
.post-form input, .post-form textarea { width: 100%; padding: 12px; border: 1px solid #999; border-radius: 6px; font: inherit; background: var(--theme-surface); color: var(--theme-text); }
.post-form textarea { resize: vertical; }
.post-form .errorlist { font-weight: bold; }

.post-editor { overflow-wrap: anywhere; }

.post-form select { max-width: 100%; padding: 12px; font: inherit; background: var(--theme-surface); color: var(--theme-text); }
.post-actions a[aria-current="page"] { font-weight: bold; text-decoration-thickness: 3px; }

/* Membership controls and discovery actions */
.membership-controls { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.membership-controls .manage-site-button,
.membership-controls .follow-button { margin: 0; }
.discovery-heading { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.discovery-heading .button { margin-top: 0; }
@media (max-width: 750px) {
    .header-content { height: auto; min-height: 70px; padding-top: 16px; padding-bottom: 16px; flex-wrap: wrap; gap: 16px; }
    .site-nav { flex-wrap: wrap; gap: 14px; }
}

.celebrity-banner { width: 100%; background: var(--theme-surface); }
.celebrity-banner img { display: block; width: 100%; max-height: 420px; object-fit: cover; object-position: center; }
.post-form .helptext { display: block; margin-top: 6px; font-size: 14px; line-height: 1.5; }

.celebrity-card-description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    overflow-wrap: anywhere;
    max-height: 4.5em;
}

.settings-profile-preview { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; }
.settings-banner-preview { display: block; max-width: 100%; max-height: 180px; margin-top: 16px; }
.post-form input[type="checkbox"] { width: auto; }

.sighting-photo { display: block; max-width: 100%; max-height: 650px; margin-top: 20px; object-fit: contain; }

.sighting-summary { display: flex; gap: 18px; align-items: flex-start; }
.sighting-summary > div { min-width: 0; flex: 1; }
.sighting-thumbnail { width: 110px; height: 110px; object-fit: cover; border-radius: 8px; }
.sighting-divider { border: 0; border-top: 1px solid currentColor; opacity: .2; margin: 12px 0; }
.sighting-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 18px; font-size: 14px; }
.sighting-actions form { display: flex; gap: 8px; }
.sighting-actions [aria-pressed="true"] { background: var(--theme-primary); color: var(--theme-secondary); outline: 2px solid var(--theme-accent); }
.sighting-actions a { color: inherit; }
.sighting-actions summary { cursor: pointer; }
@media (max-width: 450px) { .sighting-thumbnail { width: 75px; height: 75px; } }

.sighting-title-link { color: inherit; text-decoration: none; }
.sighting-title-link:hover, .sighting-title-link:focus-visible { text-decoration: underline; }

.engagement-icon { width: 19px; height: 19px; flex-shrink: 0; vertical-align: middle; }
.sighting-actions .action-button, .reaction-count { display: inline-flex; align-items: center; gap: 6px; }
.sighting-actions button[value="-1"] svg, .dislike-icon svg { transform: rotate(180deg); }
.social-sharing { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.social-sharing button, .social-sharing a { font: inherit; color: inherit; background: transparent; border: 0; padding: 6px 2px; cursor: pointer; text-decoration: none; }
.social-sharing a:hover, .social-sharing button:hover { text-decoration: underline; }
.social-sharing .share-icon-button { display: inline-flex; padding: 8px; }
.share-feedback:not(:empty) { flex-basis: 100%; font-size: 12px; }

.social-sharing .platform-icon { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; padding: 7px; border-radius: 5px; color: white; text-decoration: none; }
.platform-icon svg { width: 20px; height: 20px; }
.social-sharing .platform-facebook { background: #1877f2; }
.social-sharing .platform-instagram { background: linear-gradient(35deg, #f9ce34, #ee2a7b, #6228d7); }
.social-sharing .platform-x, .social-sharing .platform-tiktok { background: #111; }
.social-sharing .platform-whatsapp { background: #128c7e; }
.social-sharing .platform-snapchat { background: #fffc00; color: #111; }
.social-sharing .platform-link { background: #586475; }
.social-sharing .platform-icon:hover { filter: brightness(.88); }
.social-sharing .platform-icon:focus-visible { outline: 3px solid var(--theme-text, #111); outline-offset: 3px; }

.sighting-map { height: 380px; width: 100%; background: #e5e7eb; z-index: 0; }
.map-caption, .heat-legend { padding: 0 18px; font-size: 13px; line-height: 1.5; }
.heat-legend { display: flex; align-items: center; gap: 10px; margin: 14px 0; }
.heat-gradient { width: 120px; height: 12px; border-radius: 6px; background: linear-gradient(to right, #ffe5a0, #ffbb14, #ed3414); }

.post-form input:disabled { background: #e7e7e7; color: #666; border-color: #ccc; cursor: not-allowed; opacity: 1; }

.sighting-author-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.sighting-author-actions form, .sighting-author-actions .button { margin: 0; }

.text-toolbar { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; padding: 7px 0; }
.text-toolbar button { min-width: 34px; min-height: 34px; border: 1px solid #999; border-radius: 5px; background: var(--theme-surface, white); color: var(--theme-text, #222); cursor: pointer; font-size: 16px; }
.text-toolbar button:disabled { opacity: .45; cursor: not-allowed; }
.emoji-palette:not([hidden]) { display: flex; flex-wrap: wrap; gap: 4px; }
.upload-thumbnail { display: block; width: 130px; height: 100px; object-fit: contain; margin-top: 10px; border-radius: 6px; }
.upload-thumbnail[hidden] { display: none; }
.chat-input { flex-wrap: wrap; }
.chat-input .text-toolbar { flex-basis: 100%; }

.sighting-map .leaflet-control-layers { border: 0; border-radius: 10px; padding: 9px 13px; box-shadow: 0 2px 12px #0002; font: 14px Arial, sans-serif; }
.sighting-map .leaflet-control-layers label { margin: 4px 0; cursor: pointer; font-weight: 400; }
.sighting-map .leaflet-control-layers label > span { display: flex; align-items: center; gap: 6px; }
.sighting-map .leaflet-control-layers input[type="radio"] { width: auto; padding: 0; margin: 0; flex: 0 0 auto; position: static; }
.sighting-map .leaflet-bar { border: 0; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 12px #0002; }
.live-sightings-status { margin: 0 22px 16px; font-size: 12px; opacity: .75; }

.social-signin .button:disabled { background: #e9ebef; color: #666; cursor: not-allowed; opacity: 1; }
.social-signin small { font-size: 12px; font-weight: normal; }

.social-signin .auth-provider-button { display: flex; align-items: center; gap: 12px; text-align: left; }
.auth-provider-icon { width: 32px; height: 32px; flex: 0 0 32px; display: inline-flex; align-items: center; justify-content: center; border-radius: 5px; }
.auth-provider-icon svg { width: 21px; height: 21px; }
.auth-provider-google { background: white; border: 1px solid #ddd; }
.auth-provider-apple { background: #111; color: white; }
.auth-provider-facebook { background: #1877f2; color: white; }
.discovery-row { margin: 30px 0 42px; }
.discovery-row-heading { display: flex; align-items: center; gap: 18px; margin-bottom: 16px; }
.discovery-row-heading h2 { margin: 0; }
.view-all { border: 1px solid #ccc; border-radius: 20px; padding: 7px 14px; color: #333; text-decoration: none; font-size: 13px; }
.carousel-shell { position: relative; }
.fan-site-carousel { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x proximity; padding: 4px 2px 15px; scrollbar-width: thin; }
.fan-site-carousel .celebrity-card { flex: 0 0 260px; scroll-snap-align: start; display: flex; flex-direction: column; }
.fan-site-carousel .celebrity-card-content { display: flex; flex-direction: column; flex: 1; }
.fan-site-carousel .celebrity-card-content > .button { margin-top: auto; text-align: center; }
.carousel-arrow { position: absolute; z-index: 2; top: 100px; border: 1px solid #ddd; border-radius: 50%; width: 42px; height: 42px; background: white; color: #222; box-shadow: 0 3px 12px #0002; font-size: 30px; cursor: pointer; }
.carousel-arrow[hidden] { display: none; }
.carousel-left { left: -15px; }
.carousel-right { right: -15px; }
.card-source { font-size: 11px; color: #666; margin: 4px 0; overflow-wrap: anywhere; }

.location-search { margin-bottom: 16px; }
.location-suggestions { list-style: none; margin: 6px 0; padding: 0; border: 1px solid #aaa; border-radius: 8px; background: var(--theme-surface, white); max-height: 240px; overflow-y: auto; }
.location-suggestions [role="option"] { padding: 11px 14px; cursor: pointer; border-bottom: 1px solid #ddd; }
.location-suggestions [role="option"]:last-child { border-bottom: 0; }
.location-suggestions [role="option"]:hover, .location-suggestions [aria-selected="true"] { background: #e9eff8; color: #171717; }
