* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', 'Consolas', monospace;
    background-color: #000000;
    color: #00ff00;
    line-height: 1.6;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 0, 0.03) 2px, rgba(0, 255, 0, 0.03) 4px);
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 导航栏 - 黑客风格 */
.navbar {
    background: #000000;
    color: #00ff00;
    padding: 0;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5), inset 0 0 20px rgba(0, 255, 0, 0.1);
    border-bottom: 2px solid #00ff00;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
}

.nav-brand h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00ff00;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
    font-family: 'Courier New', monospace;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: #00ff00;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 2px;
    transition: all 0.2s;
    font-size: 0.9rem;
    border: 1px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(0, 255, 0, 0.1);
    outline: 1px solid #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    text-shadow: 0 0 5px #00ff00;
}

.wallet-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wallet-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wallet-info span {
    background: #0a0a0a;
    padding: 8px 12px;
    border-radius: 2px;
    font-size: 0.85rem;
    font-family: monospace;
    color: #00ff00;
    border: 1px solid #00ff00;
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}

/* 按钮 - 亚马逊橙色 */
.btn {
    padding: 8px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
}

.btn-primary {
    background: #000000;
    color: #00ff00;
    border: 2px solid #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    text-shadow: 0 0 5px #00ff00;
}

.btn-primary:hover {
    background: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
    text-shadow: 0 0 10px #00ff00;
}

.btn-secondary {
    background: #000000;
    color: #00ff00;
    border: 2px solid #00ff00;
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}

.btn-secondary:hover {
    background: rgba(0, 255, 0, 0.05);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.btn-large {
    padding: 12px 30px;
    font-size: 1rem;
}

/* 分类导航 */
.category-nav {
    background: #000000;
    padding: 10px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #00ff00;
    box-shadow: 0 2px 5px rgba(0, 255, 0, 0.2);
}

.category-list {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding: 0 15px;
}

.category-item {
    padding: 6px 12px;
    border: 1px solid #00ff00;
    background: #000000;
    color: #00ff00;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.85rem;
}

.category-item:hover,
.category-item.active {
    background: rgba(0, 255, 0, 0.1);
    border-color: #00ff00;
    color: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    text-shadow: 0 0 5px #00ff00;
}

/* 页面区域标题 */
.section-header {
    margin: 40px 0 30px;
    text-align: center;
    position: relative;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #00ff00;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
}

.title-icon {
    font-size: 2.2rem;
    animation: float 3s ease-in-out infinite;
}

.title-text {
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    filter: drop-shadow(0 0 5px #00ff00);
}

.title-decoration {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00ff00, transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px #00ff00;
}

.section-subtitle {
    color: #00cc00;
    font-size: 0.95rem;
    margin-top: 15px;
    font-weight: 400;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* 产品网格 - 精美潮流风格 */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.product-card {
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 255, 0, 0.2), 0 2px 4px rgba(0, 255, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    padding: 0;
    border: 1px solid rgba(0, 255, 0, 0.3);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ff00, #00cc00, #00ff00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px #00ff00;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 255, 0, 0.3), 0 4px 8px rgba(0, 255, 0, 0.2);
    border-color: rgba(0, 255, 0, 0.6);
}

.product-image-wrapper {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
    position: relative;
    overflow: hidden;
    padding: 15px;
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
}

.product-image-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.05) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg);
    }
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 15px;
    background: #000000;
}

.product-name {
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 8px;
    color: #00ff00;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.stars {
    color: #00ff00;
    font-size: 0.9rem;
    text-shadow: 0 0 5px #00ff00;
}

.rating-count {
    color: #00cc00;
    font-size: 0.8rem;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 8px;
}

.price-symbol {
    font-size: 0.85rem;
    color: #00cc00;
}

.price-amount {
    font-size: 1.3rem;
    font-weight: 600;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.product-prime {
    color: #00cc00;
    font-size: 0.75rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.product-actions {
    margin-top: auto;
    padding-top: 15px;
}

.product-actions .btn {
    width: 100%;
    padding: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    box-shadow: 0 4px 12px rgba(0, 255, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid #00ff00;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.product-actions .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 255, 0, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.product-actions .btn:hover::before {
    width: 300px;
    height: 300px;
}

.product-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 255, 0, 0.6);
    text-shadow: 0 0 10px #00ff00;
}

/* 产品详情 */
.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.product-detail-image img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    background: #000000;
    padding: 20px;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.product-detail-info {
    padding: 20px;
}

.product-price-large {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin: 15px 0;
}

.product-price-large .price-symbol {
    font-size: 1rem;
}

.product-price-large .price-amount {
    font-size: 2rem;
}

.product-description {
    color: #00cc00;
    line-height: 1.6;
    margin: 20px 0;
}

.product-quantity-selector {
    margin: 20px 0;
}

.product-quantity-selector select {
    padding: 6px 10px;
    border: 1px solid #00ff00;
    border-radius: 3px;
    background: #000000;
    color: #00ff00;
}

/* 订单列表 */
.orders-list {
    background: #000000;
    border-radius: 0;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 255, 0, 0.2);
    border: 1px solid #00ff00;
}

.order-item {
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
    padding: 20px 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

.order-item:last-child {
    border-bottom: none;
}

.order-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    background: #0a0a0a;
    padding: 10px;
    border: 1px solid rgba(0, 255, 0, 0.2);
}

.order-info {
    flex: 1;
}

.order-name {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #00ff00;
}

.order-meta {
    color: #00cc00;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.order-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00ff00;
    margin-top: 10px;
    text-shadow: 0 0 5px #00ff00;
}

.order-status {
    padding: 4px 10px;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 500;
}

.order-status.pending {
    background: rgba(255, 255, 0, 0.1);
    color: #ffff00;
    border: 1px solid #ffff00;
    box-shadow: 0 0 5px rgba(255, 255, 0, 0.3);
}

.order-status.paid {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    border: 1px solid #00ff00;
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}

.order-status.completed {
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    border: 1px solid #00ffff;
    box-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

.order-status.failed {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border: 1px solid #ff0000;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

/* 个人中心标签页 */
.profile-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #00ff00;
}

.tab-btn {
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: #00cc00;
    font-size: 1rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s;
}

.tab-btn:hover {
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.tab-btn.active {
    color: #00ff00;
    border-bottom-color: #00ff00;
    font-weight: 600;
    text-shadow: 0 0 10px #00ff00;
    box-shadow: 0 2px 5px rgba(0, 255, 0, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* 推广中心样式 */
.referral-card {
    background: #000000;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 255, 0, 0.2);
    border: 1px solid #00ff00;
}

.referral-link-box {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.referral-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #00ff00;
    border-radius: 3px;
    font-size: 0.9rem;
    background: #000000;
    color: #00ff00;
}

.referral-qr {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background: #0a0a0a;
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 0, 0.2);
}

.referral-qr #qr-code {
    width: 200px;
    height: 200px;
    margin: 0 auto 10px;
    background: white;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #00ff00;
}

.referral-stats {
    background: #000000;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 255, 0, 0.2);
    border: 1px solid #00ff00;
}

.stats-grid-small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .stat-item {
        padding: 10px;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .stat-value {
        font-size: 1.2rem;
    }
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: #0a0a0a;
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 0, 0.2);
}

.stat-label {
    font-size: 0.85rem;
    color: #00cc00;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.referrer-info {
    background: #000000;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 255, 0, 0.2);
    border: 1px solid #00ff00;
}

.info-item {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
    color: #00ff00;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: #00cc00;
    min-width: 100px;
}

/* 标题样式 */
h2, h3 {
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid #00ff00;
    padding-bottom: 10px;
}

h3 {
    font-size: 1.4rem;
    margin-top: 20px;
}

/* 个人信息卡片样式 */
.profile-info-card {
    background: #000000;
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 255, 0, 0.2);
    border: 1px solid #00ff00;
}

.profile-form {
    max-width: 600px;
}

.profile-form h3 {
    color: #00ff00;
    margin-bottom: 20px;
    text-shadow: 0 0 5px #00ff00;
}

.profile-form .form-group {
    margin-bottom: 25px;
}

.profile-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #00ff00;
    font-size: 0.95rem;
}

.profile-form .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #00ff00;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: 'Courier New', monospace;
    background: #0a0a0a;
    color: #00ff00;
    transition: all 0.3s;
}

.profile-form .form-group input:focus {
    outline: none;
    border-color: #00ff00;
    box-shadow: 0 0 0 3px rgba(0, 255, 0, 0.2), 0 0 15px rgba(0, 255, 0, 0.3);
    background: #000000;
}

.profile-form .form-group input::placeholder {
    color: #006600;
}

.profile-form .btn-primary {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: auto;
    min-width: 150px;
}

/* 表单小字和代码样式 */
small {
    color: #00cc00;
    font-size: 0.85rem;
}

code {
    color: #00ff00;
    background: rgba(0, 255, 0, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

/* 佣金中心样式 */
.commission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.stat-card-small {
    background: #000000;
    border-radius: 4px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 255, 0, 0.2);
    border: 1px solid #00ff00;
    text-align: center;
}

.stat-card-small .stat-label {
    font-size: 0.9rem;
    color: #00cc00;
    margin-bottom: 10px;
}

.stat-card-small .stat-value {
    font-size: 1.3rem;
    font-weight: 600;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.commission-list-section,
.withdrawal-section,
.withdrawal-history {
    background: #000000;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 255, 0, 0.2);
    border: 1px solid #00ff00;
}

.commissions-list,
.withdrawals-list {
    margin-top: 15px;
}

.commission-item,
.withdrawal-item {
    padding: 15px;
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #00ff00;
}

.commission-item:last-child,
.withdrawal-item:last-child {
    border-bottom: none;
}

.commission-detail,
.withdrawal-detail {
    flex: 1;
}

.commission-amount,
.withdrawal-amount {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.withdrawal-form {
    margin-top: 15px;
}

.withdrawal-status {
    padding: 4px 10px;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 500;
}

.withdrawal-status.pending {
    background: rgba(255, 255, 0, 0.1);
    color: #ffff00;
    border: 1px solid #ffff00;
    box-shadow: 0 0 5px rgba(255, 255, 0, 0.3);
}

.withdrawal-status.approved {
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    border: 1px solid #00ffff;
    box-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

.withdrawal-status.paid {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    border: 1px solid #00ff00;
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}

.withdrawal-status.rejected {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border: 1px solid #ff0000;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

/* 模态框 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    overflow: auto;
}

.modal-content {
    background: #000000;
    margin: 5% auto;
    padding: 30px;
    border-radius: 0;
    width: 90%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 255, 0, 0.3);
    border: 2px solid #00ff00;
    color: #00ff00;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #00ff00;
    cursor: pointer;
}

.close:hover {
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 30px 0;
}

.pagination button {
    padding: 8px 12px;
    border: 1px solid #00ff00;
    background: #000000;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s;
    color: #00ff00;
}

.pagination button:hover:not(:disabled) {
    background: rgba(0, 255, 0, 0.1);
    border-color: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination .active {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border-color: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

/* 加载动画 */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    color: #00ff00;
}

.spinner {
    border: 4px solid rgba(0, 255, 0, 0.2);
    border-top: 4px solid #00ff00;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 表单 */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #00ff00;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #00ff00;
    border-radius: 2px;
    font-size: 0.9rem;
    font-family: inherit;
    background: #000000;
    color: #00ff00;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #00ff00;
    box-shadow: 0 0 0 3px rgba(0, 255, 0, 0.2), 0 0 10px rgba(0, 255, 0, 0.3);
}

/* 顶部栏（钱包连接） */
.top-bar {
    background: #000000;
    color: #00ff00;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 255, 0, 0.3), inset 0 0 20px rgba(0, 255, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #00ff00;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00ff00;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
    font-family: 'Courier New', monospace;
}

/* 底部导航栏 */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000;
    border-top: 2px solid #00ff00;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    box-shadow: 0 -2px 8px rgba(0, 255, 0, 0.3);
    z-index: 1000;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #00cc00;
    padding: 8px 20px;
    border-radius: 4px;
    transition: all 0.2s;
    min-width: 80px;
}

.bottom-nav-item:hover {
    background: rgba(0, 255, 0, 0.05);
}

.bottom-nav-item .nav-icon {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.bottom-nav-item .nav-label {
    font-size: 0.75rem;
    color: #565959;
}

.bottom-nav-item.active {
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
}

.bottom-nav-item.active .nav-label {
    color: #00ff00;
    font-weight: 600;
    text-shadow: 0 0 5px #00ff00;
}

/* 分类页面 */
.categories-page {
    padding: 20px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.category-card {
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 255, 0, 0.2), 0 2px 4px rgba(0, 255, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 16px 32px rgba(0, 255, 0, 0.3), 0 4px 8px rgba(0, 255, 0, 0.2);
    border-color: #00ff00;
    background: linear-gradient(135deg, #0a0a0a 0%, #001a00 100%);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    display: inline-block;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.category-card:hover .category-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(255, 153, 0, 0.3));
}

.category-name {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px #00ff00);
}

.category-card:hover .category-name {
    background: linear-gradient(135deg, #00ff00 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px #00ff00);
}

.category-desc {
    font-size: 0.9rem;
    color: #00cc00;
    transition: color 0.3s ease;
}

.category-card:hover .category-desc {
    color: #00ff00;
}

/* 幻灯片轮播 */
.carousel-container {
    margin: 20px 0 30px;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 公告轮播条 */
.announcement-bar {
    margin: 0 0 30px;
    background: linear-gradient(135deg, #000000 0%, #001a00 100%);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 255, 0, 0.3);
    overflow: hidden;
    border: 1px solid #00ff00;
}

.announcement-wrapper {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #00ff00;
    position: relative;
}

.announcement-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.announcement-content {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.announcement-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.announcement-scroll-text {
    display: inline-block;
    white-space: nowrap;
    will-change: transform;
}

.announcement-text-item {
    display: inline-block;
    margin-right: 20px;
    font-size: 0.95rem;
    transition: opacity 0.2s;
}

.announcement-text-item:hover {
    opacity: 0.8;
}

.announcement-separator {
    margin: 0 15px;
    opacity: 0.7;
}

/* 滚动动画 */
@keyframes scrollAnnouncement {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .announcement-wrapper {
        padding: 10px 15px;
    }
    
    .announcement-icon {
        font-size: 1.2rem;
        margin-right: 10px;
    }
    
    .announcement-text-item {
        font-size: 0.85rem;
        margin-right: 15px;
    }
    
    .announcement-separator {
        margin: 0 10px;
    }
    
    .section-header {
        margin: 25px 0 15px;
    }
    
    .section-title {
        font-size: 1.4rem;
        gap: 8px;
    }
    
    .title-icon {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
        margin-top: 8px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-card {
        padding: 25px 15px;
        border-radius: 12px;
    }
    
    .category-icon {
        font-size: 3rem;
    }
    
    .category-name {
        font-size: 1rem;
    }
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    cursor: pointer;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #00ff00;
    padding: 30px;
    z-index: 2;
    text-shadow: 0 0 5px #00ff00;
}

.carousel-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.carousel-description {
    font-size: 1rem;
    opacity: 0.9;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-indicator.active {
    background: #00ff00;
    width: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px #00ff00;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    color: #00ff00;
    border: 1px solid #00ff00;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 3;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.carousel-nav:hover {
    background: rgba(0, 255, 0, 0.2);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
}

.carousel-nav.prev {
    left: 15px;
}

.carousel-nav.next {
    right: 15px;
}

/* 响应式 */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .product-card {
        padding: 0;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05);
        overflow: hidden;
        background: white;
        border: 1px solid rgba(255, 153, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .product-card:active {
        transform: scale(0.98);
    }
    
    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(255, 153, 0, 0.2), 0 2px 6px rgba(0,0,0,0.1);
        border-color: rgba(255, 153, 0, 0.3);
    }
    
    .product-card::before {
        display: none; /* 移动端隐藏顶部装饰条 */
    }
    
    .product-image-wrapper {
        height: 130px;
        margin-bottom: 0;
        padding: 12px;
        background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
        position: relative;
    }
    
    .product-image-wrapper::after {
        display: none; /* 移动端隐藏微光动画 */
    }
    
    .product-image {
        transition: transform 0.3s ease;
    }
    
    .product-card:hover .product-image {
        transform: scale(1.05);
    }
    
    .product-info {
        padding: 12px 10px;
        background: white;
        display: flex;
        flex-direction: column;
        min-height: 140px; /* 确保卡片高度一致 */
    }
    
    .product-name {
        font-size: 0.82rem;
        margin-bottom: 8px;
        -webkit-line-clamp: 2;
        line-height: 1.5;
        font-weight: 500;
        color: #0f1111;
        min-height: 2.46em; /* 保持高度一致 (0.82rem * 1.5 * 2) */
    }
    
    .product-rating {
        margin-bottom: 8px;
        font-size: 0.7rem;
        display: flex;
        align-items: center;
        gap: 4px;
    }
    
    .stars {
        font-size: 0.75rem;
        letter-spacing: -1px;
    }
    
    .rating-count {
        font-size: 0.65rem;
        color: #565959;
    }
    
    .product-price {
        margin-bottom: 8px;
        align-items: baseline;
        gap: 4px;
    }
    
    .price-symbol {
        font-size: 0.7rem;
        color: #565959;
        font-weight: 500;
    }
    
    .price-amount {
        font-size: 1.15rem;
        font-weight: 700;
        color: #ff9900;
        line-height: 1;
    }
    
    .product-prime {
        font-size: 0.65rem;
        margin-bottom: 10px;
        color: #007185;
        font-weight: 500;
        display: inline-block;
        padding: 2px 6px;
        background: rgba(0, 113, 133, 0.1);
        border-radius: 3px;
        width: fit-content;
    }
    
    .product-actions {
        margin-top: auto;
        padding-top: 0;
    }
    
    .product-actions .btn {
        padding: 9px 12px;
        font-size: 0.75rem;
        font-weight: 600;
        border-radius: 8px;
        background: linear-gradient(135deg, #ff9900 0%, #ff6600 100%);
        box-shadow: 0 3px 8px rgba(255, 153, 0, 0.3);
        border: none;
        width: 100%;
        transition: all 0.2s ease;
    }
    
    .product-actions .btn:active {
        transform: scale(0.95);
    }
    
    .product-actions .btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 5px 12px rgba(255, 153, 0, 0.4);
    }
    
    .product-actions .btn::before {
        display: none; /* 移动端隐藏波纹效果 */
    }
    
    .orders-list {
        padding: 10px;
    }
    
    .order-item {
        flex-direction: row;
        text-align: left;
        padding: 8px 0;
        gap: 8px;
        align-items: flex-start;
    }
    
    .order-image {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
        padding: 5px;
    }
    
    .order-info {
        flex: 1;
        min-width: 0;
    }
    
    .order-name {
        font-size: 0.8rem;
        margin-bottom: 3px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .order-meta {
        font-size: 0.7rem;
        margin-bottom: 2px;
        line-height: 1.4;
    }
    
    .order-meta code {
        font-size: 0.65rem;
        word-break: break-all;
        display: block;
        margin-top: 2px;
    }
    
    .order-item > div:last-child {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: space-between;
        flex-shrink: 0;
        min-width: 80px;
    }
    
    .order-price {
        font-size: 0.9rem;
        margin-top: 0;
        text-align: right;
        white-space: nowrap;
    }
    
    .order-status {
        font-size: 0.7rem;
        padding: 2px 6px;
        margin-top: 4px;
        display: inline-block;
    }
    
    .product-detail-content {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .bottom-nav-item {
        padding: 6px 15px;
        min-width: 70px;
    }
    
    .bottom-nav-item .nav-icon {
        font-size: 1.3rem;
    }
    
    .bottom-nav-item .nav-label {
        font-size: 0.7rem;
    }
    
    .carousel-wrapper {
        height: 250px;
    }
    
    .carousel-content {
        padding: 20px;
    }
    
    .carousel-title {
        font-size: 1.2rem;
    }
    
    .carousel-description {
        font-size: 0.9rem;
    }
    
    .carousel-nav {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .carousel-nav.prev {
        left: 10px;
    }
    
    .carousel-nav.next {
        right: 10px;
    }
}

/* 论坛样式 */
.forum-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 15px;
}

.forum-post-box {
    background: #000000;
    border: 1px solid #00ff00;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 255, 0, 0.2);
}

.post-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.post-box-header h3 {
    color: #00ff00;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: #00ff00;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.close-btn:hover {
    color: #00cc00;
}

.post-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #00ff00;
    border-radius: 4px;
    background: #0a0a0a;
    color: #00ff00;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    min-height: 100px;
}

.post-form textarea:focus {
    outline: none;
    border-color: #00ff00;
    box-shadow: 0 0 0 3px rgba(0, 255, 0, 0.2);
}

.post-char-count {
    text-align: right;
    color: #00cc00;
    font-size: 0.85rem;
    margin-top: 5px;
}

.post-actions {
    margin-top: 15px;
    text-align: right;
}

.forum-posts {
    margin-top: 20px;
}

.forum-post {
    background: #000000;
    border: 1px solid #00ff00;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 255, 0, 0.2);
    transition: all 0.3s;
}

.forum-post:hover {
    box-shadow: 0 4px 12px rgba(0, 255, 0, 0.3);
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ff00, #00cc00);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    border: 2px solid #00ff00;
}

.author-avatar.small {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
}

.author-info {
    flex: 1;
}

.author-name {
    color: #00ff00;
    font-weight: 600;
    margin-bottom: 4px;
}

.post-time {
    color: #00cc00;
    font-size: 0.85rem;
}

.post-delete-btn {
    background: none;
    border: none;
    color: #ff0000;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.post-delete-btn:hover {
    color: #cc0000;
}

.post-content {
    color: #00ff00;
    line-height: 1.6;
    margin-bottom: 15px;
    word-wrap: break-word;
}

.post-image {
    margin: 15px 0;
    border-radius: 8px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.post-footer {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 255, 0, 0.2);
}

.post-action-btn {
    background: none;
    border: none;
    color: #00ff00;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.post-action-btn:hover {
    background: rgba(0, 255, 0, 0.1);
}

.post-action-btn.liked {
    color: #ff0066;
}

.post-comments {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 0, 0.2);
}

.comment-form {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}

.comment-form textarea {
    flex: 1;
    padding: 10px;
    border: 1px solid #00ff00;
    border-radius: 4px;
    background: #0a0a0a;
    color: #00ff00;
    font-family: inherit;
    resize: vertical;
}

.comment-form textarea:focus {
    outline: none;
    border-color: #00ff00;
    box-shadow: 0 0 0 2px rgba(0, 255, 0, 0.2);
}

.comment-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 255, 0, 0.1);
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.comment-info {
    flex: 1;
}

.comment-author-name {
    color: #00ff00;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.comment-time {
    color: #00cc00;
    font-size: 0.8rem;
}

.comment-content {
    color: #00ff00;
    line-height: 1.5;
    margin-bottom: 8px;
    word-wrap: break-word;
}

.comment-actions {
    display: flex;
    gap: 15px;
}

.comment-like-btn {
    background: none;
    border: none;
    color: #00ff00;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.comment-like-btn:hover {
    background: rgba(0, 255, 0, 0.1);
}

.comment-like-btn.liked {
    color: #ff0066;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #00cc00;
}

.no-comments {
    text-align: center;
    padding: 30px;
    color: #00cc00;
    font-size: 0.9rem;
}

/* 浮动按钮 */
.floating-post-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ff00, #00cc00);
    color: #000000;
    border: 2px solid #00ff00;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 255, 0, 0.4);
    z-index: 999;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-post-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 255, 0, 0.6);
}

.floating-post-btn span {
    line-height: 1;
}

/* 主题切换按钮 */
.theme-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #000000;
    color: #00ff00;
    border: 2px solid #00ff00;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 255, 0, 0.3);
    z-index: 999;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle-btn:hover {
    background: rgba(0, 255, 0, 0.1);
    box-shadow: 0 6px 16px rgba(0, 255, 0, 0.5);
}

/* 白天主题样式 */
body[data-theme="light"] {
    background-color: #ffffff;
    color: #333333;
    background-image: none;
}

body[data-theme="light"] .top-bar,
body[data-theme="light"] .navbar {
    background: #ffffff;
    color: #333333;
    border-bottom-color: #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

body[data-theme="light"] .logo {
    color: #333333;
    text-shadow: none;
}

body[data-theme="light"] .nav-link {
    color: #333333;
}

body[data-theme="light"] .nav-link:hover,
body[data-theme="light"] .nav-link.active {
    background: rgba(0,0,0,0.05);
    border-color: #333333;
    box-shadow: none;
    text-shadow: none;
}

body[data-theme="light"] .btn-primary {
    background: #333333;
    color: #ffffff;
    border-color: #333333;
    box-shadow: none;
    text-shadow: none;
}

body[data-theme="light"] .btn-primary:hover {
    background: #555555;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

body[data-theme="light"] .forum-post,
body[data-theme="light"] .forum-post-box {
    background: #ffffff;
    border-color: #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

body[data-theme="light"] .post-content,
body[data-theme="light"] .author-name,
body[data-theme="light"] .comment-content {
    color: #333333;
}

body[data-theme="light"] .post-time,
body[data-theme="light"] .comment-time {
    color: #666666;
}

body[data-theme="light"] .post-form textarea,
body[data-theme="light"] .comment-form textarea {
    background: #f5f5f5;
    color: #333333;
    border-color: #cccccc;
}

body[data-theme="light"] .bottom-nav {
    background: #ffffff;
    border-top-color: #e0e0e0;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

body[data-theme="light"] .bottom-nav-item {
    color: #666666;
}

body[data-theme="light"] .bottom-nav-item.active {
    color: #333333;
    text-shadow: none;
}

body[data-theme="light"] .theme-toggle-btn {
    background: #ffffff;
    color: #333333;
    border-color: #333333;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

body[data-theme="light"] .floating-post-btn {
    background: linear-gradient(135deg, #333333, #555555);
    color: #ffffff;
    border-color: #333333;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .floating-post-btn {
        bottom: 90px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .theme-toggle-btn {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}