* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 30%, #2d0000 60%, #000000 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 20, 60, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 215, 0, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    /*max-width: 375px;*/
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.header {
    background: linear-gradient(45deg, #FFD700 0%, #DC143C 100%);
    padding: 10px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px),
        radial-gradient(circle, rgba(255,215,0,0.1) 2px, transparent 2px);
    background-size: 25px 25px, 50px 50px;
    animation: sparkleMove 6s linear infinite;
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.1) 50%, transparent 52%);
    animation: shine 3s ease-in-out infinite;
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

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

.logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3))
           drop-shadow(0 0 15px rgba(255,215,0,0.6));
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo h1 {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.4),
        2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 3px;
    position: relative;
}

.logo p {
    font-size: 12px;
    color: rgba(255,255,255,0.9);
}

.header-badge {
    background: linear-gradient(45deg, rgba(255,255,255,0.9), rgba(255,215,0,0.8));
    padding: 12px 20px;
    border-radius: 25px;
    border: 3px solid #FFD700;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    animation: glow 2s ease-in-out infinite alternate;
}

.header-badge span {
    color: #8B0000;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}

/* Hero Section */
.hero {
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #FFD700 0%, #DC143C 25%, #8B0000 50%, #DC143C 75%, #FFD700 100%);
    background-size: 400% 400%;
    animation: gradientShift 3s ease-in-out infinite;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.6),
        0 0 60px rgba(220, 20, 60, 0.4),
        0 15px 35px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-icon::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, #FFD700, #DC143C, #8B0000, #DC143C, #FFD700);
    background-size: 400% 400%;
    border-radius: 50%;
    z-index: -1;
    animation: gradientShift 4s ease-in-out infinite, rotate 8s linear infinite;
}

.hero-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    border-radius: 50%;
    animation: shimmer 2s ease-in-out infinite;
    z-index: 1;
}

.hero-icon i {
    font-size: 45px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    z-index: 2;
}

.hero h2 {
    font-size: 32px;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 
        2px 2px 0px #DC143C,
        0 0 15px rgba(255, 215, 0, 0.8),
        0 0 30px rgba(220, 20, 60, 0.4);
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin: 30px 0 0 0;
    padding: 0 5px;
    max-width: 100%;
    overflow: hidden;
}

.stat-item {
    text-align: center;
    background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(220,20,60,0.15));
    padding: 10px 5px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255,215,0,0.3);
    flex: 1;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    display: none; /* 移除流光效果 */
}

.stat-number {
    font-size: 26px;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 
        2px 2px 0px #DC143C,
        0 0 10px rgba(255,215,0,0.5),
        0 0 20px rgba(220,20,60,0.3);
    margin-bottom: 8px;
    line-height: 1.2;
    z-index: 2;
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.stat-number-2 {
    font-size: 26px;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 
        2px 2px 0px #DC143C,
        0 0 10px rgba(255,215,0,0.5),
        0 0 20px rgba(220,20,60,0.3);
    margin-bottom: 8px;
    line-height: 1.2;
    z-index: 2;
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    margin-top: 5px;
    z-index: 2;
    position: relative;
    font-weight: 600;
}

/* Floating Casino Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    display: none; /* 隐藏漂浮元素 */
}

.casino-chip {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #FFD700, #DC143C, #FFD700);
    background-size: 200% 200%;
    animation: float 6s ease-in-out infinite, gradientShift 4s ease-in-out infinite;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 0 15px rgba(255, 215, 0, 0.4),
        0 0 30px rgba(220, 20, 60, 0.2);
    opacity: 0.7;
    z-index: 1;
}

.casino-chip::before {
    content: '💎';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    animation: spin 3s linear infinite;
    z-index: 2;
}

.casino-chip::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rotate 8s linear infinite reverse;
    z-index: 1;
}

.chip1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.chip2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.chip3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.chip4 {
    top: 40%;
    left: 5%;
    animation-delay: 1s;
}

.chip5 {
    bottom: 40%;
    right: 5%;
    animation-delay: 3s;
}

.dollar-sign {
    position: absolute;
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(45deg, #FFD700, #DC143C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    animation: pulse-float 4s ease-in-out infinite;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    filter: drop-shadow(0 0 8px rgba(220, 20, 60, 0.3));
    z-index: 1;
}

.sign1 {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.sign2 {
    bottom: 30%;
    right: 10%;
    animation-delay: 3s;
}

.sign3 {
    top: 50%;
    left: 15%;
    animation-delay: 2s;
}

.sign4 {
    bottom: 50%;
    left: 5%;
    animation-delay: 4s;
}

/* Sections */
.main-benefits-section,
.contact-section {
    padding: 10px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 15px;
}

.section-title h3 {
    font-size: 22px;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Cards */
.card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 248, 220, 0.9) 50%, 
        rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 25px 20px;
    margin-bottom: 20px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #FFD700 0%, #DC143C 50%, #FFD700 100%);
}

.card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FFD700, #DC143C);
    border-radius: 25px;
    z-index: -1;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.card-header i {
    font-size: 28px;
    background: linear-gradient(45deg, #FFD700, #DC143C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.card-header h3 {
    font-size: 22px;
    background: linear-gradient(45deg, #333, #8B0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.card-content p {
    line-height: 1.6;
    font-size: 15px;
}

/* Main Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.benefit-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 10px;
    background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(220,20,60,0.05));
    border-radius: 15px;
    border: 2px solid rgba(255,215,0,0.3);
    transition: all 0.3s ease;
}

.benefit-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,215,0,0.3);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #FFD700, #DC143C);
    box-shadow: 0 4px 12px rgba(255,215,0,0.4);
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 24px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Contact Section Redesign */
.contact-card-main {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.15) 0%, 
        rgba(220, 20, 60, 0.1) 50%, 
        rgba(255, 215, 0, 0.15) 100%);
    border: 3px solid #FFD700;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.4),
        0 15px 35px rgba(0, 0, 0, 0.3);
}

.contact-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.contact-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-title i {
    font-size: 24px;
    color: #FFD700;
    text-shadow: 0 2px 4px rgba(220, 20, 60, 0.3);
}

.contact-header h3 {
    font-size: 24px;
    color: #FFD700;
    text-shadow: 
        2px 2px 0px #DC143C,
        0 0 10px rgba(255,215,0,0.5);
    font-weight: 900;
    margin: 0;
}

.contact-requirements {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
    padding-left: 0;
}

.req-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.req-item i {
    color: #28a745;
    font-size: 16px;
}

.req-item span {
    color: #333;
}

.contact-info-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 20px;
}

.contact-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.contact-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, #FFD700, #DC143C);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.4),
        0 8px 25px rgba(220, 20, 60, 0.2);
    flex-shrink: 0;
}

.contact-avatar i {
    font-size: 32px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.contact-details h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 5px 0;
}

.contact-details p {
    font-size: 14px;
    margin: 0 0 8px 0;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 215, 0, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #DC143C;
}

.contact-badge i {
    font-size: 10px;
    color: #FFD700;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.contact-btn-main.telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, #0088cc, #0066aa);
    color: #fff;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 
        0 8px 20px rgba(0, 136, 204, 0.4),
        0 4px 15px rgba(0, 102, 170, 0.3);
    transition: all 0.3s ease;
    min-width: 220px;
    justify-content: center;
}

.contact-btn-main.telegram-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 12px 30px rgba(0, 136, 204, 0.6),
        0 8px 25px rgba(0, 102, 170, 0.4);
}

.contact-btn-main.telegram-btn i {
    font-size: 20px;
}

.contact-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
}

.contact-note i {
    color: #28a745;
    font-size: 14px;
}

.contact-header p {
    font-size: 14px;
    font-weight: 600;
}

.old-contact-info-removed {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #FFD700, #DC143C);
    color: #fff;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 
        0 8px 20px rgba(255, 215, 0, 0.4),
        0 4px 15px rgba(220, 20, 60, 0.3);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact-btn-main:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 12px 30px rgba(255, 215, 0, 0.5),
        0 6px 20px rgba(220, 20, 60, 0.4);
}

/* 展开/收起按钮 */
.expand-section, .collapse-section {
    text-align: center;
    margin-top: 20px;
}

.expand-hint {
    color: #FFD700;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    animation: blinkText 1.5s ease-in-out infinite;
}

@keyframes blinkText {
    0%, 100% {
        opacity: 1;
        color: #FFD700;
    }
    50% {
        opacity: 0.6;
        color: #DC143C;
    }
}

.expand-btn {
    background: linear-gradient(45deg, #FFD700, #DC143C);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    animation: pulseScale 2s ease-in-out infinite;
    position: relative;
}

.expand-btn::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #FFD700, #DC143C);
    border-radius: 30px;
    z-index: -1;
    animation: pulseGlow 2s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes pulseScale {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6), 0 0 30px rgba(220, 20, 60, 0.4);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
        filter: blur(1px);
    }
    50% {
        transform: scale(1.15);
        opacity: 0.2;
        filter: blur(2px);
    }
}

.expand-btn:hover {
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    animation: none;
}

.expand-btn:hover::before {
    animation: none;
}

.expand-btn i {
    transition: transform 0.3s ease;
}

/* 详细信息区域 */
.detailed-info {
    padding: 20px 0;
    animation: slideDown 0.5s ease-out;
}

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

/* 详细信息中的小图标 */
.benefit-icon-small, .commission-icon-small {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #FFD700, #DC143C);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.benefit-icon-small i, .commission-icon-small i {
    font-size: 18px;
    color: #fff;
}

.benefit-item, .commission-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.benefit-item:last-child, .commission-item:last-child {
    border-bottom: none;
}

/* 详细佣金项目样式 */
.commission-item.highlight-detail {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(220, 20, 60, 0.05));
    border-radius: 15px;
    padding: 18px;
    margin: 10px 0;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
}

.commission-item.special-detail {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(255, 215, 0, 0.05));
    border-radius: 15px;
    padding: 18px;
    margin: 10px 0;
    border: 2px solid rgba(220, 20, 60, 0.3);
    position: relative;
}

.commission-highlight-small {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(45deg, #FFD700, #DC143C);
    color: #fff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* 支付相关样式 */
.payment-schedule {
    margin-bottom: 20px;
}

.payment-date {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(220, 20, 60, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.payment-date i {
    font-size: 20px;
    color: #FFD700;
    margin-right: 10px;
}

.payment-date span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.payment-methods h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.payment-option i {
    font-size: 16px;
    color: #FFD700;
    width: 18px;
}

.payment-features {
    display: flex;
    justify-content: space-around;
    gap: 8px;
}

.feature-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(220, 20, 60, 0.05));
    border-radius: 12px;
    flex: 1;
    text-align: center;
}

.feature-badge i {
    font-size: 18px;
    color: #FFD700;
}

.feature-badge span {
    font-size: 11px;
    color: #333;
    font-weight: 600;
}

/* 要求相关样式 */
.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.requirement-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(45deg, #FFD700, #DC143C);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.requirement-icon i {
    font-size: 14px;
    color: #fff;
}

.requirement-item p {
    font-size: 14px;
    line-height: 1.5;
}



/* Commission */
.commission-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    margin-bottom: 12px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
}

.commission-item.highlight {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.2), 
        rgba(220, 20, 60, 0.15), 
        rgba(255, 215, 0, 0.2));
    border: 3px solid #FFD700;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
}

.commission-item.highlight::before {
    content: '⭐ HOT ⭐';
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(45deg, #FFD700, #DC143C);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: bounce 2s ease-in-out infinite;
}

.commission-item.special {
    background: linear-gradient(135deg, 
        rgba(220, 20, 60, 0.2), 
        rgba(139, 0, 0, 0.15), 
        rgba(255, 215, 0, 0.1));
    border: 3px solid #DC143C;
    box-shadow: 
        0 0 30px rgba(220, 20, 60, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.commission-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #FFD700, #DC143C, #FFD700);
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.4),
        0 4px 15px rgba(220, 20, 60, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.commission-icon i {
    font-size: 24px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.commission-content h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.commission-content p {
    font-size: 14px;
    line-height: 1.5;
}

.commission-highlight {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(45deg, #FFD700, #DC143C, #FFD700);
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    color: #fff;
    padding: 12px 18px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 900;
    box-shadow: 
        0 6px 20px rgba(255, 215, 0, 0.5),
        0 0 20px rgba(220, 20, 60, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.5);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Payment */
.payment-date {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.1));
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.payment-date i {
    font-size: 24px;
    color: #ff6b35;
    margin-right: 10px;
}

.payment-date span {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.payment-methods h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.payment-option i {
    font-size: 18px;
    color: #ff6b35;
    width: 20px;
}

.payment-features {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.feature-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.1));
    border-radius: 15px;
    flex: 1;
    text-align: center;
}

.feature-badge i {
    font-size: 20px;
    color: #ff6b35;
}

.feature-badge span {
    font-size: 12px;
    color: #333;
    font-weight: 600;
}

/* Requirements */
.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

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

.requirement-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.requirement-icon i {
    font-size: 16px;
    color: #fff;
}

.requirement-item p {
    font-size: 14px;
    line-height: 1.5;
}

/* Contact */
.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.contact-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-avatar i {
    font-size: 40px;
    color: #fff;
}

.contact-details h4 {
    font-size: 18px;
    color: #333;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-details p {
    font-size: 14px;
    margin-bottom: 10px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.contact-method i {
    font-size: 16px;
    color: #ff6b35;
}

.contact-method span {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

/* Floating Contact */
.floating-contact {
    position: fixed;
    bottom: 25px;
    right: 15px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.telegram {
    background: linear-gradient(135deg, #FFD700 0%, #DC143C 100%);
    box-shadow: 
        0 0 25px rgba(255, 215, 0, 0.6),
        0 0 50px rgba(220, 20, 60, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.contact-btn span {
    font-size: 9px;
    margin-top: 3px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.contact-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 25px 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-logo h3 {
    font-size: 24px;
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

/* Animations */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

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

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

@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

@keyframes glow {
    from { 
        box-shadow: 
            0 0 20px rgba(255, 215, 0, 0.5),
            inset 0 0 20px rgba(255, 255, 255, 0.2);
    }
    to { 
        box-shadow: 
            0 0 30px rgba(255, 215, 0, 0.8),
            0 0 40px rgba(220, 20, 60, 0.6),
            inset 0 0 20px rgba(255, 255, 255, 0.3);
    }
}

@keyframes shimmer {
    0% { left: -100%; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(120deg); }
    66% { transform: translateY(5px) rotate(240deg); }
}

@keyframes pulse-float {
    0%, 100% { transform: scale(1) translateY(0px); opacity: 0.4; }
    50% { transform: scale(1.1) translateY(-8px); opacity: 0.6; }
}

@keyframes pulse-glow-luxury {
    0%, 100% { 
        box-shadow: 
            0 0 25px rgba(255, 215, 0, 0.6),
            0 0 50px rgba(220, 20, 60, 0.4),
            0 8px 25px rgba(0, 0, 0, 0.3);
    }
    50% { 
        box-shadow: 
            0 0 35px rgba(255, 215, 0, 0.9),
            0 0 70px rgba(220, 20, 60, 0.7),
            0 12px 35px rgba(0, 0, 0, 0.4);
        transform: scale(1.05);
    }
}

/* Contact Section Mobile Styles */
@media (max-width: 768px) {
    .contact-info-main {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .contact-profile {
        justify-content: center;
        text-align: center;
    }
    
    .contact-actions {
        align-items: center;
        width: 100%;
    }
    
    .contact-btn-main.telegram-btn {
        min-width: 100%;
        justify-content: center;
    }
    
    .contact-requirements {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        justify-content: flex-start;
    }
}

/* Responsive adjustments */
@media (max-width: 320px) {
    .container {
        max-width: 320px;
        padding: 0 12px;
    }
    
    .hero h2 {
        font-size: 24px;
    }
    
    .hero-stats {
        gap: 8px;
        padding: 0 2px;
        margin: 25px 0 0 0;
    }
    
    .stat-item {
        padding: 18px 8px;
        min-height: 80px;
        flex: 1;
        border-radius: 15px;
    }
    
    .stat-number {
        font-size: 20px;
        margin-bottom: 6px;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        font-weight: 900;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .floating-contact {
        bottom: 20px;
        right: 15px;
    }
    
    .contact-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}
