.tournament-section.tour-6 {
    background-color: var(--BODY_BG);
    padding: 60px 0;
}

.tournament-section.tour-6 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.tournament-section.tour-6::before {
    content: 'Tournament';
    display: block;
    font-family: var(--SECONDARY_FONT_FAMILY);
    font-size: var(--HEADER_FONT_SIZE);
    font-weight: var(--MED_FONT_WEIGHT);
    color: var(--TXT_COLOR_1);
    margin-bottom: 30px;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.tour-filter-box- {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    list-style: none;
    padding: 0;
    background: var(--CARD_1_BG);
    border-radius: 10px;
}

.tour-filter-box- .filter-item- {
    flex: 1;
    padding: 16px 24px;
    background-color: var(--CARD_1_BG);
    color: var(--TXT_COLOR_1);
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--BODY_TXT_FONT_SIZE);
    font-weight: var(--REG_FONT_WEIGHT);
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tour-filter-box- .filter-item-:hover {
    background-color: var(--CARD_1_BG);
    transform: translateY(-2px);
}

.tour-filter-box- .filter-item-.active {
    background: var(--CARD_2_BG);
    border-color: transparent;
    color: var(--PRIMARY_BTN_COLOR);
    font-weight: var(--REG_FONT_WEIGHT);
}

/* 
   SECTION: Content Container
    */
.tour-content-box- .content-item- {
    display: none;
    margin-bottom: 50px;
}

.tour-content-box- .content-item-.show {
    display: block;
}

.tour-content-box- .content-item- > h3 {
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--BODY_TXT_FONT_SIZE);
    font-weight: var(--REG_FONT_WEIGHT);
    color: var(--TXT_COLOR_4);
    margin-bottom: 20px;
}

/* 
   SECTION: Tournament Cards Grid
    */
.tour-list- {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    grid-auto-rows: minmax(auto, max-content);
    align-items: stretch;
}

/* 
   SECTION: Tournament Card - Image Top, Content/Counter Below
    */
.tour-card- {
    display: flex;
    flex-direction: column;
    background-color: var(--CARD_1_BG);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    min-height: 0;
}

.tour-card-:hover {
    transform: translateY(-4px);
}

/* Card Image Section - Top Full Width */
.tour-card- .card-image- {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--CARD_2_BG);
}

.tour-card- .card-image- .img- {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CLO/CLOSED Badge - Top Right of Image */
.tour-card- .card-image- .end-tag- {
    position: absolute;
    top: 12px;
    right: 12px;
    height: auto;
    z-index: 3;
    color: var(--TXT_COLOR_1);
    background: var(--TXT_COLOR_2);
    padding: 8px 15px;
    border-radius: 5px;
}

/* Info Icon - Top Right of Image */
.tour-card- .card-content-::after { 
    content: '\f05a';
    font-family: var(--ICON_FONT_FAMILY);
    font-weight: 900;
    position: absolute;
    top: 20px;  
    right: 20px;  
    width: 28px;
    height: 28px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--TXT_COLOR_1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    z-index: 2;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.tour-card- .card-content-::after:hover {
    background-color: var(--PRIMARY_COLOR);
    transform: scale(1.1);
}

/* Bottom Section - Content Left + Counter Right */
.tour-card- .card-bottom- {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0;
    flex: 1;
}

/* Card Content Section - Bottom Left */
.tour-card- .card-content- {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: var(--CARD_1_BG);
    position: relative;
    height: 100%;
}

/* Status Badge in Content */
.tour-card- .card-content- .status-badge- {
    align-self: flex-start;
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--DEFAULT_FONT_SIZE);
    font-weight: var(--REG_FONT_WEIGHT);
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.tour-card- .card-content- .active-badge- {
    background-color: var(--ACTIVE_BTN_BG);
    color: var(--TXT_COLOR_1);
}

.tour-card- .card-content- .completed-badge- {
    background-color: var(--THIRD_BTN_BG);
    color: var(--TXT_COLOR_1);
}

.tour-card- .card-content- h3 {
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--SUBHEADER_FONT_SIZE);
    font-weight: var(--REG_FONT_WEIGHT);
    color: var(--TXT_COLOR_1);
    margin-bottom: 12px;
}

.tour-card- .card-content- .desc- {
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--SUBBODY_TXT_FONT_SIZE);
    font-weight: var(--LIGHT_FONT_WEIGHT);
    color: var(--TXT_COLOR_3);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.tour-card- .card-content- .desc- .date- {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--DEFAULT_FONT_SIZE);
    color: var(--TXT_COLOR_4);
    margin-bottom: 8px;
    font-weight: var(--LIGHT_FONT_WEIGHT);
}

.tour-card- .card-content- .desc- .date- i {
    font-size: var(--ICON_XSMALL_FONT_SIZE);
}

/* More Info Button in Content */
.tour-card- .card-content- .btn-more-info- {
    background: var(--PRIMARY_BTN_BG);
    color: var(--PRIMARY_BTN_COLOR);
    border: var(--SECONDARY_BTN_BORDER);
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--SUBBODY_TXT_FONT_SIZE);
    font-weight: var(--REG_FONT_WEIGHT);
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.tour-card- .card-content- .btn-more-info-:hover {
    filter: var(--SECONDARY_BTN_HOVER_FILTER_BG);
}

/* Card Action Section - Bottom Right (Counter) */
.tour-card- .card-action- {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-width: 300px;
    height: 100%;
}

.tour-card- .card-action- .counter-box- {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: var(--CARD_2_BG);
    border-radius: 10px;
    padding: 45px 20px;
    height: 100%;
}

.tour-card- .card-action- .counter-box- .lbl- {
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--SUBBODY_TXT_FONT_SIZE);
    font-weight: var(--REG_FONT_WEIGHT);
    color: var(--TXT_COLOR_3);
    font-style: italic;
    margin-bottom: 12px;
    text-align: center;
}

.tour-card- .card-action- .counter-box- .counter- {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    width: 100%;
}

.tour-card- .card-action- .counter-box- .counter-block- {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.tour-card- .card-action- .counter-box- .counter-block- .num- {
    background-color: var(--THIRD_BTN_COLOR);
    border-radius: 6px;
    padding: 14px;
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--HEADER_FONT_SIZE);
    font-weight: var(--REG_FONT_WEIGHT);
    color: var(--TXT_COLOR_2);
    line-height: 1;
    min-width: 60px;
    text-align: center;
}

.tour-card- .card-action- .counter-box- .counter-block- > div:last-child {
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--SUBBODY_TXT_FONT_SIZE);
    font-weight: var(--LIGHT_FONT_WEIGHT);
    color: var(--TXT_COLOR_3);
    line-height: 1;
}

/* 
   SECTION: Tournament Details Page
    */
.tour-wrap-[data-tourwrap="details"] {
    padding-top: 0;
}

/* Back Button */
.btn-back-tour-list {
    background: transparent;
    border: none;
    color: var(--TXT_COLOR_1);
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--BODY_TXT_FONT_SIZE);
    font-weight: var(--REG_FONT_WEIGHT);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    margin-bottom: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.btn-back-tour-list:hover {
    background-color: var(--CARD_2_BG);
    padding-left: 16px;
}

.btn-back-tour-list i {
    font-size: var(--ICON_SMALL_FONT_SIZE);
}

/* Tournament Details Container */
.tour-details- {
    display: none;
}

.tour-details-.show {
    display: block;
}

/* Details Card - Vertical Layout */
.tour-details- .tour-card- {
    max-width: 600px;
    margin-bottom: 30px;
}

/* Content Blocks */
.tour-content-block- {
    background-color: transparent;
    border-radius: 0;
    padding: 30px 0;
    margin-bottom: 0;
    border-top: 1px solid var(--CARD_2_BG);
}

.tour-content-block-:first-of-type {
    border-top: none;
    padding-top: 0;
}

/* How to Play Section */
.tour-content-block-.tour-full-content- {
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--BODY_TXT_FONT_SIZE);
    font-weight: var(--REG_FONT_WEIGHT);
    color: var(--TXT_COLOR_3);
    line-height: 1.8;
}

.tour-content-block-.tour-full-content- h4,
.tour-content-block-.tour-full-content- h3 {
    color: var(--TXT_COLOR_1);
    font-size: var(--HEADER_FONT_SIZE);
    font-weight: var(--SEMIBOLD_FONT_WEIGHT);
    margin-bottom: 16px;
    margin-top: 24px;
}

.tour-content-block-.tour-full-content- h4:first-child,
.tour-content-block-.tour-full-content- h3:first-child {
    margin-top: 0;
}

.tour-content-block-.tour-full-content- ul,
.tour-content-block-.tour-full-content- ol {
    margin-left: 20px;
    margin-bottom: 16px;
}

.tour-content-block-.tour-full-content- li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.tour-content-block-.tour-full-content- p {
    margin-bottom: 12px;
}

/* 
   SECTION: Ranking List
    */
.tour-content-block-.tour-ranking-list- .lbl- {
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--HEADER_FONT_SIZE);
    font-weight: var(--SEMIBOLD_FONT_WEIGHT);
    color: var(--TXT_COLOR_1);
    margin-bottom: 24px;
}

/* Top Winner Card - Single Card */
.tour-ranking-list- .top-rank-list- {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.tour-ranking-list- .top-rank-list- .rank-item- {
    display: flex;
    align-items: center;
    flex-direction: column;
    background: linear-gradient(135deg, var(--PRIMARY_COLOR) 0%, var(--SECONDARY_COLOR) 100%);
    padding: 30px;
    border-radius: 12px;
    max-width: 280px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 82, 227, 0.3);
}

.tour-ranking-list- .top-rank-list- .rank-item- .img- {
    max-width: 100px;
    margin: 0 0 20px;
}

.tour-ranking-list- .top-rank-list- .rank-item- .img- img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.tour-ranking-list- .top-rank-list- .rank-item- .name- {
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--SECTION_HEADER_FONT_SIZE);
    font-weight: var(--SEMIBOLD_FONT_WEIGHT);
    color: var(--TXT_COLOR_1);
    margin-bottom: 8px;
}

.tour-ranking-list- .top-rank-list- .rank-item- .amt- {
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--SECTION_HEADER_LARGE_FONT_SIZE);
    font-weight: var(--BOLD_FONT_WEIGHT);
    color: var(--TXT_COLOR_1);
}

/* Regular Rankings (2+) */
.tour-ranking-list- .rank-list- {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 8px;
}

/* Custom Scrollbar */
.tour-ranking-list- .rank-list-::-webkit-scrollbar {
    width: 8px;
}

.tour-ranking-list- .rank-list-::-webkit-scrollbar-track {
    background: var(--SCROLLBAR_BG);
    border-radius: 4px;
}

.tour-ranking-list- .rank-list-::-webkit-scrollbar-thumb {
    background: var(--SCROLLBAR_COLOR);
    border-radius: 4px;
}

.tour-ranking-list- .rank-list- .rank-item- {
    display: grid;
    grid-template-columns: 60px 1fr 150px;
    gap: 16px;
    align-items: center;
    padding: 16px 20px;
    background-color: var(--CARD_2_BG);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tour-ranking-list- .rank-list- .rank-item-:hover {
    background-color: var(--CARD_1_BG);
    transform: translateX(4px);
}

.tour-ranking-list- .rank-list- .rank-item- > div:nth-child(1) {
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--SECTION_HEADER_FONT_SIZE);
    font-weight: var(--BOLD_FONT_WEIGHT);
    color: var(--TXT_COLOR_1);
    text-align: center;
}

.tour-ranking-list- .rank-list- .rank-item- > div:nth-child(2) {
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--BODY_TXT_FONT_SIZE);
    font-weight: var(--REG_FONT_WEIGHT);
    color: var(--TXT_COLOR_3);
}

.tour-ranking-list- .rank-list- .rank-item- > div:nth-child(3) {
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--BODY_TXT_FONT_SIZE);
    font-weight: var(--SEMIBOLD_FONT_WEIGHT);
    color: var(--TXT_COLOR_1);
    text-align: right;
}

/* 
   SECTION: Utility Classes
    */
.d-none {
    display: none !important;
}

.p-relative {
    position: relative;
}

.pt-5 {
    padding-top: 60px;
}

.pb-5 {
    padding-bottom: 60px;
}

/* 
   SECTION: Animations
    */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* 
   SECTION: Expandable Tournament Details (In-Card)
    */
.tour-card- .tour-details-content- {
    display: block;
    width: 100%;
    border-top: 1px solid var(--CARD_2_BG);
    background-color: var(--CARD_1_BG);
    overflow: hidden;
    flex-shrink: 0;
}

.tour-card- .tour-details-content-.show {
    /* Class used for state tracking, animation handled by jQuery */
}

/* Details Content Blocks */
.tour-details-content- .tour-content-block- {
    padding: 20px;
    background-color: var(--CARD_1_BG);
}

.tour-details-content- .tour-content-block- + .tour-content-block- {
    border-top: 1px solid var(--CARD_2_BG);
}

/* How to Play Section */
.tour-details-content- .tour-full-content- h4 {
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--HEADER_FONT_SIZE);
    font-weight: var(--SEMIBOLD_FONT_WEIGHT);
    color: var(--TXT_COLOR_1);
    margin-bottom: 16px;
}

.tour-details-content- .tour-full-content- {
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--BODY_TXT_FONT_SIZE);
    font-weight: var(--REG_FONT_WEIGHT);
    color: var(--TXT_COLOR_3);
    line-height: 1.8;
}

.tour-details-content- .tour-full-content- ul,
.tour-details-content- .tour-full-content- ol {
    margin-left: 20px;
    margin-bottom: 16px;
}

.tour-details-content- .tour-full-content- li {
    margin-bottom: 8px;
}

/* Ranking List Section */
.tour-details-content- .tour-ranking-list- .lbl- {
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--HEADER_FONT_SIZE);
    font-weight: var(--SEMIBOLD_FONT_WEIGHT);
    color: var(--TXT_COLOR_1);
    margin-bottom: 24px;
}

/* Top Rank Display */
.tour-details-content- .tour-ranking-list- .top-rank-list- {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.tour-details-content- .tour-ranking-list- .top-rank-list- .rank-item- {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--PRIMARY_COLOR) 0%, var(--SECONDARY_COLOR) 100%);
    padding: 30px;
    border-radius: 12px;
    max-width: 280px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 82, 227, 0.3);
}

.tour-details-content- .tour-ranking-list- .top-rank-list- .rank-item- .img- {
    max-width: 100px;
    margin-bottom: 20px;
}

.tour-details-content- .tour-ranking-list- .top-rank-list- .rank-item- .img- img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.tour-details-content- .tour-ranking-list- .top-rank-list- .rank-item- .name- {
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--SECTION_HEADER_FONT_SIZE);
    font-weight: var(--SEMIBOLD_FONT_WEIGHT);
    color: var(--TXT_COLOR_1);
    margin-bottom: 8px;
}

.tour-details-content- .tour-ranking-list- .top-rank-list- .rank-item- .amt- {
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--SECTION_HEADER_LARGE_FONT_SIZE);
    font-weight: var(--BOLD_FONT_WEIGHT);
    color: var(--TXT_COLOR_1);
}

/* Regular Rankings */
.tour-details-content- .tour-ranking-list- .rank-list- {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;
}

.tour-details-content- .tour-ranking-list- .rank-list-::-webkit-scrollbar {
    width: 8px;
}

.tour-details-content- .tour-ranking-list- .rank-list-::-webkit-scrollbar-track {
    background: var(--SCROLLBAR_BG);
    border-radius: 4px;
}

.tour-details-content- .tour-ranking-list- .rank-list-::-webkit-scrollbar-thumb {
    background: var(--SCROLLBAR_COLOR);
    border-radius: 4px;
}

.tour-details-content- .tour-ranking-list- .rank-list- .rank-item- {
    display: grid;
    grid-template-columns: 60px 1fr 150px;
    gap: 16px;
    align-items: center;
    padding: 16px 20px;
    background-color: var(--CARD_2_BG);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tour-details-content- .tour-ranking-list- .rank-list- .rank-item-:hover {
    background-color: var(--INPUT_BG);
    transform: translateX(4px);
}

.tour-details-content- .tour-ranking-list- .rank-list- .rank-item- > div:nth-child(1) {
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--SECTION_HEADER_FONT_SIZE);
    font-weight: var(--BOLD_FONT_WEIGHT);
    color: var(--TXT_COLOR_1);
    text-align: center;
}

.tour-details-content- .tour-ranking-list- .rank-list- .rank-item- > div:nth-child(2) {
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--BODY_TXT_FONT_SIZE);
    font-weight: var(--REG_FONT_WEIGHT);
    color: var(--TXT_COLOR_3);
}

.tour-details-content- .tour-ranking-list- .rank-list- .rank-item- > div:nth-child(3) {
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--BODY_TXT_FONT_SIZE);
    font-weight: var(--SEMIBOLD_FONT_WEIGHT);
    color: var(--TXT_COLOR_1);
    text-align: right;
}

/* Button transition */
.tour-card- .btn-more-info- {
    transition: all 0.3s ease;
}

/* 
   SECTION: Tournament Details View - Separate Page
    */

/* Remove ::before title for details view */
.tournament-section.tour-6.tour-details-view-::before {
    display: none;
}

/* View Toggle */
.tour-view-.d-none {
    display: none !important;
}

/* Details Header with Back Button */
.tour-details-header- {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.tour-details-header- .btn-back- {
    width: 44px;
    height: 44px;
    border-radius: 20%;
    background-color: var(--CARD_2_BG);
    border: none;
    color: var(--TXT_COLOR_1);
    font-size: var(--ICON_SMALL_FONT_SIZE);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tour-details-header- .btn-back-:hover {
   background: var(--CARD_2_BG);
}

.tour-details-header- h2 {
    font-family: var(--SECONDARY_FONT_FAMILY);
    font-size: var(--HEADER_FONT_SIZE);
    font-weight: var(--MED_FONT_WEIGHT);
    color: var(--TXT_COLOR_1);
    margin: 0;
}

/* Details Body - 2 Column Layout */
.tour-details-body- {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

/* Left Column */
.tour-details-body- .details-left-col- {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Card in Details View */
.tour-details-body- .details-card- .tour-card- {
    width: 100%;
}

/* Hide More Info button in details */
.tour-details-body- .tour-card- .btn-more-info- {
    display: none;
}

/* How to Play Card */
.tour-details-body- .how-to-play-card- {
    background-color: var(--CARD_1_BG);
    border-radius: 12px;
    padding: 24px;
}

.tour-details-body- .how-to-play-card- h4 {
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--SUBHEADER_FONT_SIZE);
    font-weight: var(--REG_FONT_WEIGHT);
    color: var(--TXT_COLOR_1);
    margin-bottom: 16px;
}

.tour-details-body- .how-to-play-card- .how-to-play-content- {
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--BODY_TXT_FONT_SIZE);
    font-weight: var(--REG_FONT_WEIGHT);
    color: var(--TXT_COLOR_3);
    line-height: 1.8;
}

.tour-details-body- .how-to-play-card- .how-to-play-content- ul,
.tour-details-body- .how-to-play-card- .how-to-play-content- ol {
    margin-left: 20px;
    margin-bottom: 16px;
}

.tour-details-body- .how-to-play-card- .how-to-play-content- li {
    margin-bottom: 8px;
}

/* Right Column - Ranking Card */
.tour-details-body- .details-right-col- {
    position: sticky;
    top: 20px;
}

.tour-details-body- .ranking-card- {
    background-color: var(--CARD_1_BG);
    border-radius: 10px;
    padding: 24px;
}

.tour-details-body- .ranking-card- .ranking-title- {
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--SUBHEADER_FONT_SIZE);
    font-weight: var(--REG_FONT_WEIGHT);
    color: var(--TXT_COLOR_1);
    text-align: center;
    margin-bottom: 20px;
}

.tour-details-body- .ranking-card- .rank-table- {
    width: 100%;
}

.tour-details-body- .ranking-card- .rank-header- {
    display: grid;
    grid-template-columns: 80px 1fr 120px;
    gap: 16px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--CARD_2_BG);
}

.tour-details-body- .ranking-card- .rank-header- .rank-col- {
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--SUBBODY_TXT_FONT_SIZE);
    font-weight: var(--REG_FONT_WEIGHT);
    color: var(--TXT_COLOR_4);
}

.tour-details-body- .ranking-card- .rank-header- .rank-position- {
    text-align: center;
}

.tour-details-body- .ranking-card- .rank-header- .rank-amount- {
    text-align: right;
}

.tour-details-body- .ranking-card- .rank-body- {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 600px;
    overflow-y: auto;
    padding: 8px 0;
}

.tour-details-body- .ranking-card- .rank-body-::-webkit-scrollbar {
    width: 6px;
}

.tour-details-body- .ranking-card- .rank-body-::-webkit-scrollbar-track {
    background: var(--SCROLLBAR_BG);
    border-radius: 3px;
}

.tour-details-body- .ranking-card- .rank-body-::-webkit-scrollbar-thumb {
    background: var(--SCROLLBAR_COLOR);
    border-radius: 3px;
}

.tour-details-body- .ranking-card- .rank-row- {
    display: grid;
    grid-template-columns: 80px 1fr 120px;
    gap: 16px;
    padding: 12px 16px;
    align-items: center;
    border-radius: 8px;
}

.tour-details-body- .ranking-card- .rank-row- .rank-position- {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-details-body- .ranking-card- .rank-row- .rank-medal- {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.tour-details-body- .ranking-card- .rank-row- .rank-num- {
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--BODY_TXT_FONT_SIZE);
    font-weight: var(--SEMIBOLD_FONT_WEIGHT);
    color: var(--TXT_COLOR_1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--CARD_2_BG);
    border-radius: 50%;
}

.tour-details-body- .ranking-card- .rank-row- .rank-username- {
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--BODY_TXT_FONT_SIZE);
    color: var(--TXT_COLOR_1);
}

.tour-details-body- .ranking-card- .rank-row- .rank-amount- {
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--BODY_TXT_FONT_SIZE);
    font-weight: var(--SEMIBOLD_FONT_WEIGHT);
    color: var(--TXT_COLOR_1);
    text-align: right;
}

/* Rank Row Colors */
.tour-details-body- .ranking-card- .rank-row-.rank-gold- {
    background: linear-gradient(90deg, #C9A227 0%, #F4D03F 50%, #C9A227 100%);
}

.tour-details-body- .ranking-card- .rank-row-.rank-gold- .rank-username-,
.tour-details-body- .ranking-card- .rank-row-.rank-gold- .rank-amount- {
    color: var(--TXT_COLOR_2);
}

.tour-details-body- .ranking-card- .rank-row-.rank-silver- {
    background: linear-gradient(90deg, #8E9AAF 0%, #CBD5E1 50%, #8E9AAF 100%);
}

.tour-details-body- .ranking-card- .rank-row-.rank-silver- .rank-username-,
.tour-details-body- .ranking-card- .rank-row-.rank-silver- .rank-amount- {
    color: var(--TXT_COLOR_2);
}

.tour-details-body- .ranking-card- .rank-row-.rank-bronze- {
    background: linear-gradient(90deg, #B87333 0%, #CD7F32 50%, #B87333 100%);
}

.tour-details-body- .ranking-card- .rank-row-.rank-bronze- .rank-username-,
.tour-details-body- .ranking-card- .rank-row-.rank-bronze- .rank-amount- {
    color: var(--TXT_COLOR_2);
}

.tour-details-body- .ranking-card- .rank-row-.rank-normal- {
    background-color: var(--CARD_2_BG);
}

.tour-details-body- .ranking-card- .no-ranking- {
    font-family: var(--PRIMARY_FONT_FAMILY);
    font-size: var(--BODY_TXT_FONT_SIZE);
    color: var(--TXT_COLOR_4);
    text-align: center;
    padding: 40px 20px;
}
