/* ============================================
   黑客24小时在线接单网站 - 百变模板样式
   前缀: shoy
   ============================================ */

/* CSS Reset */
.shoy-reset,
.shoy-reset * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body.shoy-body {
    font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 14px;
}

a.shoy-link {
    color: #00ff88;
    text-decoration: none;
    transition: color 0.3s ease;
}

a.shoy-link:hover {
    color: #00cc6a;
    text-decoration: underline;
}

img.shoy-img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul.shoy-list {
    list-style: none;
}

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

/* ============================================
   Header / Navigation
   ============================================ */
.shoy-header {
    background: linear-gradient(180deg, #0d1117 0%, #161b22 100%);
    border-bottom: 2px solid #00ff88;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 255, 136, 0.1);
}

.shoy-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.shoy-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shoy-logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    letter-spacing: 2px;
}

.shoy-logo-tag {
    font-size: 12px;
    color: #8b949e;
    background: rgba(0, 255, 136, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.shoy-nav {
    display: flex;
    align-items: center;
}

.shoy-nav-list {
    display: flex;
    list-style: none;
    gap: 2px;
}

.shoy-nav-item {
    position: relative;
}

.shoy-nav-link {
    display: block;
    padding: 8px 12px;
    color: #c9d1d9;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 4px;
    white-space: nowrap;
}

.shoy-nav-link:hover,
.shoy-nav-link.shoy-active {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
}

.shoy-nav-link.shoy-active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: #00ff88;
    box-shadow: 0 0 10px #00ff88;
}

.shoy-header-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #0a0a0a;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
}

.shoy-header-contact:hover {
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    text-decoration: none;
}

/* Mobile Menu Toggle */
.shoy-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.shoy-mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #00ff88;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Toggle active state - X icon */
.shoy-nav-open .shoy-mobile-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.shoy-nav-open .shoy-mobile-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.shoy-nav-open .shoy-mobile-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* No scroll when menu open */
.shoy-no-scroll {
    overflow: hidden;
}

/* Mobile Menu Overlay */
.shoy-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shoy-nav-open .shoy-mobile-overlay {
    display: block;
    opacity: 1;
}

/* Mobile Nav Slide Down Animation */
@keyframes shoy-slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Hero Banner (主横幅)
   ============================================ */
.shoy-hero {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #0d1117 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.shoy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.shoy-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.shoy-hero-content {
    flex: 1;
    max-width: 600px;
}

.shoy-hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid rgba(0, 255, 136, 0.4);
    color: #00ff88;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 20px;
}

.shoy-hero-title {
    font-size: 42px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.shoy-hero-title .shoy-highlight {
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.shoy-hero-desc {
    font-size: 16px;
    color: #8b949e;
    margin-bottom: 30px;
    line-height: 1.8;
}

.shoy-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.shoy-hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #c9d1d9;
}

.shoy-hero-feature::before {
    content: '✓';
    color: #00ff88;
    font-weight: bold;
}

.shoy-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.shoy-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.shoy-btn-primary {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #0a0a0a;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.shoy-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 255, 136, 0.5);
    text-decoration: none;
}

.shoy-btn-secondary {
    background: transparent;
    color: #00ff88;
    border: 2px solid #00ff88;
}

.shoy-btn-secondary:hover {
    background: rgba(0, 255, 136, 0.1);
    text-decoration: none;
}

.shoy-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.shoy-hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.shoy-hero-image-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 136, 0.4);
    box-shadow: 
        0 20px 60px rgba(0, 255, 136, 0.2),
        0 0 40px rgba(0, 255, 136, 0.1),
        inset 0 0 20px rgba(0, 255, 136, 0.05);
    z-index: 2;
}

.shoy-hero-image-frame img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.shoy-hero-image-frame:hover img {
    transform: scale(1.03);
}

/* 扫描线动画效果 */
.shoy-hero-scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
    box-shadow: 0 0 10px #00ff88, 0 0 20px #00ff88;
    animation: shoy-scan 3s ease-in-out infinite;
    z-index: 3;
}

@keyframes shoy-scan {
    0%, 100% { top: 0; opacity: 0.8; }
    50% { top: calc(100% - 3px); opacity: 0.4; }
}

/* 背景光晕效果 */
.shoy-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
    z-index: 1;
    animation: shoy-glow-pulse 4s ease-in-out infinite;
}

@keyframes shoy-glow-pulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

/* 浮动数据标签 - 通用样式 */
.shoy-hero-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(13, 17, 23, 0.95);
    border: 1px solid rgba(0, 255, 136, 0.4);
    border-radius: 12px;
    padding: 10px 16px;
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 255, 136, 0.1);
}

.shoy-float-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.shoy-float-content {
    display: flex;
    flex-direction: column;
}

.shoy-float-number {
    font-size: 18px;
    font-weight: bold;
    color: #00ff88;
    line-height: 1.2;
}

.shoy-float-label {
    font-size: 11px;
    color: #8b949e;
    line-height: 1.2;
}

/* 浮动标签位置 & 动画 */
.shoy-float-1 {
    top: -15px;
    left: -30px;
    animation: shoy-float-1 3.5s ease-in-out infinite;
}

.shoy-float-2 {
    top: 20px;
    right: -35px;
    animation: shoy-float-2 4s ease-in-out infinite;
}

.shoy-float-3 {
    bottom: 30px;
    left: -40px;
    animation: shoy-float-3 4.5s ease-in-out infinite;
}

.shoy-float-4 {
    bottom: -10px;
    right: -20px;
    animation: shoy-float-4 3.8s ease-in-out infinite;
}

@keyframes shoy-float-1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes shoy-float-2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

@keyframes shoy-float-3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes shoy-float-4 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* 装饰性角落元素 */
.shoy-hero-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid #00ff88;
    z-index: 5;
    opacity: 0.6;
}

.shoy-corner-tl {
    top: -8px;
    left: -8px;
    border-right: none;
    border-bottom: none;
}

.shoy-corner-tr {
    top: -8px;
    right: -8px;
    border-left: none;
    border-bottom: none;
}

.shoy-corner-bl {
    bottom: -8px;
    left: -8px;
    border-right: none;
    border-top: none;
}

.shoy-corner-br {
    bottom: -8px;
    right: -8px;
    border-left: none;
    border-top: none;
}

/* Stats Bar */
.shoy-stats-bar {
    background: #161b22;
    border-top: 1px solid #30363d;
    border-bottom: 1px solid #30363d;
    padding: 30px 0;
}

.shoy-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.shoy-stat-item {
    padding: 10px;
}

.shoy-stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #00ff88;
    margin-bottom: 5px;
}

.shoy-stat-label {
    font-size: 14px;
    color: #8b949e;
}

/* ============================================
   Section Common
   ============================================ */
.shoy-section {
    padding: 70px 0;
}

.shoy-section-alt {
    background: #0d1117;
}

.shoy-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.shoy-section-title {
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
}

.shoy-section-title .shoy-title-accent {
    color: #00ff88;
}

.shoy-section-subtitle {
    font-size: 15px;
    color: #8b949e;
    max-width: 700px;
    margin: 0 auto;
}

.shoy-section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, #00cc6a);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ============================================
   Services Section (服务项目)
   ============================================ */
.shoy-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.shoy-service-card {
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 10px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.shoy-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, #00cc6a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.shoy-service-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.15);
}

.shoy-service-card:hover::before {
    transform: scaleX(1);
}

.shoy-service-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.shoy-service-title {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 12px;
}

.shoy-service-desc {
    font-size: 14px;
    color: #8b949e;
    line-height: 1.7;
    margin-bottom: 15px;
}

.shoy-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.shoy-service-tag {
    font-size: 12px;
    padding: 4px 10px;
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

/* ============================================
   About / Why Choose Us Section
   ============================================ */
.shoy-about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.shoy-about-content h2 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 20px;
}

.shoy-about-content p {
    color: #8b949e;
    margin-bottom: 15px;
    line-height: 1.8;
}

.shoy-about-list {
    margin-top: 25px;
}

.shoy-about-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.shoy-about-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: #00ff88;
    color: #0a0a0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    margin-top: 2px;
}

.shoy-about-text h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 5px;
}

.shoy-about-text p {
    color: #8b949e;
    font-size: 14px;
    margin: 0;
}

.shoy-about-image {
    position: relative;
}

.shoy-about-image img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #30363d;
}

.shoy-about-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #0a0a0a;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.shoy-about-badge .shoy-badge-number {
    font-size: 28px;
    display: block;
}

.shoy-about-badge .shoy-badge-text {
    font-size: 12px;
}

/* ============================================
   Process Section (服务流程)
   ============================================ */
.shoy-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.shoy-process-step {
    text-align: center;
    position: relative;
}

.shoy-step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #161b22, #0d1117);
    border: 2px solid #00ff88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    color: #00ff88;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.shoy-step-title {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: bold;
}

.shoy-step-desc {
    font-size: 14px;
    color: #8b949e;
    line-height: 1.6;
}

/* ============================================
   Articles / News Section (文章资讯)
   ============================================ */
.shoy-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.shoy-article-card {
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.shoy-article-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.15);
}

.shoy-article-thumb {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #0d1117, #161b22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff88;
    font-size: 48px;
    position: relative;
    overflow: hidden;
}

.shoy-article-thumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.5) 100%);
}

.shoy-article-body {
    padding: 20px;
}

.shoy-article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 12px;
    color: #8b949e;
}

.shoy-article-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.shoy-article-title {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.5;
}

.shoy-article-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.shoy-article-title a:hover {
    color: #00ff88;
}

.shoy-article-excerpt {
    font-size: 13px;
    color: #8b949e;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   FAQ Section
   ============================================ */
.shoy-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.shoy-faq-item {
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.shoy-faq-question {
    padding: 18px 25px;
    color: #ffffff;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.shoy-faq-question:hover {
    background: #1c2128;
}

.shoy-faq-question::after {
    content: '+';
    color: #00ff88;
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.shoy-faq-answer {
    padding: 0 25px 18px;
    color: #8b949e;
    font-size: 14px;
    line-height: 1.7;
    display: none;
}

.shoy-faq-item.shoy-active .shoy-faq-question::after {
    transform: rotate(45deg);
}

.shoy-faq-item.shoy-active .shoy-faq-answer {
    display: block;
}

/* ============================================
   Testimonials (客户评价)
   ============================================ */
.shoy-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.shoy-testimonial-card {
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
}

.shoy-testimonial-card:hover {
    border-color: #00ff88;
}

.shoy-testimonial-stars {
    color: #ffd700;
    font-size: 14px;
    margin-bottom: 15px;
}

.shoy-testimonial-text {
    color: #c9d1d9;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.shoy-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.shoy-testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-weight: bold;
    font-size: 16px;
}

.shoy-testimonial-info h4 {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 3px;
}

.shoy-testimonial-info p {
    color: #8b949e;
    font-size: 12px;
    margin: 0;
}

/* ============================================
   CTA Section (行动号召)
   ============================================ */
.shoy-cta {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
    position: relative;
    overflow: hidden;
}

.shoy-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.shoy-cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.shoy-cta-title {
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
}

.shoy-cta-title .shoy-highlight {
    color: #00ff88;
}

.shoy-cta-desc {
    font-size: 16px;
    color: #8b949e;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.shoy-cta-contact {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.shoy-cta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    color: #00ff88;
    font-size: 15px;
}

/* ============================================
   Keyword Cloud Section
   ============================================ */
.shoy-keyword-cloud {
    background: #0d1117;
    padding: 50px 0;
}

.shoy-keyword-title {
    text-align: center;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 25px;
}

.shoy-keyword-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.shoy-keyword-item {
    padding: 8px 16px;
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 20px;
    color: #8b949e;
    font-size: 13px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.shoy-keyword-item:hover {
    border-color: #00ff88;
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
}

/* ============================================
   Footer
   ============================================ */
.shoy-footer {
    background: #0a0a0a;
    border-top: 1px solid #30363d;
    padding: 60px 0 30px;
}

.shoy-footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.shoy-footer-brand .shoy-logo-text {
    margin-bottom: 15px;
}

.shoy-footer-desc {
    color: #8b949e;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.shoy-footer-social {
    display: flex;
    gap: 10px;
}

.shoy-social-icon {
    width: 36px;
    height: 36px;
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b949e;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.shoy-social-icon:hover {
    background: #00ff88;
    color: #0a0a0a;
    border-color: #00ff88;
}

.shoy-footer-title {
    font-size: 16px;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 20px;
}

.shoy-footer-links {
    list-style: none;
}

.shoy-footer-links li {
    margin-bottom: 10px;
}

.shoy-footer-links a {
    color: #8b949e;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.shoy-footer-links a:hover {
    color: #00ff88;
}

.shoy-footer-contact p {
    color: #8b949e;
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.shoy-footer-bottom {
    border-top: 1px solid #30363d;
    padding-top: 25px;
    text-align: center;
    color: #8b949e;
    font-size: 13px;
}

.shoy-footer-bottom p {
    margin-bottom: 8px;
}

/* Friend Links (友情链接) */
.shoy-footer-flink,
.shoy-footer-relate {
    padding: 20px 0;
    border-top: 1px solid #21262d;
}

.shoy-flink-title {
    color: #c9d1d9;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: bold;
}

.shoy-flink-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    list-style: none;
}

.shoy-flink-list a {
    color: #8b949e;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.shoy-flink-list a:hover {
    color: #00ff88;
}

.shoy-relate-list {
    margin: 0;
    padding: 0;
}

/* Ad Banner (通用广告位) */
.shoy-ad-banner {
    margin: 30px 0;
    text-align: center;
    background: #161b22;
    border: 1px dashed #30363d;
    border-radius: 8px;
    padding: 20px;
    overflow: hidden;
}

.shoy-ad-banner img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* ============================================
   Cases Section (成功案例)
   ============================================ */
.shoy-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.shoy-case-card {
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.shoy-case-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.15);
}

.shoy-case-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 255, 136, 0.15);
    color: #00ff88;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.shoy-case-amount {
    font-size: 28px;
    font-weight: bold;
    color: #00ff88;
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.shoy-case-title {
    font-size: 17px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.5;
}

.shoy-case-desc {
    font-size: 14px;
    color: #8b949e;
    line-height: 1.7;
    margin-bottom: 18px;
}

.shoy-case-meta {
    display: flex;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #30363d;
    font-size: 13px;
    color: #8b949e;
}

.shoy-case-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ============================================
   Pricing Section (价格套餐)
   ============================================ */
.shoy-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: stretch;
}

.shoy-pricing-card {
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.shoy-pricing-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.15);
}

.shoy-pricing-card.shoy-pricing-featured {
    border-color: #00ff88;
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.2);
}

.shoy-pricing-card.shoy-pricing-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.shoy-pricing-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #0a0a0a;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(45deg);
    z-index: 1;
}

.shoy-pricing-header {
    padding: 30px 25px 20px;
    text-align: center;
    border-bottom: 1px solid #30363d;
}

.shoy-pricing-name {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: bold;
}

.shoy-pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    color: #00ff88;
}

.shoy-pricing-symbol {
    font-size: 20px;
    font-weight: bold;
}

.shoy-pricing-amount {
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.shoy-pricing-unit {
    font-size: 14px;
    color: #8b949e;
    margin-left: 5px;
}

.shoy-pricing-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.shoy-pricing-features {
    list-style: none;
    margin-bottom: 25px;
    flex: 1;
}

.shoy-pricing-features li {
    padding: 10px 0;
    color: #c9d1d9;
    font-size: 14px;
    border-bottom: 1px solid #21262d;
}

.shoy-pricing-features li:last-child {
    border-bottom: none;
}

.shoy-pricing-features li.shoy-pricing-no {
    color: #484f58;
    text-decoration: line-through;
}

.shoy-pricing-btn {
    width: 100%;
    text-align: center;
}

/* ============================================
   Team Section (专业团队)
   ============================================ */
.shoy-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.shoy-team-card {
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.shoy-team-card:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.15);
}

.shoy-team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.05));
    border: 2px solid #00ff88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 18px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.shoy-team-name {
    font-size: 17px;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 8px;
}

.shoy-team-role {
    color: #00ff88;
    font-size: 13px;
    margin-bottom: 12px;
}

.shoy-team-desc {
    font-size: 13px;
    color: #8b949e;
    line-height: 1.7;
    margin-bottom: 15px;
}

.shoy-team-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.shoy-team-tag {
    font-size: 11px;
    padding: 3px 10px;
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

/* ============================================
   Partners Section (合作伙伴)
   ============================================ */
.shoy-partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.shoy-partner-item {
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.shoy-partner-item:hover {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.05);
    transform: translateY(-3px);
}

.shoy-partner-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
}

.shoy-partner-item h4 {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 6px;
}

.shoy-partner-item p {
    color: #8b949e;
    font-size: 12px;
    margin: 0;
}

/* ============================================
   Responsive Design
   ============================================ */

/* Large Desktop */
@media (max-width: 1200px) {
    .shoy-container {
        max-width: 960px;
    }

    .shoy-header-contact {
        display: none;
    }

    .shoy-mobile-toggle {
        display: flex;
    }

    /* Mobile Nav Dropdown Styles */
    .shoy-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(13, 17, 23, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: none;
        flex-direction: column;
        padding: 20px;
        z-index: 1001;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        border-top: 1px solid rgba(0, 255, 136, 0.2);
    }

    .shoy-nav-open .shoy-nav {
        display: flex;
        animation: shoy-slideDown 0.3s ease forwards;
    }

    .shoy-nav-list {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .shoy-nav-item {
        width: 100%;
    }

    .shoy-nav-link {
        padding: 15px 20px;
        font-size: 16px;
        border-radius: 8px;
        text-align: center;
        border: 1px solid transparent;
    }

    .shoy-nav-link:hover,
    .shoy-nav-link.shoy-active {
        border-color: rgba(0, 255, 136, 0.3);
        background: rgba(0, 255, 136, 0.1);
    }

    .shoy-nav-link.shoy-active::after {
        display: none;
    }
}

/* Tablet Landscape */
@media (max-width: 992px) {
    .shoy-container {
        max-width: 720px;
    }

    .shoy-hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .shoy-hero-content {
        max-width: 100%;
    }

    .shoy-hero-features {
        justify-content: center;
    }

    .shoy-hero-buttons {
        justify-content: center;
    }

    .shoy-hero-title {
        font-size: 32px;
    }

    .shoy-hero-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .shoy-float-1 { left: -10px; }
    .shoy-float-2 { right: -15px; }
    .shoy-float-3 { left: -15px; }
    .shoy-float-4 { right: -10px; }

    .shoy-services-grid,
    .shoy-articles-grid,
    .shoy-testimonials-grid,
    .shoy-cases-grid,
    .shoy-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shoy-pricing-card.shoy-pricing-featured {
        transform: scale(1);
    }

    .shoy-pricing-card.shoy-pricing-featured:hover {
        transform: translateY(-5px);
    }

    .shoy-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shoy-partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .shoy-about-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .shoy-process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .shoy-stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .shoy-footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .shoy-container {
        max-width: 540px;
    }

    .shoy-header-inner {
        height: 60px;
    }

    /* Mobile Nav - override only differences from 992px */
    .shoy-nav {
        top: 60px;
    }

    .shoy-nav-list {
        gap: 5px;
    }

    .shoy-hero {
        padding: 50px 0;
    }

    .shoy-hero-title {
        font-size: 26px;
    }

    .shoy-hero-image-wrapper {
        max-width: 350px;
    }

    .shoy-hero-float {
        padding: 8px 12px;
    }

    .shoy-float-icon {
        font-size: 20px;
    }

    .shoy-float-number {
        font-size: 16px;
    }

    .shoy-float-label {
        font-size: 10px;
    }

    .shoy-float-1 { top: -10px; left: 0px; }
    .shoy-float-2 { top: 10px; right: 0px; }
    .shoy-float-3 { bottom: 20px; left: 0px; }
    .shoy-float-4 { bottom: -5px; right: 0px; }

    .shoy-section {
        padding: 50px 0;
    }

    .shoy-section-title {
        font-size: 24px;
    }

    .shoy-services-grid,
    .shoy-articles-grid,
    .shoy-testimonials-grid,
    .shoy-cases-grid,
    .shoy-pricing-grid,
    .shoy-team-grid {
        grid-template-columns: 1fr;
    }

    .shoy-partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shoy-pricing-card.shoy-pricing-featured {
        transform: scale(1);
    }

    .shoy-process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .shoy-stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .shoy-stat-number {
        font-size: 28px;
    }

    .shoy-cta-title {
        font-size: 24px;
    }

    .shoy-footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .shoy-container {
        padding: 0 12px;
    }

    .shoy-header-inner {
        height: 56px;
    }

    .shoy-logo-text {
        font-size: 20px;
    }

    .shoy-logo-tag {
        display: none;
    }

    .shoy-nav {
        top: 56px;
        padding: 15px;
    }

    .shoy-nav-link {
        padding: 12px 16px;
        font-size: 15px;
    }

    .shoy-nav-list {
        gap: 4px;
    }

    .shoy-hero-title {
        font-size: 22px;
    }

    .shoy-hero-desc {
        font-size: 14px;
    }

    .shoy-hero-image-wrapper {
        max-width: 300px;
    }

    .shoy-hero-float {
        padding: 6px 10px;
        gap: 6px;
    }

    .shoy-float-icon {
        font-size: 16px;
    }

    .shoy-float-number {
        font-size: 14px;
    }

    .shoy-float-label {
        font-size: 9px;
    }

    .shoy-hero-corner {
        width: 20px;
        height: 20px;
    }

    .shoy-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .shoy-section {
        padding: 40px 0;
    }

    .shoy-section-title {
        font-size: 20px;
    }

    .shoy-process-steps {
        grid-template-columns: 1fr;
    }

    .shoy-partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .shoy-pricing-amount {
        font-size: 36px;
    }

    .shoy-case-amount {
        font-size: 22px;
    }

    .shoy-cta-contact {
        flex-direction: column;
        align-items: center;
    }

    .shoy-cta-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Utility Classes */
.shoy-text-center {
    text-align: center;
}

.shoy-mt-20 {
    margin-top: 20px;
}

.shoy-mt-40 {
    margin-top: 40px;
}

.shoy-mb-20 {
    margin-bottom: 20px;
}

.shoy-hidden {
    display: none !important;
}

.shoy-green {
    color: #00ff88;
}

.shoy-bold {
    font-weight: bold;
}
