.ts-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1e293b 100%);
    padding: 48px 0 56px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.ts-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, .1) 0%, transparent 70%);
    animation: tsPulse 7s ease-in-out infinite;
}

@keyframes tsPulse {

    0%,
    100% {
        opacity: .5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

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

.ts-hero h1 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -.3px;
}

.ts-hero h1 span {
    background: linear-gradient(135deg, #93c5fd, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ts-hero-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    margin-top: 8px;
    line-height: 1.6;
}

.ts-hero-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: rgba(59, 130, 246, .12);
    border: 1px solid rgba(59, 130, 246, .25);
    border-radius: 999px;
    color: #93c5fd;
    font-size: 13px;
    text-decoration: none;
    transition: all .3s ease;
    flex-shrink: 0;
}

.ts-hero-back:hover {
    background: rgba(59, 130, 246, .2);
    border-color: rgba(59, 130, 246, .4);
    color: #bfdbfe;
}

.ts-iframe-section {
    padding: 32px 0 48px;
    background: var(--xw-bg);
    min-height: calc(100vh - 200px);
}

.ts-iframe-wrap {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--xw-border);
    box-shadow: var(--xw-shadow);
    overflow: hidden;
}

.ts-iframe-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #fafbfc;
    border-bottom: 1px solid var(--xw-border);
}

.ts-iframe-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.ts-iframe-dot:nth-child(1) {
    background: #ef4444;
}

.ts-iframe-dot:nth-child(2) {
    background: #f59e0b;
}

.ts-iframe-dot:nth-child(3) {
    background: #22c55e;
}

.ts-iframe-url {
    flex: 1;
    margin-left: 8px;
    padding: 5px 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 12px;
    color: var(--xw-gray-500);
}

.ts-iframe-frame {
    width: 100%;
    height: calc(100vh - 260px);
    min-height: 1400px;
    padding: 50px 30px;
    background: #f5f5f5;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .ts-hero {
        padding: 32px 0 40px;
    }

    .ts-hero h1 {
        font-size: 22px;
    }

    .ts-hero-inner {
        flex-direction: column;
        gap: 16px;
    }

    .ts-iframe-frame {
        height: calc(100vh - 300px);
        min-height: 400px;
    }
}
