.purchase-window {
        max-width: 900px;
        margin-top: 2rem;
    }

    .purchase-header {
        margin-bottom: 3rem;
        padding: 2rem 0;
    }

    .purchase-title {
        font-size: 2.5rem;
        font-weight: bold;
        color: #ffffff;
        margin-bottom: 1rem;
    }

    .text-muted{
        color: rgba(236, 249, 255, 0.923) !important;
    }

    .purchase-title i {
        color: #5db0c9;
        margin-right: 0.5rem;
    }

    .purchase-subtitle {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 0;
    }

    .benefits-section {
        margin-bottom: 3rem;
    }

    .benefit-card {
        background: linear-gradient(145deg, rgba(93, 176, 201, 0.2), rgba(17, 69, 160, 0.2));
        border-radius: 12px;
        padding: 2rem 1rem;
        height: 100%;
        border-style: solid;
        border-width: 2px;
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: none; 
        position: relative; 
        z-index: 1; 
    }
    
    .benefit-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 12px;
        padding: 2px; 
        background: linear-gradient(90deg, #5db0c985, #64cbff7c, #5db0c98a);
        background-size: 300% 2cqmax;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        animation: borderAnimation 6s ease infinite;
        z-index: -1;
    }
    
    @keyframes borderAnimation {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);    
    }
    
    /* Brighten the border on hover */
    .benefit-card:hover::before {
        filter: brightness(1.3);
        animation: borderAnimation 3s ease infinite; /* Faster animation on hover */
    }

    .benefit-icon {
        font-size: 2.5rem;
        color: #5db0c9;
        margin-bottom: 1rem;
        display: block;
    }

    .benefit-card h5 {
        color: #ffffff;
        font-weight: bold;
        margin-bottom: 0.8rem;
    }

    .benefit-card p {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 0;
        font-size: 0.9rem;
    }

    .purchase-section {
        margin-bottom: 3rem;
    }

    .purchase-card {
        background: linear-gradient(145deg, rgba(93, 176, 201, 0.15), rgba(17, 69, 160, 0.15));
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        overflow: hidden;
    }

    .purchase-card .card-header {
        background: linear-gradient(135deg, rgba(93, 176, 201, 0.8), rgba(17, 69, 160, 0.8));
        border-bottom: none;
        padding: 2rem;
    }

    .purchase-card .card-header h3 {
        color: #ffffff;
        font-weight: bold;
        font-size: 1.5rem;
    }

    .purchase-card .card-header i {
        color: #ffffff;
        margin-right: 0.5rem;
    }

    .purchase-card .card-body {
        padding: 2rem;
        background: linear-gradient(180deg, rgba(93, 176, 201, 0.1), rgba(17, 69, 160, 0.05));
    }

    .credit-info {
        border: 2px solid rgba(93, 176, 201, 0.5);
        border-radius: 12px;
        padding: 1.5rem;
        background: linear-gradient(145deg, rgba(93, 176, 201, 0.1), rgba(17, 69, 160, 0.1));
    }

    .credit-amount {
        font-size: 2rem;
        font-weight: bold;
        color: #5db0c9;
        margin-bottom: 0.5rem;
    }

    .credit-description {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1rem;
    }

    .widget-container {
        text-align: center;
        margin: 2rem 0;
        padding: 0;
        background: linear-gradient(145deg, rgba(93, 176, 201, 0.15), rgba(17, 69, 160, 0.1));
        border-radius: 15px;
        border: 2px solid rgba(93, 176, 201, 0.4);
        position: relative;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        min-height: 380px;
    }

    .widget-container::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(93, 176, 201, 0.1), transparent);
        animation: shimmer 3s infinite;
        pointer-events: none;
        z-index: 1;
    }

    @keyframes shimmer {
        0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
        100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    }

    .widget-loader {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgba(93, 176, 201, 0.1), rgba(17, 69, 160, 0.1));
        color: rgba(255, 255, 255, 0.9);
        transition: all 0.4s ease;
        z-index: 10;
        backdrop-filter: blur(5px);
    }

    .widget-loader.hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .loader-spinner {
        width: 40px;
        height: 40px;
        border: 3px solid rgba(93, 176, 201, 0.3);
        border-radius: 50%;
        border-top-color: #5db0c9;
        animation: spin 1s linear infinite;
        margin-bottom: 1rem;
    }

    @keyframes spin {
        to { transform: rotate(360deg); }
    }

    .widget-loader span {
        font-size: 0.9rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.8);
        animation: pulse 1.5s infinite alternate;
        text-align: center;
        padding: 0 1rem;
    }

    @keyframes pulse {
        from { opacity: 0.7; }
        to { opacity: 1; }
    }

    .xsolla-widget {
        position: relative;
        z-index: 5;
        border-radius: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
        background: transparent !important;
        min-height: 80px;
        width: 100%;
    }

    .xsolla-widget iframe,
    .xsolla-widget > div,
    .xsolla-widget > div > iframe {
        border: none !important;
        border-radius: 15px !important;
        width: 100% !important;
        height: 120px !important;
        min-height: 120px !important;
        padding: 20px !important;
    }

    .xsolla-widget:hover iframe,
    .xsolla-widget:hover > div > iframe {
        transform: translateY(-2px);
    }

    .x-buy-button-widget-payment-button,
    .x-buy-button-widget-payment-button__blue {
        background: linear-gradient(135deg, #5db0c9, #1145a0) !important;
        border: none !important;
        border-radius: 12px !important;
        color: #ffffff !important;
        font-weight: bold !important;
        font-size: 9px !important;
        padding: 2rem 2rem !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
    }

    .x-buy-button-widget-payment-button:hover,
    .x-buy-button-widget-payment-button__blue:hover {
        background: linear-gradient(135deg, #4a9eb8, #0d3b8a) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 20px rgba(93, 176, 201, 0.4) !important;
    }

    .x-buy-button-widget-payment-button:active,
    .x-buy-button-widget-payment-button__blue:active {
        transform: translateY(0) !important;
    }


    
    .translate-message {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    .x-buy-button-widget-payment-button span,
    .x-buy-button-widget-payment-button__blue span,
    .x-buy-button-widget-payment-button [class*="button-text"],
    .x-buy-button-widget-payment-button__blue [class*="button-text"] {
        color: #ffffff !important;
        font-weight: bold !important;
        font-size: 0.85rem !important;
        letter-spacing: 0.8px !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: inline-block !important;
        padding: 0 !important;
        margin: 0 !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    }

    .xsolla-widget iframe {
        background: transparent !important;
        border: none !important;
        overflow: hidden !important;
    }

    .xsolla-lightbox-overlay {
        background: rgba(0, 0, 0, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        z-index: 99999 !important;
        animation: fadeInOverlay 0.3s ease-out !important;
    }

    @keyframes fadeInOverlay {
        from { 
            opacity: 0;
            backdrop-filter: blur(0px);
        }
        to { 
            opacity: 1;
            backdrop-filter: blur(10px);
        }
    }

    .xsolla-lightbox-content {
        background: linear-gradient(145deg, #1a1a2e, #16213e) !important;
        border: 2px solid rgba(93, 176, 201, 0.5) !important;
        border-radius: 20px !important;
        overflow: hidden !important;
        position: relative !important;
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6) !important;
        animation: modalSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
        max-width: 650px !important;
        max-height: 750px !important;
    }

    .xsolla-lightbox-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #5db0c9, #1145a0, #5db0c9);
        animation: progressBar 2s linear infinite;
        z-index: 1000;
    }

    @keyframes modalSlideIn {
        0% {
            opacity: 0;
            transform: scale(0.8) translateY(-50px) rotateX(10deg);
        }
        100% {
            opacity: 1;
            transform: scale(1) translateY(0) rotateX(0deg);
        }
    }

    @keyframes progressBar {
        0% { transform: translateX(-100%); }
        100% { transform: translateX(100%); }
    }

    .xsolla-lightbox-close,
    .custom-close-button {
        position: absolute !important;
        top: 15px !important;
        right: 15px !important;
        width: 45px !important;
        height: 45px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        border-radius: 50% !important;
        color: #ffffff !important;
        font-size: 20px !important;
        font-weight: bold !important;
        cursor: pointer !important;
        z-index: 10000 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
        backdrop-filter: blur(10px) !important;
        text-decoration: none !important;
        outline: none !important;
    }

    .xsolla-lightbox-close:hover,
    .custom-close-button:hover {
        background: rgba(255, 255, 255, 0.2) !important;
        border-color: #5db0c9 !important;
        transform: scale(1.15) rotate(90deg) !important;
        box-shadow: 0 0 25px rgba(93, 176, 201, 0.6) !important;
        color: #5db0c9 !important;
    }

    .xsolla-lightbox-close:active,
    .custom-close-button:active {
        transform: scale(1.05) rotate(90deg) !important;
    }

    @keyframes pulseGlow {
        0% {
            box-shadow: 0 0 20px rgba(93, 176, 201, 0.3);
        }
        100% {
            box-shadow: 0 0 30px rgba(93, 176, 201, 0.6), 0 0 40px rgba(17, 69, 160, 0.3);
        }
    }

    .widget-glow {
        animation: pulseGlow 2s infinite alternate !important;
    }

    .purchase-info .info-item {
        display: flex;
        align-items: center;
        margin-bottom: 0.8rem;
        padding: 0.5rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .purchase-info .info-item:hover {
        background: rgba(255, 255, 255, 0.05);
        transform: translateX(5px);
    }

    .purchase-info .info-item i {
        margin-right: 0.8rem;
        font-size: 1.1rem;
    }

    .purchase-info .info-item span {
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
    }

    .security-notice {
        margin-bottom: 2rem;
    }

    .notice-card {
        background: linear-gradient(145deg, rgba(255, 235, 59, 0.1), rgba(255, 193, 7, 0.1));
        border: 1px solid rgba(255, 235, 59, 0.3);
        border-radius: 12px;
        padding: 1.5rem;
        color: rgba(255, 255, 255, 0.9);
    }

    .notice-card i {
        color: #fffffc;
        margin-right: 0.5rem;
    }

    @media (max-width: 768px) {
        .purchase-window {
            margin-top: 1rem;
        }
        
        .purchase-title {
            font-size: 2rem;
        }
        
        .benefit-card {
            margin-bottom: 1rem;
        }
        
        .purchase-card .card-header,
        .purchase-card .card-body {
            padding: 1.5rem;
        }
        
        .credit-amount {
            font-size: 1.5rem;
        }
        
        .widget-container {
            margin: 1.5rem 0;
        }
        
        .xsolla-widget iframe,
        .xsolla-widget > div > iframe {
            height: 70px !important;
            min-height: 70px !important;
        }
        
        .loader-spinner {
            width: 35px;
            height: 35px;
        }
        
        .xsolla-lightbox-content {
            margin: 15px !important;
            border-radius: 15px !important;
            max-width: calc(100vw - 30px) !important;
            max-height: calc(100vh - 30px) !important;
        }
    }

    @media (max-width: 576px) {
        .purchase-title {
            font-size: 1.8rem;
        }
        
        .purchase-subtitle {
            font-size: 1rem;
        }
        
        .benefit-icon {
            font-size: 2rem;
        }
        
        .purchase-card .card-header,
        .purchase-card .card-body {
            padding: 1rem;
        }
        
        .widget-container {
            margin: 1rem 0;
        }
        
        .widget-loader span {
            font-size: 0.8rem;
        }
        
        .xsolla-widget iframe,
        .xsolla-widget > div > iframe {
            height: 60px !important;
            min-height: 60px !important;
        }
        
        .xsolla-lightbox-close,
        .custom-close-button {
            width: 35px !important;
            height: 35px !important;
            font-size: 16px !important;
            top: 10px !important;
            right: 10px !important;
        }
    }

    .widget-container.loading {
        background: linear-gradient(45deg, rgba(93, 176, 201, 0.1), rgba(17, 69, 160, 0.1), rgba(93, 176, 201, 0.1));
        background-size: 200% 200%;
        animation: gradientShift 2s ease-in-out infinite;
    }

    @keyframes gradientShift {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    .widget-container.loaded {
        background: linear-gradient(145deg, rgba(93, 176, 201, 0.15), rgba(17, 69, 160, 0.1));
        animation: none;
    }

    .xsolla-widget .xsolla-logo,
    .xsolla-widget .powered-by,
    .xsolla-widget [class*="logo"],
    .xsolla-widget [class*="branding"] {
        display: none !important;
        visibility: hidden !important;
    }

    .xsolla-widget iframe[src*="xsolla"] {
        background: linear-gradient(135deg, #5db0c9, #1145a0) !important;
    }



    
    .x-buy-button-widget-button-block{
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        height: 100% !important;
        top: 0px !important;
        left: 0px !important;
        bottom: 20px !important;
        right: 0px !important;
        padding: 20px !important;
        margin: 0px !important;
    }

    /* Styles for thanks.html */
.thanks-window {
    max-width: 900px;
    margin-top: 2rem;
    padding-bottom: 3rem;
}

.thanks-header {
    margin-bottom: 2rem;
    padding: 2rem 0;
}

.thanks-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1rem;
}

@keyframes gradientText {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.thanks-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
}

.email-animation-container {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.email-icon {
    position: relative;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(93, 176, 201, 0.2), rgba(17, 69, 160, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite alternate;
    box-shadow: 0 0 30px rgba(93, 176, 201, 0.3);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(93, 176, 201, 0.3);
    }
    100% {
        transform: scale(1.1);
        box-shadow: 0 0 40px rgba(93, 176, 201, 0.6);
    }
}

.email-icon i {
    font-size: 60px;
    color: #5db0c9;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.note-card {
    background: linear-gradient(145deg, rgba(93, 176, 201, 0.15), rgba(17, 69, 160, 0.15));
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.note-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #5db0c9, #1145a0, #5db0c9);
    background-size: 200% auto;
    animation: gradientBorder 4s linear infinite;
}

@keyframes gradientBorder {
    0% {
        background-position: 0% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.note-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #5db0c9;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.note-title i {
    margin-right: 0.8rem;
}

.note-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.redeem-section {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(93, 176, 201, 0.1), rgba(17, 69, 160, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.redeem-section::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    z-index: 0;
    background: radial-gradient(circle, rgba(93, 176, 201, 0.1) 0%, rgba(17, 69, 160, 0) 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.redeem-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.redeem-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.btn-redeem {
    background: linear-gradient(45deg, #5db0c9, #1145a0);
    color: #ffffff;
    font-weight: bold;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(17, 69, 160, 0.4);
}

.btn-redeem:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1145a0, #5db0c9);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.btn-redeem:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 40px rgba(17, 69, 160, 0.6);
    color: #ffffff;
}

.btn-redeem:hover:before {
    opacity: 1;
}

.btn-redeem:active {
    transform: translateY(-2px) scale(1);
}

.btn-redeem i {
    margin-right: 0.8rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.sparkles {
  position: absolute;
    width: 0px;
    height: 0px;
    border-radius: 50%;
    background-color: rgba(91, 255, 252, 0.0);
    box-shadow: 0 0 10px rgba(93, 176, 201, 0.8);
    pointer-events: none;
    opacity: 0;  
}

.contact-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-link {
    flex: 1;
    min-width: 200px;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #5db0c9;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: #ffffff;
    text-decoration: none;
}

.contact-link i {
    font-size: 1.2rem;
}

.credit-selector {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.credit-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

.form-check-inline {
    background: rgba(93, 176, 201, 0.1);
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 15px 20px;
    margin-right: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    width: 100%;
    max-width: 360px;
}

.form-check-inline:hover {
    background: rgba(93, 176, 201, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(93, 176, 201, 0.2);
}

.form-check-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.form-check-label {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.form-check-label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(93, 176, 201, 0.5);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.form-check-input:checked + .form-check-label:before {
    background: rgba(17, 69, 160, 0.2);
    border-color: #5db0c9;
    box-shadow: 0 0 10px rgba(93, 176, 201, 0.5);
}

.form-check-input:checked + .form-check-label:after {
    content: "";
    position: absolute;
    left: 8px;
    top: 10px;
    width: 10px;
    height: 10px;
    background-color: #5db0c9;
    border-radius: 50%;
    animation: dotAppear 0.3s ease-in-out;
}

@keyframes dotAppear {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes checkmark {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.form-check-inline:has(.form-check-input:checked) {
    border-color: #5db0c9;
    background: rgba(93, 176, 201, 0.15);
    box-shadow: 0 5px 15px rgba(93, 176, 201, 0.3);
}

.price-tag {
    margin-top: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    letter-spacing: 0.2px;
}

.tax-info {
    color: #5db0c9;
    cursor: help;
    margin-left: 4px;
    position: relative;
    display: inline-block;
}

/* Custom tooltip popup */
.tooltip-popup {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(145deg, rgba(93, 176, 201, 0.92), rgba(17, 69, 160, 0.96));
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: normal;
    font-family: var(--font-primary, 'Outfit', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif);
    width: max-content;
    max-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
    z-index: 1000;
    margin-bottom: 10px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.22);
    pointer-events: none;
    word-break: break-word;
    white-space: normal;
    text-transform: none;
    letter-spacing: 0.5px;
}


.tooltip-popup:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(2px);
    border-width: 8px;
    border-style: solid;
    border-color: rgba(17, 69, 160, 0.96) transparent transparent transparent;
}

.tax-info:hover .tooltip-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

/* Key redemption section */
.redeem-key-section {
    margin-top: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(93, 176, 201, 0.15), rgba(17, 69, 160, 0.15));
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: subtle-float 6s ease-in-out infinite;
}

@keyframes subtle-float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

.redeem-key-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1rem;
}

.redeem-key-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.btn-redeem-key {
    background: linear-gradient(45deg, #5db0c9, #1145a0);
    color: #ffffff;
    font-weight: bold;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    letter-spacing: 0.6px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(17, 69, 160, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-redeem-key:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(17, 69, 160, 0.6);
    color: #ffffff;
    text-decoration: none;
}

.btn-redeem-key:active {
    transform: translateY(-1px);
}

.price-list-section {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
}

.price-list-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #5db0c9;
    margin-bottom: 1rem;
    text-align: center;
}

.price-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-list-item:last-child {
    border-bottom: none;
}

.price-item-name {
    color: rgba(255, 255, 255, 0.9);
}

.price-item-value {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    display: flex;
    align-items: center;
}
