* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;

    background: #09090b;
    color: #f5f5f5;

    line-height: 1.5;
}

a {
    color: inherit;
}


/* HEADER */

.site-header {
    height: 72px;

    display: flex;
    align-items: center;

    padding: 0 5%;

    border-bottom: 1px solid #202024;

    background: rgba(9, 9, 11, 0.96);

    position: sticky;
    top: 0;

    z-index: 100;
}

.logo {
    font-size: 19px;
    font-weight: 800;

    letter-spacing: 1px;

    text-decoration: none;
}

.logo span {
    color: #777;
}

.main-nav {
    display: flex;

    gap: 28px;

    margin-left: 50px;
}

.main-nav a {
    text-decoration: none;

    color: #8d8d94;

    font-size: 14px;

    transition: color 0.2s ease;
}

.main-nav a.active {
    color: #ffffff;
}

.main-nav a:hover {
    color: #ffffff;
}

.login-button {
    margin-left: auto;

    padding: 9px 16px;

    border: 1px solid #2d2d32;

    border-radius: 8px;

    text-decoration: none;

    font-size: 14px;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.login-button:hover {
    background: #18181c;
    border-color: #444;
}


/* HERO */

.hero {
    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 80px 20px;

    border-bottom: 1px solid #18181c;

    background:
        radial-gradient(
            circle at center,
            #18181d 0%,
            #09090b 55%
        );
}

.hero-content {
    width: 100%;
    max-width: 860px;

    text-align: center;
}

.eyebrow {
    margin-bottom: 20px;

    color: #707078;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.hero h1 {
    font-size: clamp(44px, 7vw, 78px);

    letter-spacing: -3px;

    line-height: 1;

    margin-bottom: 22px;
}

.hero-description {
    max-width: 650px;

    margin: 0 auto 36px;

    color: #96969e;

    font-size: 18px;
}


/* SEARCH */

.search-box {
    display: flex;

    max-width: 760px;

    margin: auto;

    background: #151519;

    border: 1px solid #2b2b31;

    border-radius: 12px;

    overflow: hidden;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.search-box:focus-within {
    border-color: #555;

    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.04);
}

.search-box input {
    flex: 1;

    min-width: 0;

    padding: 20px;

    background: transparent;

    border: none;
    outline: none;

    color: #ffffff;

    font-size: 16px;
}

.search-box input::placeholder {
    color: #64646c;
}

.search-box button {
    padding: 0 28px;

    border: none;

    background: #ffffff;
    color: #09090b;

    font-weight: 700;

    cursor: pointer;

    transition: background 0.2s ease;
}

.search-box button:hover {
    background: #dcdcdc;
}

.popular-searches {
    margin-top: 18px;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 14px;

    font-size: 13px;
}

.popular-searches span {
    color: #55555d;
}

.popular-searches a {
    color: #888891;

    text-decoration: none;
}

.popular-searches a:hover {
    color: #ffffff;
}


/* MAIN CONTENT */

.content-section {
    max-width: 1320px;

    margin: 0 auto;

    padding: 70px 30px 10px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 26px;
}

.section-label {
    margin-bottom: 6px;

    color: #5f5f67;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.8px;
}

.section-heading h2 {
    font-size: 28px;

    letter-spacing: -1px;
}

.view-all {
    color: #7c7c84;

    font-size: 14px;

    text-decoration: none;
}

.view-all:hover {
    color: #ffffff;
}


/* CELEBRITY CHIPS */

.celebrity-row {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}

.celebrity-chip {
    padding: 11px 17px;

    background: #141417;

    border: 1px solid #242428;

    border-radius: 999px;

    color: #bbbbc1;

    text-decoration: none;

    font-size: 14px;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.celebrity-chip:hover {
    background: #1d1d21;
    border-color: #35353b;

    transform: translateY(-2px);
}


/* GALLERY GRID */

.people-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.person-card {
    display: block;
    min-width: 0;
    color: #ffffff;
    text-decoration: none;
}

.person-card-image {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;

    background: #151518;
    border: 1px solid #242429;
    border-radius: 12px;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.person-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.35s ease;
}

.person-card-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.35),
        transparent 45%
    );

    pointer-events: none;
}

.person-card-info {
    padding-top: 10px;
}

.person-card-info span {
    font-size: 15px;
    font-weight: 700;
}

.person-card:hover .person-card-image {
    transform: translateY(-3px);
    border-color: #44444c;
}

.person-card:hover .person-card-image img {
    transform: scale(1.04);
}

.person-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    color: #71717a;
    font-size: 13px;
}

.gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;
}

.gallery-card {
    overflow: hidden;
}

.gallery-image-link {
    display: block;

    text-decoration: none;
}

.gallery-image {
    position: relative;

    aspect-ratio: 4 / 5;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #1f1f24,
            #111114
        );

    border-radius: 12px;

    border: 1px solid #202024;

    isolation: isolate;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
} 


.gallery-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
    position: relative;
    z-index: 0;

    transition: transform 0.4s ease;
}


.image-overlay {
    position: absolute;

    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.35),
        transparent 45%
    );

    pointer-events: none;
}


/* Moves the entire card slightly upwards */

.gallery-card:hover .gallery-image {
    transform: translateY(-4px);

    border-color: #3b3b42;
}


/* Zooms the photograph inside the card */

.gallery-card:hover .gallery-image img {
    transform: scale(1.04);
}

.image-placeholder {
    color: #4d4d55;

    font-size: 13px;
}

.gallery-badge {
    position: absolute;

    top: 12px;
    right: 12px;

    padding: 6px 9px;

    border-radius: 6px;

    background: rgba(0, 0, 0, 0.68);

    backdrop-filter: blur(8px);

    color: #e5e5e5;

    font-size: 11px;
    z-index: 2;
}

.gallery-info {
    padding: 14px 2px 0;
}

.celebrity-name {
    display: inline-block;

    margin-bottom: 5px;

    color: #75757e;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    text-transform: uppercase;

    letter-spacing: 0.7px;
}

.celebrity-name:hover {
    color: #ffffff;
}

.gallery-title {
    display: block;

    color: #ededed;

    font-size: 17px;
    font-weight: 600;

    text-decoration: none;

    line-height: 1.3;
}

.gallery-title:hover {
    color: #ffffff;
}

.gallery-meta {
    margin-top: 8px;

    display: flex;

    gap: 10px;

    color: #5d5d65;

    font-size: 12px;
}


/* FOOTER */

.site-footer {
    max-width: 1320px;

    margin: 90px auto 0;

    padding: 35px 30px 50px;

    border-top: 1px solid #1d1d21;

    color: #55555c;

    font-size: 13px;
}

.footer-logo {
    margin-bottom: 8px;

    color: #a5a5aa;

    font-weight: 800;

    letter-spacing: 1px;
}

.footer-logo span {
    color: #55555c;
}


/* TABLET */

@media (max-width: 950px) {

    .gallery-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .main-nav {
        display: none;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .site-header {
        padding: 0 20px;
    }

    .hero {
        min-height: 450px;

        padding: 60px 20px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 16px;
    }

    .search-box {
        flex-direction: column;

        border-radius: 10px;
    }

    .search-box input {
        width: 100%;
    }

    .search-box button {
        padding: 15px;

        border-top: 1px solid #2b2b31;
    }

    .content-section {
        padding:
            55px 18px
            5px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        align-items: start;

        flex-direction: column;
    }

}

/* ========================================
   CELEBRITY PROFILE
======================================== */

.profile-header {
    padding: 80px 30px;

    border-bottom: 1px solid #1d1d21;

    background: linear-gradient(
        to bottom,
        #111115,
        #09090b
    );
}


.profile-container {
    max-width: 1320px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 50px;
}


.profile-photo {
    width: 190px;
    height: 190px;

    flex-shrink: 0;

    overflow: hidden;

    border-radius: 50%;

    border: 1px solid #303036;
}


.profile-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.profile-details {
    max-width: 750px;
}


.profile-details h1 {
    margin-bottom: 15px;

    font-size: 52px;

    letter-spacing: -2px;
}


.profile-description {
    max-width: 650px;

    margin-bottom: 28px;

    color: #8d8d95;

    font-size: 16px;
}


.profile-stats {
    display: flex;

    gap: 40px;

    margin-bottom: 28px;
}


.profile-stats div {
    display: flex;
    flex-direction: column;
}


.profile-stats strong {
    font-size: 20px;
}


.profile-stats span {
    margin-top: 2px;

    color: #62626a;

    font-size: 12px;
}


.social-links {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;
}


.social-links a {
    padding: 9px 14px;

    border: 1px solid #29292e;

    border-radius: 7px;

    color: #a5a5ad;

    text-decoration: none;

    font-size: 13px;
}


.social-links a:hover {
    background: #17171b;

    color: white;
}


/* PROFILE NAVIGATION */

.profile-navigation {
    border-bottom: 1px solid #1d1d21;
}


.profile-nav-inner {
    max-width: 1320px;

    margin: auto;

    padding: 0 30px;

    display: flex;

    gap: 32px;

    overflow-x: auto;
}


.profile-nav-inner a {
    padding: 18px 0;

    border-bottom: 2px solid transparent;

    color: #686870;

    text-decoration: none;

    font-size: 14px;

    white-space: nowrap;
}


.profile-nav-inner a:hover {
    color: white;
}


.profile-nav-inner a.active {
    border-bottom-color: white;

    color: white;
}


/* YEARS */

.year-list {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}


.year-list a {
    min-width: 68px;

    padding: 11px 14px;

    border: 1px solid #25252a;

    border-radius: 7px;

    background: #121215;

    color: #8c8c94;

    text-align: center;

    text-decoration: none;

    font-size: 13px;
}


.year-list a:hover {
    border-color: #44444b;

    background: #19191d;

    color: white;
}


/* PROFILE MOBILE */

@media (max-width: 700px) {

    .profile-header {
        padding: 50px 20px;
    }


    .profile-container {
        align-items: flex-start;

        flex-direction: column;

        gap: 30px;
    }


    .profile-photo {
        width: 130px;
        height: 130px;
    }


    .profile-details h1 {
        font-size: 38px;
    }


    .profile-stats {
        gap: 25px;
    }


    .profile-nav-inner {
        padding: 0 20px;
    }

}

/* ========================================
   GALLERY PAGE
======================================== */

.gallery-page-header {
    padding: 70px 30px 45px;

    border-bottom: 1px solid #1d1d21;

    background: #0c0c0f;
}


.gallery-page-inner {
    max-width: 1320px;

    margin: 0 auto;
}


.gallery-back-link {
    display: inline-block;

    margin-bottom: 28px;

    color: #777780;

    text-decoration: none;

    font-size: 13px;
}


.gallery-back-link:hover {
    color: white;
}


.gallery-page-header h1 {
    max-width: 900px;

    margin-bottom: 18px;

    font-size: 44px;

    letter-spacing: -1.5px;

    line-height: 1.1;
}


.gallery-page-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 16px;

    color: #62626a;

    font-size: 13px;
}


/* PHOTO GRID */

.gallery-viewer-section {
    max-width: 1320px;

    margin: 0 auto;

    padding: 45px 30px 80px;
}


.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.photo-item {
    display: block;
    width: 100%;
    overflow: hidden;

    aspect-ratio: 4 / 5;

    border-radius: 10px;
    background: #151518;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-item:hover img {
    transform: scale(1.03);
}


/* GALLERY TABLET */

@media (max-width: 950px) {

    .photo-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* GALLERY MOBILE */

@media (max-width: 600px) {

    .gallery-page-header {
        padding: 45px 20px 35px;
    }


    .gallery-page-header h1 {
        font-size: 34px;
    }


    .gallery-viewer-section {
        padding: 30px 18px 60px;
    }


    .photo-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 8px;
    }

}

/* ========================================
   LIGHTBOX
======================================== */

.lightbox {
    position: fixed;

    inset: 0;

    z-index: 1000;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(0, 0, 0, 0.94);

    backdrop-filter: blur(8px);
}


.lightbox.open {
    display: flex;
}


.lightbox-content {
    max-width: 90%;
    max-height: 90%;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 12px;
}


.lightbox-content img {
    display: block;

    max-width: 100%;
    max-height: 82vh;

    object-fit: contain;

    border-radius: 6px;
}


.lightbox-close {
    position: absolute;

    top: 22px;
    right: 28px;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;

    background: transparent;

    color: #ffffff;

    font-size: 38px;

    cursor: pointer;

    opacity: 0.75;
}


.lightbox-close:hover {
    opacity: 1;
}


.lightbox-arrow {
    position: absolute;

    top: 50%;

    width: 50px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #333338;

    border-radius: 8px;

    background: rgba(20, 20, 24, 0.75);

    color: white;

    font-size: 38px;

    cursor: pointer;

    transform: translateY(-50%);

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}


.lightbox-arrow:hover {
    background: #232328;

    border-color: #4a4a51;
}


.lightbox-prev {
    left: 25px;
}


.lightbox-next {
    right: 25px;
}


.lightbox-counter {
    color: #777780;

    font-size: 13px;
}


/* Stop page scrolling while viewer is open */

body.lightbox-open {
    overflow: hidden;
}


/* LIGHTBOX MOBILE */

@media (max-width: 600px) {

    .lightbox {
        padding: 15px;
    }


    .lightbox-content {
        max-width: 100%;
    }


    .lightbox-content img {
        max-height: 75vh;
    }


    .lightbox-arrow {
        width: 42px;
        height: 50px;

        font-size: 30px;
    }


    .lightbox-prev {
        left: 8px;
    }


    .lightbox-next {
        right: 8px;
    }


    .lightbox-close {
        top: 10px;
        right: 10px;
    }

}

.clear-search {
    display: table;
    margin: 14px auto 0;
    padding: 7px 14px;

    font-size: 13px;
    font-weight: 600;
    color: #a1a1aa;

    text-decoration: none;

    background: #141417;
    border: 1px solid #2a2a30;
    border-radius: 999px;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.clear-search:hover {
    color: #ffffff;
    background: #1d1d22;
    border-color: #44444c;
}

@media (max-width: 1000px) {
    .people-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .people-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
}


.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    margin-top: 36px;
}

.pagination-link,
.pagination-disabled,
.pagination-current {
    font-size: 14px;
}

.pagination-link {
    padding: 9px 14px;

    color: #ffffff;
    background: #17171a;

    border: 1px solid #2b2b31;
    border-radius: 8px;

    text-decoration: none;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.pagination-link:hover {
    background: #222226;
    border-color: #46464f;
}

.pagination-current {
    color: #a1a1aa;
}

.pagination-disabled {
    padding: 9px 14px;
    color: #52525b;
}

@media (min-width: 1500px) {
    .photo-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .photo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .photo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.alphabet-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
    margin-top: 28px;
    margin-bottom: 45px;
}

.alphabet-filter a {
    min-width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 8px;

    color: #777780;
    background: #121215;
    border: 1px solid #242429;
    border-radius: 7px;

    font-size: 12px;
    font-weight: 600;
    text-decoration: none;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.alphabet-filter a:hover {
    color: #ffffff;
    background: #1a1a1e;
    border-color: #3a3a41;
}

.alphabet-filter a.active {
    color: #09090b;
    background: #ffffff;
    border-color: #ffffff;
}

.photo-toolbar {
    display: flex;
    align-items: center;
    gap: 18px;
}

.sort-links {
    display: flex;
    gap: 6px;
}

.sort-links a {
    padding: 7px 11px;

    color: #777780;
    background: #121215;
    border: 1px solid #242429;
    border-radius: 7px;

    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.sort-links a:hover {
    color: #ffffff;
    border-color: #3a3a41;
}

.sort-links a.active {
    color: #09090b;
    background: #ffffff;
    border-color: #ffffff;
}

@media (max-width: 600px) {
    .photo-toolbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}

.age-gate {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.age-gate-card {
    width: 100%;
    max-width: 520px;
    padding: 45px;
    text-align: center;
    background: #121215;
    border: 1px solid #242429;
    border-radius: 14px;
}

.age-gate-card h1 {
    margin: 10px 0 16px;
}

.age-gate-card p {
    color: #8d8d96;
    line-height: 1.6;
}

.age-confirm-button {
    width: 100%;
    margin-top: 25px;
    padding: 13px 20px;
    cursor: pointer;
    border: 0;
    border-radius: 8px;
    background: #ffffff;
    color: #09090b;
    font-weight: 700;
}

.age-leave-link {
    display: inline-block;
    margin-top: 18px;
    color: #777780;
    text-decoration: none;
}

.age-leave-link:hover {
    color: #ffffff;
}


.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 30px;
}

.legal-content h1 {
    margin-bottom: 24px;
}

.legal-content h2 {
    margin-top: 36px;
    margin-bottom: 12px;
    font-size: 20px;
}

.legal-content p {
    color: #8d8d96;
    line-height: 1.8;
}

.report-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

.report-form label {
    margin-top: 12px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}

.report-form input,
.report-form select,
.report-form textarea {
    width: 100%;
    padding: 12px 14px;

    color: #ffffff;
    background: #121215;

    border: 1px solid #2a2a30;
    border-radius: 8px;

    font: inherit;
}

.report-form textarea {
    resize: vertical;
}

.report-form input:focus,
.report-form select:focus,
.report-form textarea:focus {
    outline: none;
    border-color: #55555f;
}

.report-submit-button {
    margin-top: 18px;
    padding: 13px 20px;

    cursor: pointer;

    color: #09090b;
    background: #ffffff;

    border: 0;
    border-radius: 8px;

    font-weight: 700;
}

.report-success {
    margin-top: 24px;
    padding: 18px;

    color: #ffffff;
    background: #121215;

    border: 1px solid #2a2a30;
    border-radius: 8px;
}

.form-error {
    margin-top: 4px;
    color: #ff8f8f;
    font-size: 12px;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.error-card {
    width: 100%;
    max-width: 560px;
    padding: 55px 40px;
    text-align: center;
    background: #121215;
    border: 1px solid #242429;
    border-radius: 14px;
}

.error-code {
    margin-bottom: 12px;
    color: #777780;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
}

.error-card h1 {
    margin-bottom: 14px;
    font-size: 36px;
}

.error-card p {
    max-width: 430px;
    margin: 0 auto 28px;
    color: #8b8b94;
    line-height: 1.6;
}

.error-button {
    display: inline-block;
    padding: 11px 18px;
    color: #09090b;
    background: #ffffff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.person-galleries-section {
    max-width: 1320px;
    margin: 0 auto;
    padding: 35px 30px 20px;
}

.person-galleries-inner {
    width: 100%;
}

.person-galleries-section .section-heading {
    margin-bottom: 20px;
}

.person-galleries-section .section-label {
    margin: 0 0 8px;
    color: #686871;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.person-galleries-section h2 {
    margin: 0;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
}

.person-gallery-grid {
    display: grid;
    grid-template-columns: repeat(
        auto-fill,
        minmax(240px, 300px)
    );
    gap: 18px;
}

.person-gallery-card {
    display: block;
    overflow: hidden;
    color: inherit;
    background: #121215;
    border: 1px solid #242429;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.person-gallery-card:hover {
    transform: translateY(-2px);
    border-color: #3a3a41;
}

.person-gallery-cover,
.adult-gallery-cover {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #18181c;
}

.person-gallery-cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.person-gallery-info {
    padding: 14px;
}

.person-gallery-info h3 {
    margin: 0 0 6px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.person-gallery-info span {
    color: #777780;
    font-size: 12px;
}

.adult-gallery-cover {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(
        135deg,
        #17171b,
        #0d0d10
    );
}

.adult-gallery-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    height: 34px;
    padding: 0 10px;
    color: #ffffff;
    background: #25252b;
    border: 1px solid #3b3b42;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 800;
}

.adult-gallery-label {
    color: #8b8b94;
    font-size: 12px;
    font-weight: 600;
}

.gallery-cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777780;
    background: #18181c;
    font-size: 13px;
}

@media (max-width: 1000px) {
    .person-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .person-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .person-galleries-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .person-gallery-grid {
        grid-template-columns: 1fr;
    }
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    margin: 18px 0;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    opacity: 0.75;
    font-size: 0.9rem;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

