:root {
    --primary-bg: #fff;
    --primary-dark: #330000;
    --accent-red: #cc0015;
    --accent-orange: #ff4d4d;
    --text-dark: #330000;
    --text-light: #FFF5F5;
    --card-bg: #FFFFFF;
    --gradient-red: linear-gradient(45deg, var(--accent-red), var(--accent-orange));
    --gradient-red-multi: linear-gradient(135deg, #8b0000, var(--accent-red), var(--accent-orange), #ff9999);
}

body {
    background-color: var(--primary-bg);
    color: var(--text-dark);
    min-height: 100vh;
}

ol,
ul {
    padding-left: 0rem;
}

.clear {
    clear: both;
}

.py-5 {
    width: 100%;
    max-width: 1600px;
}

.exchange-section {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    text-align: center;
    margin-top: 10px;
    line-height: 40px;
}

.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    text-align: center;
    margin-top: 10px;
    line-height: 40px;
}

.BANNER-container {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: visible;
    margin-bottom: 28px;
    background-color: #000;
    margin-top: -100px;
}

.btn-primary {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
    color: white;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s;
    min-width: 150px;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-outline-warning {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
    transition: all 0.3s;
}

.btn-outline-warning:hover {
    background-color: rgba(253, 126, 20, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(253, 126, 20, 0.2);
}

.btn-warning {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    color: white;
    font-weight: bold;
}

.btn-warning:hover {
    background-color: #e67300;
    border-color: #e67300;
    color: white;
}

.card {
    margin-bottom: 25px;
    /* text-align: center; */
    background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(255, 152, 0, .15);
    border: 2px solid #ffd699;
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 12px;
}

.yy {
    padding: 20px;
    transition: all 0.3s;
    cursor: pointer;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.yy:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 12px;
}



.card-title {
    color: var(--accent-blue);
    margin-bottom: 15px;
    font-size: 30px;
}

.card-body {
    padding: 30px;

}

.user-profile {
    background: linear-gradient(135deg, #7e57c2, #6a45b9, #5e35b1);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    color: white;
    font-size: 15px;
}

.user-profile::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .1) 5px, rgba(255, 255, 255, 0) 5px, rgba(255, 255, 255, 0) 10px);
    opacity: .6;
}

.user-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid rgba(0, 123, 255, 0.2);
    object-fit: cover;
    /* width: 100%; */
    /* height: 100%; */
    /* object-fit: cover; */
    border-radius: 50%;
    border: 3px solid rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 20px;
    transition: 0.3s;
    background: white;
}

.user-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 15px;
}

.user-vip {
    color: var(--accent-orange);
    font-weight: bold;
}

.progress {
    height: 10px;
    margin: 10px 0;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 5px;
}

.progress-bar {
    background-color: var(--accent-blue);
    border-radius: 5px;
}

.feature-icon {
    color: #ff9d4a;
    font-size: 2.5rem;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    color: var(--accent-orange);

}

.feature-card {
    text-align: center;
    padding: 20px;
    transition: all 0.3s;
    cursor: pointer;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.feature-card a {
    text-decoration: none;
    color: #666;
}

.section-title {
    position: relative;
    display: inline-block;

    padding-bottom: 10px;
    color: var(--primary-dark);
    font-size: 18px;
}

.bag {
    background: #fff2f2 !important;
    border: 1px solid #ffcccc;
    color: #666;
    line-height: 20px;
    padding: 5px;
    border-radius: 5px;
    min-width: 50px;
}


.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    top: 35%;
    transform: translateY(-50%);
    width: 5px;
    height: 22px;
    background: linear-gradient(to bottom, var(--accent-red), var(--accent-orange));
    border-radius: 1px;
}

.recharge-option {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s;
    text-align: center;
    background-color: var(--card-bg);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
    transition: all 0.3s;
}

.cardmb-4 {
    margin-bottom: 25px;
    text-align: center;
    background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(255, 152, 0, .15);
    border: 2px solid #ffd699;
    line-height: 50px;
}

.recharge-option:hover {

    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.recharge-amount {
    font-size: 20px;
    color: #777;
}

.qr-code-container {
    background: linear-gradient(135deg, #7e57c2, #6a45b9, #5e35b1);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    /* color: white; */
    font-size: 15px;
    text-align: center;
}



.recharge-bonus {
    color: var(--accent-orange);
    font-weight: bold;
}

.table th {
    background-color: #fff9f0;
    color: var(--accent-blue);
}

.side-menu {
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    font-size: 16px;
}

.side-menu .nav-link {
    padding: 15px 10px;
    margin-bottom: 5px;
    border-radius: 8px;
    color: var(--primary-dark);
    transition: all 0.3s;
    cursor: pointer;
    padding-left: 60px;
}

.side-menu .top {
    padding: 25px 20px;
    position: relative;
    background: linear-gradient(135deg, rgb(255, 245, 245), rgb(255, 255, 255));
    border-bottom: 1px solid rgb(240, 240, 240);
}

.side-menu .nav-link:hover {
    background: linear-gradient(45deg, rgba(204, 0, 21, 0.1), rgba(255, 77, 77, 0.1));
    color: var(--accent-red);
    transform: translateX(5px);
    border-color: rgba(204, 0, 21, 0.2);
}

.side-menu .nav-link.active {
    background: linear-gradient(45deg, rgb(204, 0, 21), rgb(255, 77, 77));
    box-shadow: rgba(204, 0, 21, 0.2) 0px 4px 15px;
    color: white;
    padding-left: 60px;
}

.side-menu .nav-link i {
    width: 20px;
    text-align: center;
    margin-right: 10px;
}

.side-menu .nav-link1 {
    padding: 12px 15px;
    margin-bottom: 5px;
    border-radius: 8px;
    color: var(--primary-dark);
    transition: all 0.3s;
    cursor: pointer;
}

.side-menu .nav-link1:hover {
    background-color: rgba(0, 123, 255, 0.1);
    color: var(--accent-blue);
}

.side-menu .nav-link1.active {
    background-color: rgba(0, 123, 255, 0.2);
    color: var(--accent-blue);
    font-weight: bold;
}

.side-menu .nav-link1 i {
    width: 20px;
    text-align: center;
    margin-right: 10px;
}

.invite-section {
    box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 12px;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px dashed var(--accent-blue);
}

.invite-title {
    color: var(--accent-blue);
    font-weight: bold;
    margin-bottom: 20px;
}

.invite-reward {
    background-color: rgba(253, 126, 20, 0.1);
    color: var(--accent-orange);
    padding: 15px 15px;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
    flex: 1;
    text-align: center;
}

.invite-link-box {
    background-color: var(--card-bg);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.invite-link {
    flex-grow: 1;
    font-family: monospace;
    color: var(--accent-blue);
    overflow: hidden;
    text-overflow: ellipsis;
}

.exchange-section {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.exchange-title {
    color: var(--accent-blue);
    font-weight: bold;
    margin-bottom: 20px;
}

.exchange-rate {
    color: var(--accent-orange);
    font-weight: bold;
    margin-bottom: 20px;
}

.exchange-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.exchange-input {
    flex-grow: 1;
}

.exchange-note {
    color: #6c757d;
    font-size: 0.9rem;
}

.daily-reward-btn {
    position: absolute;
    top: 30px;
    right: 30px;
}

.content-module {
    display: none;
}

.content-module.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 40px 0 20px;
    margin-top: 50px;
}

footer .slogan-text {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
}

.payment-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.payment-overlay.active {
    opacity: 1;
    visibility: visible;
}

.payment-container {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.payment-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6c757d;
}

.payment-title {
    color: var(--accent-blue);
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.payment-qrcode {
    text-align: center;
    margin: 20px 0;
}

.payment-qrcode img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    padding: 10px;
    background-color: white;
}

.payment-info {
    margin-bottom: 20px;
}

.payment-order {
    background-color: rgba(0, 123, 255, 0.1);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.payment-timer {
    color: var(--accent-orange);
    font-weight: bold;
    text-align: center;
    font-size: 1.2rem;
}

.custom-amount {
    margin-bottom: 20px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.payment-method {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-method.active {
    border-color: var(--accent-blue);
    background-color: rgba(0, 123, 255, 0.1);
}

.payment-method i {
    margin-right: 5px;
}

.recharge-instructions {
    background-color: rgba(0, 123, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
}

.instructions-title {
    color: var(--accent-blue);
    font-weight: bold;
    margin-bottom: 15px;
}

.instructions-list {
    list-style-type: none;
    padding-left: 0;
}

.instructions-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.instructions-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-blue);
    position: absolute;
    left: 0;
}

.password-tip {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.password-tip.show {
    opacity: 1;
    visibility: visible;
}

.upgrade-header {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(253, 126, 20, 0.1));
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.exp-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #cc0015;
    margin: 15px 0;
}

.exp-progress {
    height: 15px;
    border-radius: 8px;
    background-color: rgba(0, 123, 255, 0.1);
    margin: 20px 0;
}

.exp-progress-bar {
    background: linear-gradient(to right, var(--accent-blue), var(--accent-orange));
    border-radius: 8px;
}

.level-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.level-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.1);
    border-color: var(--accent-blue);
}

.level-card.current {
    border: 2px solid var(--accent-orange);
    background-color: rgba(253, 126, 20, 0.05);
}

.level-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-blue);
    margin-bottom: 10px;
}

.level-exp {
    color: var(--accent-orange);
    font-weight: bold;
}

.level-rewards {
    margin-top: 10px;
    color: #6c757d;
}

.upgrade-instructions {
    background-color: rgba(0, 123, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    margin-top: 30px;
}

.level-table {
    width: 100%;
    margin-top: 30px;
    border-collapse: collapse;
}

.level-table th {
    background-color: rgba(0, 123, 255, 0.1);
    color: var(--accent-blue);
    padding: 12px;
    text-align: center;
}

.level-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.level-table tr:last-child td {
    border-bottom: none;
}

.level-table tr:hover td {
    background-color: rgba(0, 123, 255, 0.05);
}

.user-profile.hidden {
    display: none;
}

.col-md-6 {
    flex: 0 0 auto;
    width: 100%;
}

.lottery-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.prize-item {
    aspect-ratio: 1;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.prize-item.active {
    border-color: #ff4757;
    background-color: #ff4757;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
}

.prize-amount {
    font-size: 25px;
}

.prize-label {
    font-size: 20px;
    margin-top: 10px;
}

.start-btn-container {
    text-align: center;
    margin: 20px 0;
}

.start-btn {
    background: #1890ff;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.start-btn:hover {
    background: #40a9ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 144, 255, 0.4);
}

.start-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.result-message {
    text-align: center;
    margin: 15px 0;
    padding: 10px;
    border-radius: 8px;
}

.disabled-message {
    text-align: center;
    color: #ff4757;
    font-weight: bold;
    padding: 20px;
    background: #fff2f2;
    border-radius: 8px;
}

.text-primary {
    --bs-text-opacity: 1;
    color: #ff6b00 !important;
}

.user-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.recharge-form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.payment-methods {
    display: flex;
    gap: 15px;
    margin: 15px 0;
}

.payment-method {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
}

.payment-method.selected {
    border-color: red;
    background: linear-gradient(135deg, rgb(255, 245, 245), rgb(255, 255, 255));
}

.payment-method img {
    max-width: 80px;
    max-height: 40px;
}

.btn {
    border: none;
    background: linear-gradient(45deg, #ff6b00, #ff9d4a);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 20px;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 4px 10px rgba(255, 107, 0, .3);
    text-shadow: 0 1px 1px rgba(0, 0, 0, .2);
}

.btn:disabled {
    background: #ccc;
}

.error {
    color: #dc3545;
    padding: 10px;
    background: #f8d7da;
    border-radius: 4px;
    margin-bottom: 15px;
}

.success {
    color: #28a745;
}

.recharge-logs {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.log-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.log-status-0 {
    color: #6c757d;
}

.log-status-1 {
    color: #28a745;
}

.log-status-2 {
    color: #dc3545;
}

.log-status-3 {
    color: #ffc107;
}

.qr-code {
    text-align: center;
    margin: 20px 0;
}

.qr-code img {
    max-width: 300px;
    border: 1px solid #ddd;
    padding: 10px;
}

.payment-status {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.payment-status p {
    margin: 5px 0;
}

#currentOrderId {
    display: none;
}

.timeout-message {
    color: #dc3545;
    font-weight: bold;
    text-align: center;
    padding: 15px;
    background: #f8d7da;
    border-radius: 8px;
    margin: 20px 0;
}

.order-info {
    background: #e7f3ff;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
}




.recharge-bonus {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 5px 0;
}

.recharge-btn {
    width: 100%;
}

@media (max-width: 768px) {
    .user-avatar {
        width: 80px;
        height: 80px;
    }

    .user-name {
        font-size: 1.2rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .daily-reward-btn {
        position: static;
        margin-top: 15px;
    }

    .exchange-form {
        flex-direction: column;
    }
}

.userinfo-container {
    width: 100%;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
}

.userinfo-header {
    display: flex;
    padding: 20px;
    gap: 15px;
}

.userinfo-level-left {
    flex: 1;
    background:
        linear-gradient(135deg, #8a2be2 25%, transparent 25%, transparent 50%, #8a2be2 50%, #8a2be2 75%, transparent 75%, transparent);
    background-size: 8px 8px;
    background-color: #8a2be2;
    padding: 15px;
    color: white;
    position: relative;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
}

.userinfo-level-middle {
    flex: 1;
    background-color: #f0f0f0;
    padding: 15px;
    color: #333;
    position: relative;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.userinfo-level-right {
    flex: 1;
    background-color: #f9f9f9;
    padding: 15px;
    color: #333;
    position: relative;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.userinfo-level-badge {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 10px;
}

.userinfo-level-number {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.userinfo-level-progress {
    height: 6px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    margin-bottom: 10px;
    overflow: hidden;
}

.userinfo-level-progress-bar {
    height: 100%;
    width: 0%;
    background-color: #fff;
    border-radius: 3px;
}

.userinfo-level-value {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.userinfo-level-desc {
    background-color: #4169e1;
    border-radius: 4px;
    padding: 8px 10px;
    font-size: 12px;
    margin-bottom: 15px;
    line-height: 1.4;
    text-align: ce;
}

.userinfo-recharge-button {
    background-color: #ffd700;
    color: #333;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    width: 80px;
    align-self: flex-end;
    margin-top: auto;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.userinfo-recharge-button:hover {
    background-color: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.userinfo-vip-icon {
    font-size: 40px;
    margin-bottom: 10px;
    color: #ff7f00;
}

.userinfo-vip-text {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.userinfo-vip-button {
    background-color: #ff7f00;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 80%;
    text-align: center;
    text-decoration: none;
}

.userinfo-vip-button:hover {
    background-color: #ff9b3d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.userinfo-sign-icon {
    font-size: 40px;
    margin-bottom: 10px;
    color: #ff6b6b;
}

.userinfo-sign-text {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.userinfo-sign-button {
    background-color: #ff6b6b;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bg-info {
    background-color: #f9f9f9;
    color: #666;
}

.userinfo-sign-button:hover {
    background-color: #ff8e8e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.userinfo-stats {
    display: flex;
    padding: 20px;
    background-color: #fff;
    position: relative;
    border-top: 1px solid #e0e0e0;
}

.userinfo-stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 10px;
}

.userinfo-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #e0e0e0, transparent);
}

.userinfo-stat-value {
    font-size: 22px;
    font-weight: bold;
    color: #ff0000;
    margin-bottom: 8px;
}

.userinfo-stat-label {
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .userinfo-header {
        flex-direction: column;
        gap: 15px;
    }

    .userinfo-level-left,
    .userinfo-level-middle,
    .userinfo-level-right {
        min-height: auto;
    }
}

.TG-container {
    max-width: 1680px;
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 50px;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
}

.TG-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #e74c3c, #f39c12, #e74c3c);
    background-size: 200% 100%;
    animation: TG-gradientMove 3s ease infinite;
}

@keyframes TG-gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.TG-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.TG-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.TG-header h1::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #e74c3c;
    border-radius: 2px;
}

.TG-header p {
    color: #666;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.TG-section {
    margin-bottom: 50px;
    padding: 35px;
    border-radius: 15px;
    background: #f9f9f9;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.TG-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.TG-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #e74c3c, #f39c12);
}

.TG-section-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    align-items: center;
}

.TG-section-title i {
    margin-right: 12px;
    color: #e74c3c;
    font-size: 24px;
}

.TG-btn-primary {
    background: linear-gradient(135deg, #e74c3c 0%, #f39c12 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    max-width: 350px;
    margin: 25px auto;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
    position: relative;
    overflow: hidden;
}

.TG-btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.TG-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
}

.TG-btn-primary:hover::before {
    left: 100%;
}

.TG-btn-primary:active {
    transform: translateY(0);
}

.TG-benefits {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}

.TG-benefit-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 30px 20px;
    margin: 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.TG-benefit-item:hover {
    transform: translateY(-5px);
}

.TG-benefit-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
}

.TG-benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.TG-diamond {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.TG-star {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.TG-benefit-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #555;
}

.TG-benefit-value {
    font-size: 42px;
    font-weight: 700;
    color: #e74c3c;
    margin: 10px 0;
}

.TG-benefit-unit {
    font-size: 18px;
    color: #777;
    margin-left: 5px;
    font-weight: 500;
}

.TG-commission {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.TG-commission::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
}

.TG-commission-value {
    font-size: 62px;
    font-weight: 800;
    color: #e74c3c;
    margin: 15px 0;
    text-shadow: 0 5px 10px rgba(231, 76, 60, 0.2);
}

.TG-commission-desc {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

.TG-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}

.TG-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px 15px;
    position: relative;
}

.TG-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    position: relative;
    z-index: 2;
}

.TG-step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.TG-step-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.TG-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 30px;
    right: 0;
    width: calc(100% - 60px);
    height: 2px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    z-index: 1;
}

.TG-note {
    text-align: center;
    color: #888;
    font-size: 16px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

@media (max-width: 1200px) {
    .TG-container {
        padding: 40px 30px;
    }

    .TG-step:not(:last-child)::after {
        width: calc(100% - 40px);
    }
}

@media (max-width: 768px) {
    .TG-container {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .TG-header h1 {
        font-size: 32px;
    }

    .TG-section {
        padding: 25px 20px;
    }

    .TG-benefits {
        flex-direction: column;
    }

    .TG-benefit-item {
        min-width: 100%;
        margin: 10px 0;
    }

    .TG-steps {
        flex-direction: column;
    }

    .TG-step {
        min-width: 100%;
        margin-bottom: 30px;
    }

    .TG-step:not(:last-child)::after {
        display: none;
    }

    .TG-commission-value {
        font-size: 48px;
    }
}