.txsp-vlog-entrance-page-w4j7q5 {
    padding-top: 80px;
}

.txsp-entrance-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.txsp-hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.txsp-hero-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.9), rgba(74, 144, 226, 0.8));
}

.txsp-hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.txsp-entrance-content {
    position: relative;
    z-index: 2;
    color: var(--txsp-light);
    text-align: center;
}

.txsp-entrance-content h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 16px;
}

.txsp-entrance-content > p {
    font-size: 24px;
    margin-bottom: 60px;
    opacity: 0.95;
}

.txsp-entrance-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.txsp-entrance-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 32px;
    border-radius: var(--txsp-radius);
    text-align: center;
    transition: var(--txsp-transition);
    box-shadow: var(--txsp-shadow-md);
}

.txsp-entrance-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--txsp-shadow-lg);
}

.txsp-card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--txsp-primary);
}

.txsp-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.txsp-entrance-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--txsp-dark);
}

.txsp-entrance-card p {
    font-size: 15px;
    color: var(--txsp-gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}

.txsp-entrance-btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--txsp-primary);
    color: var(--txsp-light);
    border-radius: var(--txsp-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--txsp-transition);
}

.txsp-entrance-btn:hover {
    background: var(--txsp-primary-dark);
    transform: scale(1.05);
}

.txsp-quick-access {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: var(--txsp-radius);
    margin-bottom: 40px;
}

.txsp-quick-access h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.txsp-access-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.txsp-access-links a {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--txsp-light);
    border-radius: 24px;
    text-decoration: none;
    font-size: 14px;
    transition: var(--txsp-transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.txsp-access-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.txsp-platform-features {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.txsp-feature-badge {
    text-align: center;
}

.txsp-feature-badge span {
    display: block;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.txsp-feature-badge p {
    font-size: 14px;
    opacity: 0.9;
}

.txsp-entrance-guide {
    padding: 100px 0;
    background: var(--txsp-light);
}

.txsp-entrance-guide h3 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--txsp-dark);
}

.txsp-guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
}

.txsp-guide-step {
    text-align: center;
    padding: 32px;
}

.txsp-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--txsp-primary), var(--txsp-secondary));
    color: var(--txsp-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.txsp-guide-step h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--txsp-dark);
}

.txsp-guide-step p {
    font-size: 15px;
    color: var(--txsp-gray-600);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .txsp-entrance-content h2 {
        font-size: 36px;
    }

    .txsp-entrance-content > p {
        font-size: 18px;
    }

    .txsp-entrance-options {
        grid-template-columns: 1fr;
    }

    .txsp-platform-features {
        gap: 32px;
    }
}
