.tiktok-cta {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 80px auto;
    padding: 0 24px;
}

.tiktok-cta-inner {
    background: linear-gradient(135deg, rgba(37, 244, 238, 0.05) 0%, rgba(22, 29, 47, 0.85) 50%, rgba(254, 44, 85, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 45px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.tiktok-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1;
}

.tiktok-icon {
    width: 60px;
    height: 60px;
    fill: #ffffff;
    filter: drop-shadow(-2px -2px 0px rgba(37, 244, 238, 0.8)) 
            drop-shadow(2px 2px 0px rgba(254, 44, 85, 0.8));
    transition: transform 0.3s ease;
}

.tiktok-cta-inner:hover .tiktok-icon {
    transform: scale(1.1);
}

.tiktok-name {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-white);
}

.tiktok-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    z-index: 1;
}

.tiktok-content h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-white);
    text-align: right;
    max-width: 350px;
    line-height: 1.3;
}

.btn-tiktok {
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.btn-tiktok:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.1);
}

@media (max-width: 850px) {
    .tiktok-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .tiktok-content {
        align-items: center;
    }
    
    .tiktok-content h2 {
        text-align: center;
        font-size: 1.1rem;
    }

    .tiktok-name {
        font-size: 1.8rem;
    }
}