#game {
    color: white;
}

#game #card-container {
    width: 250px;
}

#game #game-card {
    position: sticky;
    top: 100px;
    background: rgb(22, 22, 22);
    background: linear-gradient(180deg, rgba(22, 22, 22, 1) 0%, rgba(20, 89, 192, 1) 66%);
    border-radius: var(--border-radius-size);
    box-shadow: 0 0 6px rgba(22, 22, 22, 1);
    user-select: none;
}

#game .game-background {
    background-position-y: 0;
    background-size: cover;
    /* background-position: center; */
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: var(--border-radius-size);
    filter: brightness(0.5) drop-shadow(0px 4px 6px #00000040) opacity(0.8);
}

#game .game-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #126cf2;
    border-radius: var(--border-radius-size);
    padding-block: 20px;
    min-height: 120px;
}

#game .game-logo {
    position: relative;
    max-height: 100px;
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

#game .category {
    background-color: rgba(25, 25, 25, 0.5);
    border-radius: var(--border-radius-size);
    padding: 10px 14px;
    cursor: pointer;
    position: relative;
    transition: all ease 0.2s;
    font-size: 0.8em;
    color: white;
}

#game .category.active {
    background-color: rgba(25, 25, 25, 0.8);
}

#game .category.active:hover {
    background-color: rgba(25, 25, 25, 1);
}

#game .category:hover {
    background-color: rgba(26, 25, 25, 0.7);
    transform: translateX(2px);
}

#game #game-row {
    font-size: 0.8em;
    width: calc(100% - 250px);
    padding-left: 20px;
}

#game #game-row .breadcrumb {
    --bs-breadcrumb-divider: "›";
    --bs-breadcrumb-divider-color: gray;
    --bs-breadcrumb-item-active-color: white;
}

#game #game-row .breadcrumb a {
    color: gray;
}

#game #game-row .breadcrumb .breadcrumb-item:hover,
#game #game-row .breadcrumb .breadcrumb-item:hover a {
    color: white;
}

#game .current-caption .caption-icon {
    width: 65px;
    height: 60px;
    background: #161616;
    border-radius: 50%;
    overflow: hidden;
}

#game .current-caption .caption-icon img {
    width: 100%;
}

#game .boost-content .boost-option.boost-card .option-item {
    position: relative;
    background-color: #161616;
    border-radius: var(--border-radius-size);
    border-bottom: 1px solid #d8d8d8;
    width: 232px;
    cursor: pointer;
    user-select: none;
    transition: all ease 0.4s;
    overflow: hidden;
}

#game .boost-content .boost-option.boost-card .option-item:hover {
    background-color: #126cf2;
}

#game .boost-content .boost-option.boost-card .option-item img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    filter: saturate(0.5) drop-shadow(0 0 6px #1256be73);
    transition: transform ease 0.2s;
    pointer-events: none;
    margin-top: 20px;
}

#game .boost-content .boost-option.boost-card .option-item:hover img {
    transform: translateY(5px);
}

#game .boost-content .boost-option.boost-card .option-item span {
    position: relative;
    font-weight: bold;
    margin-top: 20px;
    transition: transform ease 0.5s;
    display: block;
    text-align: center;
    color: #d8d8d8;
    padding: 10px 0;
}

#game .boost-content .boost-option.boost-card .option-item:hover span {
    transform: scale(1.1);
    color: white;
}

#game .boost-content .boost-option.boost-list .option-item {
    cursor: pointer;
    color: #d8d8d8;
    padding: 10px 18px;
    border-radius: var(--border-radius-size);
    font-weight: 600;
}

#game .boost-content .boost-option.boost-list .option-item:hover {
    background-color: #1459c0bd;
    color: white;
}

#game .boost-content .boost-option.boost-list .option-item.active {
    background-color: #1459c0;
    color: white;
}

#game .desc-content .zone {
    position: relative;
    color: #d8d8d8;
    font-size: 0.95em;
}

#game .container {
    margin: 0;
    padding: 20px;
    background-color: #161616;
    border-radius: var(--border-radius-size);
    box-shadow: 0 0 6px #161616;
}

#game .container .header-icon {
    background: #101010;
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 0 10px #00000080;
}

#game .order-container .part-area {
    width: fit-content;
    padding: 4px;
    border-radius: var(--border-radius-size);
    background: #1e1e1e;
}

#game .order-container .part-area .title {
    display: flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: var(--border-radius-size);
    font-size: 1em;
    position: relative;
    color: #d8d8d8;
    width: 100px;
    text-align: left;
}

#game .order-container .ui.dropdown {
    padding-left: 6px !important;
    margin-top: 4px;
}

#game .order-container .ui.dropdown,
#game .order-container .ui.dropdown .menu {
    background-color: #282828 !important;
    border: none !important;
    color: #d8d8d8 !important;
    min-width: 150px;
    min-height: unset;
}

#game .order-container .ui.dropdown .menu>.item {
    background-color: #19191a !important;
    border: none !important;
    color: #d8d8d8 !important;
    font-size: inherit;
}

#game .order-container .ui.dropdown .menu .selected.item,
.ui.dropdown.selected {
    background-color: #1459c0 !important;
}

#game .order-container .ui.selection.visible.dropdown>.text:not(.default) {
    color: #d8d8d8 !important;
    font-size: inherit;
}

#game .checkout-bar {
    background: #101010;
    padding: 10px 0;
    border-radius: 4px;
}

#game .checkout-league img {
    width: 24px;
    margin-right: 4px;
}

#game .checkout-playertype {
    background: #101010;
    padding: 6px 4px;
    border-radius: 4px;
    margin-top: 6px;
    display: flex;
    justify-content: space-between;
}

#game .checkout-playertype label.btn {
    width: 50%;
}

#game .checkout-playertype .btn {
    border: none;
    color: #4e4e4e;
}

#game .checkout-playertype .btn-check:checked+.btn,
#game .checkout-playertype .btn.active,
#game .checkout-playertype .btn.show,
#game .checkout-playertype .btn:first-child:active,
#game .checkout-playertype:not(.btn-check)+.btn:active {
    background: #161616;
    color: #d8d8d8;
    border: none;
}

#game .old-price {
    position: relative;
    display: block;
    width: min-content;
    color: rgb(226, 83, 83);
}

#game .old-price::before {
    position: absolute;
    content: "";
    left: 0;
    top: 45%;
    right: 0;
    border-top: 1px solid;
    border-color: inherit;
    transform: skewY(-10deg);
}

#game .boosting-swiper .prev,
#game .boosting-swiper .next {
    border-radius: var(--border-radius-size);
    padding: 10px 15px;
    cursor: pointer;
}

#game .boosting-swiper .prev:hover,
#game .boosting-swiper .next:hover {
    background-color: #161616;
}

#game .coaching-banner {
    position: relative;
    background-color: #161616;
    border-radius: var(--border-radius-size);
    background-image: url(/assets/images/coaching.png);
    background-position: top right;
    background-size: cover;
    background-repeat: no-repeat;
}

#game .coaching-banner .filter {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(340deg, #0e152a9e 80%, #00000000 150%);
    top: 0;
    left: 0;
    box-shadow: 0 0 20px #1c1c20;
    backdrop-filter: saturate(0.5);
}

#game .coach-content .option-item {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 220px;
}

#game .coach-content .option-item img.picture {
    object-fit: cover;
    border-radius: 4px;
    border-top: 2px solid;
}

#game .coach-content .option-item .languages {
    position: absolute;
    top: 20px;
    left: 20px;
}

#game .coach-content .option-item .languages img.language {
    width: 20px;
    height: 20px;
}

#game .coach-tick ul {
    display: flex;
    list-style: none;
    gap: 10px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

#game .coach-tick ul li {
    width: fit-content;
    background-color: rgb(30, 30, 30);
    padding: 10px 15px;
    border-radius: var(--border-radius-size);
    font-size: 0.9em;
}

#game .coach-tick ul li:before {
    content: "✓";
    margin-right: 8px;
}

#game .checkout-tick ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#game .checkout-tick ul li {
    width: fit-content;
    border-radius: var(--border-radius-size);
    font-size: 0.95em;
    color: gray;
}

#game .checkout-tick ul li:before {
    content: "✓";
    margin-right: 6px;
    background-color: rgb(187, 187, 187);
    border-radius: 50%;
    padding: 1px 4px 1px 3px;
    font-size: 0.7em;
    color: #161616;
    font-weight: bolder;
}

@media (max-width: 1200px) {
    #game-card {
        margin: 20px 0;
    }
}

@media (max-width: 992px) {

    #game #card-container,
    #game #game-row {
        width: 100%;
    }

    #game #game-row {
        padding-left: unset;
    }
}

@media (max-width: 768px) {
    #game .boost-content .boost-option.boost-card .option-item {
        width: 100%;
    }
}

/* Glass Effect for Current Rank and Desired Rank Sections - Header Dropdown Style */
[current-rank-component],
[desired-rank-component] {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.18) 0%, 
        rgba(255, 255, 255, 0.08) 50%, 
        rgba(0, 0, 0, 0.15) 100%) !important;
    backdrop-filter: blur(25px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 16px !important;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
    padding: 20px !important;
    position: relative !important;
}

[current-rank-component]:hover,
[desired-rank-component]:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 255, 255, 0.12) 50%, 
        rgba(0, 0, 0, 0.2) 100%) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-2px) !important;
}

/* Remove default background from parent cards */
.bg-theme-3:has([current-rank-component]),
.bg-theme-3:has([desired-rank-component]) {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.bg-theme-3:has([current-rank-component]) .card-body,
.bg-theme-3:has([desired-rank-component]) .card-body {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* Ensure radio items maintain their functionality but remove backgrounds */
[current-rank-component] .radio-item,
[desired-rank-component] .radio-item {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
}

[current-rank-component] .radio-item:hover,
[desired-rank-component] .radio-item:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.02) !important;
}

[current-rank-component] .radio-item:has(input:checked),
[desired-rank-component] .radio-item:has(input:checked) {
    background: rgba(18, 108, 242, 0.3) !important;
    border-color: #126cf2 !important;
    box-shadow: 0 0 15px rgba(18, 108, 242, 0.4) !important;
}

/* Glass Effect for Q&A Cards and Other Cards */
.glass-effect-qa,
.bg-theme-3.card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(0, 0, 0, 0.1) 100%) !important;
    backdrop-filter: blur(25px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 16px !important;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
}

.glass-effect-qa:hover,
.bg-theme-3.card:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.08) 50%, 
        rgba(0, 0, 0, 0.15) 100%) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-2px) !important;
}

/* Q&A Specific Styles */
.qa-question {
    cursor: pointer;
    padding: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
}

.qa-question:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 255, 255, 0.08) 50%, 
        rgba(0, 0, 0, 0.15) 100%) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.qa-icon {
    transition: transform 0.3s ease !important;
}

.qa-question[aria-expanded="true"] .qa-icon {
    transform: rotate(180deg) !important;
}

.qa-answer {
    background: rgba(255, 255, 255, 0.02) !important;
    border-radius: 0 0 12px 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-top: none !important;
    transition: all 0.3s ease !important;
}

.qa-answer.show {
    animation: fadeInUp 0.3s ease !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.qa-answer p {
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6 !important;
}

/* Game Links Card Glass Effect */
.bg-theme-2.card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.03) 50%, 
        rgba(0, 0, 0, 0.08) 100%) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.bg-theme-2.card:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(0, 0, 0, 0.1) 100%) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

/* Enhanced glass effect for Q&A questions */
.glass-effect-question {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.03) 50%, 
        rgba(0, 0, 0, 0.08) 100%) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Q&A container spacing */
.qa-container .qa-item:last-child {
    margin-bottom: 0 !important;
}

/* Game Links - Separate Box Styles */
.game-links {
    display: flex;
    align-items: center;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    justify-content: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-bottom: 40px;
    padding: 0 20px 0 200px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    min-height: 60px;
    position: relative;
    transform: translateY(-15px);
}

.game-links::-webkit-scrollbar {
    display: none;
}

div.game-links a.link-1 {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 20px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(25px) !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    text-decoration: none !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    position: relative !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    min-width: max-content !important;
    min-height: 48px !important;
}

/* Icon styles for game links */
div.game-links a.link-1 i {
    font-size: 16px !important;
    opacity: 0.8 !important;
    transition: all 0.3s ease !important;
}

.game-links .link-1:hover i {
    opacity: 1;
}

.game-links .link-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.game-links .link-1:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.game-links .link-1:hover i {
    opacity: 1;
    transform: scale(1.05);
}

/* Active category hover effects */
.game-links .link-1.active:hover {
    background: linear-gradient(135deg, 
        rgba(255, 46, 76, 0.35) 0%, 
        rgba(30, 42, 120, 0.35) 50%, 
        rgba(255, 46, 76, 0.25) 100%);
    border: 2px solid rgba(255, 46, 76, 0.8);
    transform: translateY(-3px) scale(1.08);
    box-shadow: 
        0 12px 35px rgba(255, 46, 76, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    
    /* Override global .link-1.active gradient text on hover */
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-image: none !important;
    color: #ffffff !important;
}

.game-links .link-1.active:hover i {
    transform: scale(1.15);
    color: #ffffff !important;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 1px 2px rgba(255, 46, 76, 0.6),
        0 0 10px rgba(255, 46, 76, 0.4);
}

.game-links .link-1.active:hover .text {
    color: #ffffff !important;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 1px 2px rgba(255, 46, 76, 0.6),
        0 0 10px rgba(255, 46, 76, 0.4);
}

.game-links .link-1.active:hover span,
.game-links .link-1.active:hover *,
.game-links .link-1.active:hover .text-theme-1,
.game-links .link-1.active:hover.text-theme-1 {
    color: #ffffff !important;
    background: unset !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
}

.game-links .link-1:hover::before {
    left: 100%;
}

div.game-links a.link-1.active {
    background: linear-gradient(135deg, 
        rgba(255, 46, 76, 0.25) 0%, 
        rgba(30, 42, 120, 0.25) 50%, 
        rgba(255, 46, 76, 0.15) 100%) !important;
    border: 2px solid rgba(255, 46, 76, 0.6) !important;
    color: #ffffff !important;
    box-shadow: 
        0 8px 25px rgba(255, 46, 76, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-3px) scale(1.05) !important;
    backdrop-filter: blur(30px) !important;
    
    /* Override global .link-1.active gradient text */
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-image: none !important;
}

.game-links .link-1.active .text {
    color: #ffffff !important;
    font-weight: 700;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 1px 2px rgba(255, 46, 76, 0.5),
        0 0 8px rgba(255, 46, 76, 0.3);
}

.game-links .link-1.active i {
    color: #ffffff !important;
    opacity: 1;
    transform: scale(1.1);
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 1px 2px rgba(255, 46, 76, 0.5),
        0 0 8px rgba(255, 46, 76, 0.3);
}

/* Extra specificity for active link text - Override text-theme-1 */
.game-links .link-1.active span,
.game-links .link-1.active *,
.game-links .link-1.active .text-theme-1,
.game-links .link-1.active.text-theme-1 {
    color: #ffffff !important;
    background: unset !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* Animation for smooth entrance from left */
.game-links .link-1 {
    animation: slideInFromLeft 0.6s ease-out;
}

.game-links .link-1:nth-child(1) { animation-delay: 0.1s; }
.game-links .link-1:nth-child(2) { animation-delay: 0.2s; }
.game-links .link-1:nth-child(3) { animation-delay: 0.3s; }
.game-links .link-1:nth-child(4) { animation-delay: 0.4s; }
.game-links .link-1:nth-child(5) { animation-delay: 0.5s; }
.game-links .link-1:nth-child(6) { animation-delay: 0.6s; }
.game-links .link-1:nth-child(7) { animation-delay: 0.7s; }
.game-links .link-1:nth-child(8) { animation-delay: 0.8s; }

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .game-links {
        gap: 4px !important;
        justify-content: center;
        padding: 0 15px 0 80px;
    }
    
    .game-links .link-1 {
        padding: 8px 12px;
        font-size: 12px;
        gap: 6px;
        min-height: 40px;
    }
    
    .game-links .link-1 i {
        font-size: 14px;
    }
}

@media (min-width: 769px) and (max-width: 1199px) {
    .game-links {
        padding: 0 20px 0 150px;
    }
}

@media (min-width: 1200px) {
    .game-links {
        padding: 0 30px 0 250px;
    }
}

@media (min-width: 1400px) {
    .game-links {
        padding: 0 30px 0 300px;
    }
}

/* Add spacing to boost feature cards */
.bg-theme-3.card.border-0.rounded-4.mb-2 {
    margin-top: 60px !important;
}

/* Move checkout section down */
.position-sticky .card.border-0.rounded-5.mb-2.blur-effect-1 {
    margin-top: 60px !important;
}

/* Responsive spacing adjustments */
@media (max-width: 768px) {
    .bg-theme-3.card.border-0.rounded-4.mb-2 {
        margin-top: 40px !important;
    }
    
    .position-sticky .card.border-0.rounded-5.mb-2.blur-effect-1 {
        margin-top: 40px !important;
    }
}

/* Text readability improvements for glass components */
[current-rank-component] h4,
[desired-rank-component] h4 {
    color: #ffffff !important;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 1px 2px rgba(0, 0, 0, 0.9) !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
}

[current-rank-component] small,
[desired-rank-component] small {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7) !important;
    font-weight: 500 !important;
}

[current-rank-component] .text-theme-1,
[desired-rank-component] .text-theme-1 {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    letter-spacing: 1px !important;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 1px 2px rgba(0, 0, 0, 0.9) !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    position: relative !important;
}

/* Add subtle glow effect for better visibility */
[current-rank-component] .text-theme-1::before,
[desired-rank-component] .text-theme-1::before {
    content: attr(data-text) !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    filter: blur(1px) !important;
    z-index: -1 !important;
}

/* Alternative approach - simple white with shadow */
[current-rank-component] .text-theme-1,
[desired-rank-component] .text-theme-1 {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    letter-spacing: 1px !important;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 1px 2px rgba(0, 0, 0, 0.9),
        0 0 10px rgba(0, 0, 0, 0.5) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
}

/* Checkout Box Styling - Same as Current Rank */
.position-sticky .card.border-0.rounded-5.mb-2.blur-effect-1 {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.position-sticky .card.border-0.rounded-5.mb-2.blur-effect-1:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-2px) !important;
}

/* Checkout Box Text Styling */
.position-sticky .card.border-0.rounded-5.mb-2.blur-effect-1 h4,
.position-sticky .card.border-0.rounded-5.mb-2.blur-effect-1 .fs-5 {
    color: #ffffff !important;
    font-weight: 700 !important;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 1px 2px rgba(255, 255, 255, 0.1) !important;
}

.position-sticky .card.border-0.rounded-5.mb-2.blur-effect-1 small,
.position-sticky .card.border-0.rounded-5.mb-2.blur-effect-1 .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6) !important;
}

/* Price text styling */
.position-sticky .card.border-0.rounded-5.mb-2.blur-effect-1 .new-price,
.position-sticky .card.border-0.rounded-5.mb-2.blur-effect-1 .fs-4 {
    color: #ffffff !important;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 1px 2px rgba(255, 46, 76, 0.3) !important;
}

/* Checkout playertype buttons */
.position-sticky .card.border-0.rounded-5.mb-2.blur-effect-1 .checkout-playertype .btn {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
}

.position-sticky .card.border-0.rounded-5.mb-2.blur-effect-1 .checkout-playertype .btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-1px) !important;
}

.position-sticky .card.border-0.rounded-5.mb-2.blur-effect-1 .checkout-playertype .btn.active {
    background: linear-gradient(135deg, 
        rgba(255, 46, 76, 0.25) 0%, 
        rgba(30, 42, 120, 0.25) 50%, 
        rgba(255, 46, 76, 0.15) 100%) !important;
    border: 2px solid rgba(255, 46, 76, 0.6) !important;
    color: #ffffff !important;
    box-shadow: 
        0 4px 15px rgba(255, 46, 76, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

/* Form elements styling */
.position-sticky .card.border-0.rounded-5.mb-2.blur-effect-1 label {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6) !important;
}

.position-sticky .card.border-0.rounded-5.mb-2.blur-effect-1 .form-check-input {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.position-sticky .card.border-0.rounded-5.mb-2.blur-effect-1 .form-check-input:checked {
    background-color: rgba(255, 46, 76, 0.8) !important;
    border-color: rgba(255, 46, 76, 1) !important;
}

/* Input styling */
.position-sticky .card.border-0.rounded-5.mb-2.blur-effect-1 .input-2 {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    backdrop-filter: blur(10px) !important;
}

.position-sticky .card.border-0.rounded-5.mb-2.blur-effect-1 .input-2:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 46, 76, 0.5) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 46, 76, 0.25) !important;
}

.position-sticky .card.border-0.rounded-5.mb-2.blur-effect-1 .input-2::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Button styling */
.position-sticky .card.border-0.rounded-5.mb-2.blur-effect-1 .button-1 {
    background: linear-gradient(135deg, 
        rgba(255, 46, 76, 0.9) 0%, 
        rgba(30, 42, 120, 0.9) 50%, 
        rgba(255, 46, 76, 0.8) 100%) !important;
    border: 1px solid rgba(255, 46, 76, 0.8) !important;
    backdrop-filter: blur(15px) !important;
    box-shadow: 
        0 8px 25px rgba(255, 46, 76, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.position-sticky .card.border-0.rounded-5.mb-2.blur-effect-1 .button-1:hover {
    background: linear-gradient(135deg, 
        rgba(255, 46, 76, 1) 0%, 
        rgba(30, 42, 120, 1) 50%, 
        rgba(255, 46, 76, 0.9) 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 
        0 12px 35px rgba(255, 46, 76, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.position-sticky .card.border-0.rounded-5.mb-2.blur-effect-1 .button-2 {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    backdrop-filter: blur(10px) !important;
}

.position-sticky .card.border-0.rounded-5.mb-2.blur-effect-1 .button-2:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-1px) !important;
}

/* Cache buster - Updated: 2024-v4 - Complete checkout styling */