* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: #000000;
    color: #fff;
    padding-bottom: 60px;
    overflow-x: hidden;
}

/* 顶部搜索框 */
.search-header {
    position: sticky;
    top: 0;
    background: #000000;
    padding: 8px 0px;
    z-index: 100;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 10px 15px;
}

.search-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    opacity: 0.5;
}

.search-input {
    flex: 1;
    background: none;
    border: none;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.search-input::placeholder {
    color: rgba(255,255,255,0.4);
}

.search-btn {
    background: rgb(2 69 228 / 90%);
    border: none;
    padding: 6px 16px;
    border-radius: 15px;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    margin-left: 8px;
    transition: all 0.3s;
}

.search-btn:hover {
    background: rgb(2 69 228 / 100%);
}

/* 分类导航标签 */
.category-nav {
    display: flex;
    padding: 10px 15px;
    overflow-x: auto;
    background: #000000;
    gap: 20px;
    position: sticky;
    top: 50px;
    z-index: 99;
    -webkit-overflow-scrolling: touch;
}

.category-nav::-webkit-scrollbar {
    display: none;
}

.category-item {
    flex-shrink: 0;
    font-size: 16px;
    font-weight: bold;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    padding-bottom: 5px;
    position: relative;
}

.category-item.active {
    color: #fff;
}

.category-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #0099ff);
    border-radius: 2px;
}

.category-item.category-more {
    color: #00d4ff;
    font-size: 14px;
}

.category-item.category-more:hover {
    color: #00ffff;
    transform: scale(1.05);
}

/* 轮播图 */
.swiper-container {
    width: 100%;
    padding: 0px;
    position: relative;
}

.swiper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 180px;
}

/* 投诉按钮 */
.complaint-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgb(2 69 228 / 90%);
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(2, 69, 228, 0.3);
}

.complaint-btn:hover {
    background: rgb(2 69 228 / 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 69, 228, 0.5);
}

.complaint-btn:active {
    transform: translateY(0);
}

.swiper-slides {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
}

.swiper-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.swiper-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.swiper-dot.active {
    width: 20px;
    border-radius: 3px;
    background: #fff;
}

/* 分类按钮网格 */
.category-grid {
    padding: 0px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.category-btn {
    background: rgba(255,255,255,0.08);
    border: none;
    border-radius: 8px;
    padding: 12px 8px;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.category-btn:active {
    transform: scale(0.95);
    background: rgba(255,255,255,0.15);
}

.expand-btn {
    grid-column: span 4;
    background: transparent;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

/* 内容标签栏 */
.content-tabs {
    display: flex;
    padding: 10px 15px;
    gap: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.content-tab {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    padding-bottom: 10px;
    position: relative;
}

.content-tab.active {
    color: #fff;
    font-weight: bold;
}

.content-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #fff;
}

/* 视频列表 */
.video-list {
    padding: 10px 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.video-item {
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumb {
    position: relative;
    width: 100%;
    padding-bottom: 0px;
    height: 180px;
    background: #2a2d3e;
}

.video-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background: rgba(255,0,80,0.9);
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
}

.video-duration {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
}

.video-views {
    position: absolute;
    bottom: 5px;
    left: 5px;
    color: #fff;
    font-size: 11px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.video-title {
    padding: 8px;
    font-size: 13px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: rgba(255,255,255,0.9);
}

/* 底部导航栏 */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    z-index: 100;
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    color: #fff;
}

.nav-item.active {
    color: #ffd700;
}

.nav-icon {
    font-size: 22px;
}

.nav-label {
    font-size: 11px;
    font-weight: bold;
}

/* APP下载横幅 */
.app-banner {
    position: fixed;
    bottom: 60px;
    left: 10px;
    right: 10px;
    background: linear-gradient(135deg, #2d2d2d91 0%, #1a1a1a91 100%);
    border-radius: 10px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 90;
    backdrop-filter: blur(10px);
}

.app-banner.hidden {
    display: none !important;
}

.app-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.app-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.app-text {
    flex: 1;
}

.app-text-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 2px;
}

.download-btn {
    background: #00d4ff;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
}

.close-banner {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    margin-left: 10px;
    padding: 0 8px;
}

/* 加载提示 */
.loading {
    text-align: center;
    padding: 30px;
    color: rgba(255,255,255,0.5);
}

/* 购买弹窗 */
.purchase-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.purchase-modal.active {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.purchase-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.purchase-modal-content {
    position: relative;
    background: #1a1a1a;
    border-radius: 20px 20px 0 0;
    padding: 20px;
    width: 100%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.purchase-video-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.purchase-video-cover {
    width: 80px;
    height: 110px;
    border-radius: 8px;
    object-fit: cover;
}

.purchase-video-title {
    flex: 1;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
}

.purchase-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.purchase-option {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border: none;
    border-radius: 12px;
    padding: 7px 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.purchase-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.purchase-option:active {
    transform: translateY(0);
}

.purchase-option.single {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
}

.purchase-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.purchase-btn-secondary {
    flex: 1;
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.purchase-btn-secondary:hover {
    background: #3a3a3a;
}

.purchase-btn-purchased {
    flex: 1;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border: none;
    border-radius: 12px;
    padding: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

/* 暗网模态 */
.darknet-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.darknet-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.darknet-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.darknet-modal-content {
    position: relative;
    background: rgba(20, 20, 40, 0.95);
    border-radius: 20px;
    padding: 30px 20px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.darknet-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.darknet-content {
    padding-top: 20px;
}

.darknet-text {
    margin-bottom: 30px;
}

.darknet-line {
    color: #ff69b4;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 500;
}

.darknet-warning {
    background: rgba(255, 20, 147, 0.1);
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin: 20px 0;
}

.warning-title {
    color: #ff1493;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 8px;
}

.warning-text {
    color: #ff69b4;
    font-size: 12px;
    margin-bottom: 5px;
}

.warning-sub {
    color: rgba(255, 105, 180, 0.7);
    font-size: 11px;
}

.darknet-open-btn {
    background: linear-gradient(135deg, #4a9eff 0%, #357abd 100%);
    border: none;
    border-radius: 12px;
    padding: 14px 40px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin: 20px 0;
    transition: all 0.3s;
}

.darknet-open-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 158, 255, 0.4);
}

.darknet-footer {
    color: #666;
    font-size: 13px;
    margin-top: 15px;
}

/* 支付模态 */
.payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.payment-modal.active {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.payment-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
}

.payment-modal-bg-blur {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(100, 20, 200, 0.3) 0%, rgba(20, 100, 200, 0.2) 50%, rgba(200, 100, 20, 0.2) 100%);
    filter: blur(25px);
    opacity: 0.6;
}

.payment-modal-content {
    position: relative;
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.95) 0%, rgba(30, 20, 50, 0.95) 100%);
    border-radius: 25px 25px 0 0;
    padding: 0;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s ease-out;
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.8);
}

.payment-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-modal-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.payment-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.payment-close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-close-btn:hover {
    color: #4a9eff;
}

.payment-close-btn-x {
    text-align: right;
    margin: 10px 0;
    cursor: pointer;
}

.darknet-description {
    color: #ff69b4;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
    padding: 10px;
}

.payment-options-container {
    margin: 20px 0;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}

.payment-options {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 5px 5px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.payment-options::-webkit-scrollbar {
    height: 3px;
}

.payment-options::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.payment-options::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #4a9eff, #00d4ff);
    border-radius: 10px;
}

.payment-options::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #357abd, #0099cc);
}

.payment-option {
    flex: 0 0 calc(50% - 6px);
    background: linear-gradient(135deg, #2a3560 0%, #1f2a45 100%);
    border-radius: 15px;
    padding: 20px 16px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.payment-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.payment-option:active,
.payment-option.selected {
    border-color: #4a9eff;
    box-shadow: 0 0 20px rgba(74, 158, 255, 0.3), inset 0 0 10px rgba(74, 158, 255, 0.1);
    transform: translateY(-2px);
}

.payment-option:active::before,
.payment-option.selected::before {
    opacity: 1;
}

.payment-option:hover {
    background: linear-gradient(135deg, #354575 0%, #234055 100%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.payment-label {
    color: #fff;
    font-size: 14px;
    margin-bottom: 8px;
}

.payment-price {
    color: #4a9eff;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
}

.payment-original {
    color: #999;
    font-size: 12px;
    text-decoration: line-through;
}

.payment-details {
    background: linear-gradient(135deg, rgba(42, 53, 96, 0.6) 0%, rgba(31, 42, 69, 0.6) 100%);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 15px;
    padding: 18px;
    margin: 20px 0;
    display: flex;
    gap: 15px;
    backdrop-filter: blur(10px);
}

.payment-detail-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-label {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(74, 158, 255, 0.2);
}

.detail-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    line-height: 1.5;
}

.payment-confirm-btn {
    width: 100%;
    background: linear-gradient(135deg, #4a9eff 0%, #00d4ff 50%, #357abd 100%);
    border: none;
    border-radius: 15px;
    padding: 16px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin: 20px 0 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.payment-confirm-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.payment-confirm-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 158, 255, 0.5);
}

.payment-confirm-btn:active {
    transform: translateY(-1px);
}

.payment-warning {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    cursor: pointer;
    padding-bottom: 10px;
    transition: color 0.3s;
}

.payment-warning:hover {
    color: rgba(255, 255, 255, 0.7);
}

.purchase-btn-purchased:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

/* 购买提示 */
.purchase-hint {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 支付通道选择 */
.payment-channel-section {
    margin: 20px 0;
}

.payment-channel-title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    padding-left: 5px;
}

.payment-channels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.payment-channel {
    background: linear-gradient(135deg, #2a3560 0%, #1f2a45 100%);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.payment-channel:hover {
    background: linear-gradient(135deg, #354575 0%, #234055 100%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.payment-channel.selected {
    border-color: #4a9eff;
    box-shadow: 0 0 20px rgba(74, 158, 255, 0.3);
    transform: translateY(-2px);
}

.payment-channel-icon {
    font-size: 32px;
}

.payment-channel-name {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.payment-channel-badge {
    background: linear-gradient(135deg, #4a9eff 0%, #00d4ff 100%);
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
}

/* 投诉弹窗样式 */
.complaint-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.8);
}

.complaint-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.complaint-content {
    background: #fff;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.complaint-header {
    padding: 20px;
    text-align: center;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px solid #eee;
}

.complaint-types {
    padding: 15px 0;
}

.complaint-type-item {
    padding: 7px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.2s;
}

.complaint-type-item:hover {
    background: #f8f8f8;
}

.complaint-type-item:last-child {
    border-bottom: none;
}

.complaint-type-label {
    color: #333;
    font-size: 16px;
}

.complaint-type-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    position: relative;
    transition: all 0.2s;
}

.complaint-type-item.selected .complaint-type-radio {
    border-color: #4a9eff;
}

.complaint-type-item.selected .complaint-type-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #4a9eff;
    border-radius: 50%;
}

.complaint-footer {
    padding: 7px 20px;
}

.complaint-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #4a9eff 0%, #357abd 100%);
    border: none;
    border-radius: 25px;
    padding: 14px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.complaint-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.4);
}

.complaint-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}
    </style>
