ul,
ol,
dl,
li {
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}

body {
    font-family: "Roboto", "Noto Sans KR", sans-serif;
    background-color: #fbf3ea;
}

a {
    color: inherit;
    text-decoration: none;
}

* {
    box-sizing: border-box;
}

.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

#header {
    display: flex;
    position: fixed;
    width: 100%;
    z-index: 2;
    border-color: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#header h1 {
    position: absolute;
    left: 100px;
    height: 100%;
    display: flex;
    align-items: center;
}

#header h1 img {
    width: 153px;
    height: 77px;
}

#header .logo-img {
    width: 180px;
    height: 90px;
}








/*서브메뉴바*/
/* GNB 전체 영역 */
#header #gnb {
    width: 100%;
}

/* GNB 메뉴 전체 */
#gnb ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    width: 100%;
}

/* 메뉴 아이템(li)에 높이와 정렬 지정 */
#gnb .menu-item {
    position: relative;
    margin: 0 20px;
    height: 120px;
    display: flex;
    align-items: center;
}

/* 상단 메뉴 a 태그 */
#gnb .menu-item > a {
    padding: 0 50px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    display: block;
    height: 100%;
    line-height: 120px; /* 수직 정렬 보정용 */
}

/* 서브메뉴 기본 숨김 */
/* 초기화 */
.submenu {
    display: none !important; /* 강제 숨김 */
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    min-width: 180px;
    z-index: 999;
    padding: 10px 0;
}

/* 서브메뉴 호버 시에만 표시 */
.menu-item:hover .submenu {
    display: block !important;
}

.arrayProfile{
    position: relative;
    right: 40px;
    display: flex;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}
.arraySubmenu{
    right: -40px !important;
}

/* 서브 메뉴 항목 스타일 */
.submenu li {
    width: 100%;
}

.submenu li a {
    padding: 10px 20px;
    display: block;
    color: #333;
    white-space: nowrap;
    text-decoration: none;
}

.submenu li a:hover {
    background-color: #facc7b;
    border-radius: 10px;
}














.profile {
    position: absolute;
    right: 120px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}

.profile .img img {
    width: 50px;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 100px;
}

.profile .userName {
    margin-top: 10px;
}

.profile i {
    font-size: 50px;
    color: #333;
}

.btn-primary {
    background-color: #f8a92b; /* 기본 색상 */
    border: none;
}

.btn-primary:hover {
    background-color: #cfa688; /* 호버 시 색상 */
    border: none;
}

footer {
    background-color: #f8a92b;
    color: #fff;
    font-size: 14px;
}

footer .row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.bg-box {
    position: relative;
    margin-top: 150px;
}

.bg-box:before {
    position: absolute;
    content: "";
    display: block;
    width: 70%;
    aspect-ratio: 1/1.25;
    border-radius: 30px;
    background-color: #f8a92b;
    z-index: -1;
}

.bg-box img {
    height: 400px;
    margin-top: 100px;
    margin-left: 100px;
}

.bg-box .slogan {
    font-weight: 100;
    margin: 50px 0 0 50px;
    color: #fff;
}

.bg-box .slogan .main {
    font-size: 48px;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.bg-box .slogan .main span:nth-child(2) {
    font-weight: 500;
}

.bg-box .slogan .sub {
    font-size: 20px;
    font-weight: 400;
}

h2.section-title {
    text-align: center;
}

.main-content {
    padding-top: 180px;
}

.main-visual {
    height: 800px;
    background: url("../images/hero-pic.png") no-repeat right 200px bottom 0;
}

.main-visual .slogan {
    font-weight: 100;
    position: absolute;
    left: 300px;
    top: 50%;
    transform: translateY(-50%);
}

.main-visual .slogan .main {
    font-size: 5vw;
}

.main-visual .slogan .main span:nth-child(3) {
    font-weight: 500;
}

.main-visual .slogan .sub {
    font-size: 2vw;
}

.search-box {
    margin: 50px 0;
    position: relative;
}

.search-box input {
    height: 80px;
    border-radius: 100px;
    border-top-right-radius: 100px;
    padding: 0 50px;
    font-size: 20px;
    font-weight: 500;
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 5px;
    height: calc(100% - 10px);
    background-color: #048daf;
    color: #fff;
    border-radius: 100px;
    font-size: 20px;
    font-weight: 500;
    padding: 0 50px;
    text-transform: uppercase;
}

.search-wrap {
    display: flex;
    align-items: center;
}

.search-wrap .tag ul {
    display: flex;
    font-size: 24px;
    gap: 15px;
    font-weight: 500;
}

.search-wrap .tag ul li.on {
    font-weight: 700;
    color: #f8a92b;
}

.search-wrap .search-box {
    margin-top: 0;
    width: 50%;
    margin-left: auto;
}

#profile-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 300px;
    height: 100vh;
    background-color: #f8a92b;
    padding: 2rem 1rem;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

#profile-header #profile {
    position: fixed;
    top: 30px;
    height: auto;
}

.tab .nav {
    display: flex;
    gap: 15px;
    font-size: 18px;
    font-weight: 500;
}

.tab .nav li.on {
    color: #f8a92b;
}

.tab .nav li a {
    display: block;
    padding: 15px;
}

.tab .content {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #666;
}

#admin-header {
    position: fixed;
    left: 20px;
    top: 20px;
    border-radius: 20px;
    width: 300px;
    height: calc(100vh - 40px);
    background-color: #f8a92b;
}

#admin-header h1 {
    padding: 50px 0;
    display: flex;
    justify-content: center;
}

#admin-header h1 img {
    width: 255px;
}

#admin-header #gnb {
    color: #fff;
}

#admin-header #gnb ul {
    padding: 0 20px;
    font-weight: 700;
    text-transform: capitalize;
    flex-direction: column;
}

#admin-header #gnb ul li {
    text-align: left;
}

#admin-header #gnb ul li.on {
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    color: #f8a92b;
}

#admin-header #gnb ul li a {
    display: flex;
    align-items: center;
    padding: 20px;
}

#admin-header #gnb ul li a .material-symbols-outlined {
    position: relative;
    margin-right: 10px;
}

.showreg-container {
    padding-top: 180px;
}

.showreg-btn-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

button.btn-action {
    border: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    transition: all 0.2s;
    margin-right: 0;
}

button.btn-submit {
    background: #f8a92b;
    color: white;
}

button.btn-submit:hover {
    background: #ffd591;
}

.form-group.text-center {
    margin-bottom: 30px;
}

.showdetail-container {
    padding-top: 180px;
    padding-bottom: 50px;
}

.company-container {
    padding-top: 180px;
    padding-bottom: 50px;
}

img.company-img {
    width: 500px;
    height: auto;
}


.company-content {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 48px;
    max-width: 1920px;
    margin: 0 auto;
    padding-left: 450px;
    padding-right: 60px;
    box-sizing: border-box;
}

.ceo-photo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ceo-message {
    flex: 1;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #333;
    padding-right: 24px;
}

.ceo-sign {
    font-size: 32px;
}

/* FAQ 전용 스타일: global.css에 추가해도 다른 페이지에 영향 없음 */
.faq-page * {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

.faq-page {
    width: 100%;
}

.faq-page .faq-header {
    width: 100%;
    text-align: center;
    font-family: "Inter-Bold", "Noto Sans KR", Helvetica, Arial, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #2d2d2d;
    letter-spacing: 2px;
}

h1.faq-header {
    padding-top: 180px;
    margin-bottom: 50px;
}

.faq-page .table {
    display: flex;
    flex-direction: column;
    width: 90vw;
    max-width: 900px;
    margin: 0 auto 80px auto;
    align-items: stretch;
    position: relative;
}

.faq-page .div {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.04);
    margin-bottom: 32px;
    transition: box-shadow 0.2s;
}

.faq-page .div:hover {
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.08);
}

.faq-page .row {
    display: flex;
    align-items: center;
    width: 100%;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-page .accordion-row:hover {
    background: #fffbe8 !important;
}

.faq-page .content-wrapper {
    width: 80px;
    background: #f8a92b60;
    border-right: 1px solid #f8a92b;
    align-items: center;
    justify-content: center;
}

.faq-page .cell {
    flex: 1;
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.faq-page .content {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px 20px;
    text-align: center;
}

.faq-page p.text {
    font-family: "Inter-SemiBold", "Noto Sans KR", Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #222;
    margin: 0;
    line-height: 1.5;
}

.faq-page .text {
    font-family: "Inter-SemiBold", "Noto Sans KR", Helvetica, Arial, sans-serif;
    font-weight: 600;
    color: #554b4b;
    font-size: 22px;
    align-items: center;
    text-align: center;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.faq-page .cell .text {
    color: #222;
    font-size: 20px;
    text-align: center;
    font-weight: 500;
    padding-left: 12px;
}

.faq-page .accordion-content {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f7f9fb;
    border-top: 1px solid #f8a92b30;
}

.faq-page .accordion-content.active {
    max-height: 800px;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-page .content-detail {
    padding: 28px 36px;
    font-family: "Inter-Regular", "Noto Sans KR", Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.7;
    background: #fff;
}

.faq-page .content-detail p {
    margin: 0 0 14px 0;
    font-size: 17px;
}

.faq-page .content-detail p:last-child {
    margin-bottom: 0;
}

.faq-page .content-detail strong {
    font-weight: 700;
    color: #f8a92b;
}

@media (max-width: 900px) {
    .faq-page .faq-header {
        font-size: 32px;
        margin: 40px 0 30px 0;
    }

    .faq-page .table {
        width: 98vw;
        max-width: 100vw;
    }

    .faq-page .content-wrapper {
        width: 48px;
    }

    .faq-page .text {
        font-size: 16px;
    }

    .faq-page .cell .text {
        font-size: 15px;
    }

    .faq-page .content-detail {
        padding: 18px 10px;
        font-size: 15px;
    }
}

.showdetail-card {
    display: flex;
    padding-left: 400px;
    justify-content: center;
    flex-direction: column;
    min-height: 100%;
}

section.showdetail-content {
    padding-top: 70px;
}

.youtube-thumbnail-box {
    display: flex;
    padding-top: 50px;
    gap: 50px;
}

.image-upload-section {
    display: flex;
    gap: 50px;
    padding-top: 50px;
}

p.image-media-label {
    font-size: 22px;
    font-weight: 800;
}

.upload-img-content {
    width: 100%;
    max-width: 480px; /* 원하는 최대 너비 */
    height: auto;
    border-radius: 12px;
    object-fit: cover; /* 필요 시 비율 유지하면서 잘라냄 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-top: 10px;
}

.youtube-thumbnail-link {
    display: inline-block;
    position: relative;
}
a#profile {
    padding-right: 30px;
}

button.btn.btn-logout {
    width: 120px;
    height: 100%;
}

.youtube-thumbnail-wrapper {
    position: relative;
    display: inline-block;
}

.youtube-thumbnail-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 12px;
    display: block;
}

.youtube-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none; /* 썸네일 전체가 클릭되게 함 */
    user-select: none;
    z-index: 2;
}

.play-icon-img {
    width: 80px; /* 원하는 크기로 조절 */
    height: 58px;
    opacity: 0.9;
}

.showdetail-actions {
    padding-top: 50px;
}
a#profile {
    padding-right: 30px;
}

button.btn.btn-logout {
    width: 120px;
    height: 100%;
}

.content-body-part {
    font-size: 22px;
}

a#profile {
    padding-right: 30px;
}

button.btn.btn-logout {
    width: 120px;
    height: 100%;
}
.content-body-part {
    width: 1000px;
}
a.btn-action.btn-edit {
    border: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    transition: all 0.2s;
    margin-right: 0;
    background: #ffc363;
}
button.btn-action.btn-like {
    width: 144.78px;
    height: 53px;
}

.comment-section {
    max-width: 800px;
    margin: 2rem auto;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}
button.btn-action.btn-comment {
    height: 53px;
}
.popular-section {
    padding-top: 180px;
    padding-bottom: 50px;
}

.all-posts-section {
    margin-bottom: 2rem;
}

.popular-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 2rem 0 3rem 0;
    flex-wrap: wrap;
}

.popular-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 330px;
    padding: 1.5rem 1rem 1.3rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.popular-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.popular-card-img {
    width: 300px;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1.1rem;
    background: #f7f7f7;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.popular-card-title {
    font-size: 1.08rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.popular-card-nickname {
    font-size: 0.97rem;
    color: #f8a92b;
    font-weight: 500;
}

.popular-card-like {
    margin-top: 0.5rem;
    color: #ed6262;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    font-size: 1.03rem;
}

.popular-card-like .material-symbols-outlined {
    font-size: 1.15rem;
}
@media (max-width: 800px) {
    .popular-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .popular-card {
        width: 90vw;
        max-width: 320px;
    }
}

.pagination-list {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.pagination-list ul {
    display: flex;
    list-style: none;
    justify-content: center;
    margin: 2rem 0;
    padding: 0;
}

.pagination-list li {
    margin: 0 0.3rem;
}

.pagination-list li.active a {
    font-weight: bold;
    color: #f8a92b;
    background: rgba(248, 169, 43, 0.1);
    border-radius: 5px;
}

.pagination-list a {
    text-decoration: none;
    color: #333;
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    transition: background 0.2s;
}

.pagination-list a:hover {
    background: #f8a92b22;
}

.table-responsive {
    overflow-x: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.showoff-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 1rem;
}

.showoff-table th {
    background: #f8f9fa;
    color: #333;
    font-weight: 600;
    text-align: center;
    padding: 1rem 0.5rem;
}

.showoff-table td {
    vertical-align: middle;
    text-align: center;
    padding: 0.9rem 0.5rem;
    border-bottom: 1px solid #eee;
}

.showoff-title-cell {
    text-align: center;
}

.showoff-title-cell .showoff-subject,
.showoff-title-cell .pet-name {
    display: block;
    text-align: center;
}

.showoff-subject {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.2rem;
}

.pet-name-list {
    font-size: 0.85rem;
    color: #666;
}

.member-nickname {
    font-size: 0.92rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
    display: inline-block;
}

.showoff-table tbody tr {
    cursor: pointer;
    transition: background-color 0.2s;
}

.showoff-table tbody tr:hover {
    background-color: #f8f9fa;
}

.pet-row:hover {
    background-color: #f8f9fa;
}
h2.section-title-list {
    padding-bottom: 50px;
    text-align: center;
}
h2.section-title-month {
    padding-bottom: 50px;
    text-align: center;
}
.d-flex.justify-content-end.gap-2
{
    justify-content: center !important;
    padding: 50px 50px;
}
.overlap-group {
    padding-top: 180px;
}
.best-hof-container {
    padding-top: 180px;
    padding-bottom: 80px;
    max-width: 1600px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}
.best-hof-arrow-icon {
    width: 50px;          /* 원하는 크기로 지정 */
    height: 50px;
    fill: #333;           /* 색상 */
    transition: transform 0.3s ease;
    pointer-events: none; /* 클릭 이벤트 통과 (원래 div에서 처리 중이므로) */
}

.best-hof-title-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    position: relative;
    padding-top: 50px;
}

.best-hof-month-selector {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.best-hof-month-box {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border: 2px solid #f8a92b;
    border-radius: 12px;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: space-between;
    margin-top: 50px;
}

.best-hof-month-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(248, 169, 43, 0.3);
}

.best-hof-month-text {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-right: 10px;
    padding-left: 15px;
}

.best-hof-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #333;
    transition: transform 0.3s ease;
}

.best-hof-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #f8a92b;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: 200px;
    overflow-y: auto;
}

.best-hof-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.best-hof-dropdown-item {
    padding: 12px 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    transition: all 0.2s ease;
    text-align: right;
    padding-right: 40px;
}
.best-hof-dropdown-item:hover {
    background: #f8a92b;
    color: white;
}

.best-hof-dropdown-item:first-child {
    border-radius: 10px 10px 0 0;
}

.best-hof-dropdown-item:last-child {
    border-radius: 0 0 10px 10px;
}

.best-hof-title {
    font-size: 48px;
    font-weight: 800;
    color: #333;
    margin: 0;
    text-align: center;
    letter-spacing: -1px;
}

.best-hof-cards-container {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 150px;
}

.best-hof-card {
    width: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: white;
}

.best-hof-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.best-hof-card-gold {
    border: 4px solid #ffd700;
}

.best-hof-card-gold .best-hof-card-content {
    background: linear-gradient(135deg, #fff9e6, #fffbf0);
}

.best-hof-card-silver {
    border: 4px solid #c8d6f5;
}

.best-hof-card-silver .best-hof-card-content {
    background: linear-gradient(135deg, #f8f8f8, #ffffff);
}

.best-hof-card-bronze {
    border: 4px solid #cd7f32;
}

.best-hof-card-bronze .best-hof-card-content {
    background: linear-gradient(135deg, #fff5e6, #fffaf5);
}

.best-hof-card-image {
    width: 100%;
    height: 340px;
    position: relative;
    overflow: hidden;
}

.best-hof-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.best-hof-card:hover .best-hof-card-image img {
    transform: scale(1.05);
}

.best-hof-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    color: #999;
    font-size: 48px;
}

.best-hof-card-content {
    padding: 20px;
    text-align: center;
}

.best-hof-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.best-hof-card-username {
    font-size: 16px;
    font-weight: 600;
    color: #f8a92b;
    margin-bottom: 12px;
    margin-top: 0;
}

.best-hof-card-likes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 600;
    color: #e74c3c;
}

.best-hof-rank-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.best-hof-card-gold .best-hof-rank-badge {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border: 3px solid #f8a92b;
}

.best-hof-card-silver .best-hof-rank-badge {
    background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
    border: 3px solid #999;
}

.best-hof-card-bronze .best-hof-rank-badge {
    background: linear-gradient(135deg, #cd7f32, #deb887);
    border: 3px solid #b8860b;
}

.best-hof-empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #666;
}

.best-hof-empty-icon {
    font-size: 80px;
    color: #ddd;
    margin-bottom: 30px;
}

.best-hof-empty-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.best-hof-empty-message {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.best-hof-empty-button {
    display: inline-block;
    background: #f8a92b;
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.best-hof-empty-button:hover {
    background: #e69a26;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(248, 169, 43, 0.3);
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .best-hof-container {
        padding-top: 140px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .best-hof-title-section {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
        padding-top: 50px;
    }

    .best-hof-month-selector {
        position: static;
        transform: none;
    }

    .best-hof-title {
        font-size: 36px;
    }

    .best-hof-cards-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .best-hof-card {
        width: 100%;
        max-width: 350px;
    }

    .best-hof-empty-state {
        padding: 60px 20px;
    }

    .best-hof-empty-icon {
        font-size: 60px;
    }

    .best-hof-empty-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .best-hof-title {
        font-size: 28px;
    }

    .best-hof-card {
        width: 100%;
        max-width: 280px;
    }

    .best-hof-card-image {
        height: 200px;
    }

    .best-hof-rank-badge {
        width: 40px;
        height: 40px;
        font-size: 20px;
        top: -8px;
        right: -8px;
    }

}

