/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* 顶部导航栏 */
.top-header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #333;
    font-size: 16px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #1890ff;
}

.nav-link.active {
    color: #1890ff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #1890ff;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* 登录/注册按钮 */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login,
.btn-register {
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-login {
    background: #3066ff;
    color: #fff;
}

.btn-login:hover {
    background: #4d7aff;
}

.btn-register {
    background: #fff;
    color: #333;
    border: 1px solid #e0e0e0;
}

.btn-register:hover {
    border-color: #3066ff;
    color: #3066ff;
}

/* 已登录内容容器 */
.logged-in-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    color: #333;
    position: relative;
}

.username {
    font-size: 14px;
}

.dropdown-arrow {
    font-size: 12px;
    color: #999;
}

/* 用户下拉菜单 */
.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    display: none;
    z-index: 1000;
    overflow: hidden;
}

.user-info.open .user-dropdown-menu,
.user-info:hover .user-dropdown-menu,
.user-dropdown-menu:hover {
    display: block;
}

.user-dropdown-row {
    display: flex;
    border-bottom: 1px solid #e8e8e8;
}

.user-dropdown-row .user-dropdown-item {
    flex: 1;
    border-right: 1px solid #e8e8e8;
}

.user-dropdown-row .user-dropdown-item:last-child {
    border-right: none;
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.user-dropdown-item:hover {
    background: #f5f5f5;
}

.user-dropdown-item svg {
    flex-shrink: 0;
}

.user-dropdown-logout {
    color: #ff4d4f;
    border-top: 1px solid #e8e8e8;
}

.user-dropdown-logout:hover {
    background: #fff1f0;
}

.balance {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.balance-label {
    color: #666;
}

.balance-value {
    color: #ff4d4f;
    font-weight: 600;
}

.btn-recharge,
.btn-agent {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-recharge {
    background-color: #3066ff;
    color: #fff;
}

.btn-recharge:hover {
    background-color: #4d7aff;
}

.btn-agent {
    background-color: #3066ff;
    color: #fff;
}

.btn-agent:hover {
    background-color: #4d7aff;
}

/* Banner区域 */
.banner-section {
    background-color: #fff;
    padding: 0;
    position: relative;
    width: 100%;
}

.banner-container {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    color: #666;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.banner-arrow:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.banner-arrow-left {
    left: 0;
}

.banner-arrow-right {
    right: 0;
}

.banner-content {
    width: 100%;
}

.banner-full-image {
    width: 100%;
    aspect-ratio: 1280 / 417;
    border-radius: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #333;
}

.overlay-url-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #1890ff;
    margin-bottom: 20px;
}

.overlay-globe-icon {
    font-size: 20px;
}

.overlay-url-text {
    font-weight: 500;
}

.overlay-title-large {
    font-size: 32px;
    font-weight: 700;
    color: #1890ff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.overlay-service-text {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.overlay-contact {
    font-size: 24px;
    font-weight: 600;
    color: #ff4d4f;
    margin-bottom: 20px;
}

.overlay-description {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.overlay-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.overlay-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background-color: rgba(24, 144, 255, 0.1);
    border-radius: 6px;
}

.overlay-feature-logo {
    font-size: 18px;
    font-weight: 700;
    color: #1890ff;
}

.overlay-feature-text {
    font-size: 14px;
    color: #333;
}

.overlay-feature-check {
    width: 24px;
    height: 24px;
    background-color: #52c41a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
}

.banner-right {
    flex: 1;
    position: relative;
}

.banner-right .banner-image-wrapper {
    width: 100%;
    height: 400px;
}

.url-info {
    margin-bottom: 20px;
    font-size: 18px;
}

.url-label {
    color: #1890ff;
    margin-right: 8px;
}

.url-value {
    font-weight: 600;
    margin-right: 15px;
}

.url-primary {
    color: #ff4d4f;
}

.url-secondary {
    color: #ff4d4f;
}

.banner-title {
    font-size: 36px;
    font-weight: 700;
    color: #1890ff;
    margin-bottom: 30px;
    line-height: 1.4;
}

.title-highlight {
    color: #ff4d4f;
}

.service-info {
    display: flex;
    gap: 40px;
}

.service-col {
    flex: 1;
}

.service-item {
    margin-bottom: 15px;
}

.service-text {
    color: #333;
    font-size: 14px;
}

.service-contact {
    margin-top: 10px;
}

.contact-handle {
    color: #ff4d4f;
    font-size: 24px;
    font-weight: 600;
}

.service-description {
    color: #333;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background-color: #f0f7ff;
    border-radius: 6px;
}

.feature-logo {
    display: flex;
    align-items: center;
    gap: 2px;
}

.feature-logo-b {
    color: #ff7a00;
    font-size: 20px;
    font-weight: 700;
}

.feature-logo-cc {
    color: #1890ff;
    font-size: 20px;
    font-weight: 700;
}

.feature-check {
    width: 24px;
    height: 24px;
    background-color: #52c41a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
}

.feature-text {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

/* 固定的电报图标（右侧悬浮） */
.telegram-icon-fixed {
    position: fixed;
    right: 20px;
    bottom: 80px;
    width: 60px;
    height: 60px;
    background-color: #1890ff;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(24, 144, 255, 0.4);
    transition: all 0.3s;
    z-index: 999;
    text-decoration: none;
}

.telegram-icon-fixed:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(24, 144, 255, 0.6);
}

.telegram-icon-fixed svg {
    width: 32px;
    height: 32px;
}

/* 热门游戏区域 */
.hot-games-section {
    padding: 10px 0 60px 0;
    background-color: #fff;
}

.section-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-title-svg {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-title-svg svg {
    max-width: 100%;
    height: auto;
}

.games-scroll-container {
    padding: 10px 0 20px 0;
}

.games-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    max-width: 100%;
}

.game-item {
    cursor: pointer;
    transition: transform 0.3s;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 853 / 1280;
}

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

.game-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.game-name {
    display: none;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .banner-content {
        flex-direction: column;
    }
    
    .banner-left {
        flex: 1;
        width: 100%;
    }
    
    .service-info {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        height: auto;
        padding: 15px 20px;
    }
    
    .header-left {
        width: 100%;
        justify-content: space-between;
        margin-bottom: 15px;
    }
    
    .main-nav {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .header-right {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .banner-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
}

/* ========== 登录/注册弹窗样式 ========== */
.auth-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
}

.auth-modal-overlay.show {
    display: block;
}

.auth-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    width: 740px;
    height: 710px;
    max-width: 740px;
    max-height: 710px;
    overflow: hidden;
}

.auth-modal.show {
    display: block;
}

.auth-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 28px;
    color: #666;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.auth-modal-close:hover {
    color: #333;
}

.auth-modal-content {
    display: flex;
    height: 100%;
}

/* 左侧广告区域 */
.auth-modal-left {
    flex: 1;
    width: 370px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.auth-ad-image {
    width: 370px;
    height: 660px;
    object-fit: cover;
}

/* 右侧表单区域 */
.auth-modal-right {
    flex: 1;
    width: 370px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 710px;
    background: #fff;
}

/* 标签切换 */
.auth-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.auth-tab {
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.auth-tab.active {
    color: #3066ff;
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #3066ff;
}

/* 表单样式 */
.auth-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.auth-form-group {
    margin-bottom: 16px;
}

.auth-form-group label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
    font-weight: 500;
}

.auth-input {
    width: 284px;
    height: 32px;
    padding: 0 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
    background-color: #F3F6FA;
    transition: border-color 0.3s;
}

.auth-input:focus {
    outline: none;
    border-color: #3066ff;
}

.auth-input::placeholder {
    color: #999;
}

/* 验证码组 */
.captcha-group {
    position: relative;
}

.captcha-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
}

.captcha-input {
    flex: 1;
}

.captcha-canvas {
    flex-shrink: 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.captcha-canvas:hover {
    border-color: #3066ff;
}

/* 表单链接 */
.auth-form-links {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.auth-link {
    color: #3066ff;
    text-decoration: none;
    font-size: 13px;
    transition: opacity 0.3s;
}

.auth-link:hover {
    opacity: 0.8;
}

/* 提交按钮 */
.auth-submit-btn {
    width: 100%;
    padding: 12px;
    background: #3066ff;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: auto;
}

.auth-submit-btn:hover {
    background: #4d7aff;
}

.auth-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* 表单底部 */
.auth-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    font-size: 13px;
    color: #666;
}

.auth-form-footer span {
    margin-right: 5px;
}

.contact-service {
    margin-left: auto;
}

/* 响应式 */
@media (max-width: 768px) {
    .auth-modal {
        width: 95%;
        max-width: none;
        height: auto;
        max-height: 90vh;
    }
    
    .auth-modal-content {
        flex-direction: column;
        height: auto;
    }
    
    .auth-modal-left {
        height: 200px;
        flex: none;
    }
    
    .auth-modal-right {
        padding: 30px 20px;
    }
    
    .auth-tabs {
        gap: 15px;
    }
    
    .auth-tab {
        font-size: 16px;
        padding: 8px 15px;
    }
}

/* ========== 充值弹窗样式（全局可用，仅作用于充值弹窗） ========== */
.recharge-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
}

.recharge-modal-overlay.show {
    display: block;
}

.recharge-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.recharge-modal.show {
    display: block;
}

.recharge-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.recharge-modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.recharge-modal-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: color 0.3s;
}

.recharge-modal-close:hover {
    color: #333;
}

.recharge-modal-content {
    padding: 20px;
}

.recharge-modal .recharge-section {
    margin-bottom: 24px;
}

.recharge-modal .recharge-section:last-child {
    margin-bottom: 0;
}

.recharge-modal .recharge-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    font-weight: 500;
}

.recharge-modal .recharge-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.recharge-modal .recharge-option-btn {
    padding: 10px 20px;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    background: #fff;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.recharge-modal .recharge-option-btn:hover {
    border-color: #3066ff;
    color: #3066ff;
}

.recharge-modal .recharge-option-btn.active {
    background: #3066ff;
    border-color: #3066ff;
    color: #fff;
}

.recharge-modal .amount-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.recharge-modal .amount-btn {
    flex: 1;
    min-width: 80px;
    padding: 12px 16px;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    background: #fff;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.recharge-modal .amount-btn:hover {
    border-color: #3066ff;
    color: #3066ff;
}

.recharge-modal .amount-btn.active {
    background: #3066ff;
    border-color: #3066ff;
    color: #fff;
}

.recharge-modal .custom-amount-input {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #f5f5f5;
    border-radius: 8px;
}

.recharge-modal .amount-control-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    background: #fff;
    color: #666;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.recharge-modal .amount-control-btn:hover {
    border-color: #3066ff;
    color: #3066ff;
}

.recharge-modal .custom-amount-field {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #333;
    outline: none;
    padding: 0;
}

.recharge-modal .custom-amount-field::placeholder {
    color: #999;
}

.recharge-modal .amount-unit {
    font-size: 14px;
    color: #666;
    flex-shrink: 0;
}

.recharge-modal-footer {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
}

.recharge-modal .recharge-submit-btn {
    width: 100%;
    padding: 14px;
    background: #3066ff;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.recharge-modal .recharge-submit-btn:hover {
    background: #4d7aff;
}

.recharge-modal .recharge-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* 确认弹窗样式 */
.recharge-confirm-modal {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 10003 !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
}

.recharge-confirm-modal[style*="flex"] {
    display: flex !important;
}

.recharge-confirm-dialog {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin: 20px;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.recharge-confirm-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.recharge-confirm-warning {
    color: #ff6b6b;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 500;
}

.recharge-confirm-text {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.recharge-confirm-amount {
    color: #ff6b6b;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
}

.recharge-confirm-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.recharge-confirm-btn {
    padding: 10px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.recharge-confirm-btn-cancel {
    background: #f5f5f5;
    color: #666;
}

.recharge-confirm-btn-cancel:hover {
    background: #e8e8e8;
}

.recharge-confirm-btn-ok {
    background: #3066ff;
    color: #fff;
}

.recharge-confirm-btn-ok:hover {
    background: #4d7aff;
}

/* 订单信息样式 */
.recharge-order-content {
    display: none;
}

.recharge-order-content.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.recharge-address-copy {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f5f5f5;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.recharge-address-text {
    flex: 1;
    font-size: 13px;
    color: #333;
    word-break: break-all;
    line-height: 1.4;
}

.recharge-copy-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: color 0.3s;
    flex-shrink: 0;
}

.recharge-copy-btn:hover {
    color: #3066ff;
}

.recharge-warm-reminder {
    margin-top: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 3px solid #3066ff;
}

